-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
90 lines (50 loc) · 2.05 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
from MOD.Juniper_MOD import Juniper_MOD
from CREATE.Create_MAIN import Create_MAIN
#----------------------------------------------------------------------------------------------------------------------------
#--------------------------------------------------------- main -------------------------------------------------------------
#----------------------------------------------------------------------------------------------------------------------------
class Main:
def main():
router_01 = Juniper_MOD("172.18.10.85", "netconf", "Netconf", "telnet", "23")
router_01.GET_conf("")
#router_01.SET_conf("./CONFIG/STP_R1.conf")
#router_01.DEL_conf("delete filter_s_tcp")
#Create_MAIN.Create("./TOPOLOGY/test.yml")
"""
GET_CONF
Complete Configuration
>>> ""
Host-Name
>>> "hostname" "host-name"
Router-ID
>>> "router-id" "id" "ID"
Protocols
>>> "protocols" "protocol"
Specific Protocol (e.g. OSPF)
>>> "ospf" "OSPF"
Policys
>>> "policys" "policy"
Firewalls
>>> "firewall" "firewalls"
Interfaces
>>> "interfaces" "interface"
Specific Interface (e.g. ge-0/0/0)
>>> "ge-0/0/0"
SET_CONF
>>> insert path to conf_file
DEL_CONF
Delete Interface (e.g. ge-0/0/0)
>>> "delete ge-0/0/0"
Delete Host-Name
>>> "delete hostname" "delete host-name"
Delete Router-ID
>>> "delete router-id" "delete id"
Delete Protocol (e.g. OSPF)
>>> "delete ospf" "delete OSPF"
Delete Policy (e.g. test-pol)
>>> "delete test-pol"
Delete Firewall (e.g. filter_test)
>>> "delete filter_test"
"""
if __name__ == "__main__":
main()