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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
|
# Copyright (C) 2014 Nippon Telegraph and Telephone Corporation.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
# implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import sys
import telnetlib
from constant import *
PASSWORD = "zebra"
CONN_PASSWORD = "hogehoge"
QLPORT = 2605
def login(host):
tn = telnetlib.Telnet(host, QLPORT)
tn.read_until("Password: ")
tn.write(PASSWORD + "\n")
tn.write("enable\n")
tn.read_until("bgpd#")
return tn
def logout(tn):
tn.write("exit\n")
tn.read_all()
def add_neighbor(tn, as_number, neighbor_address, remote_as):
tn.write("configure terminal\n")
tn.write("router bgp "+str(as_number)+"\n")
tn.write("neighbor " + neighbor_address + " remote-as " + remote_as + "\n")
tn.write("neighbor " + neighbor_address + " password " + CONN_PASSWORD + "\n")
tn.write("exit\n")
tn.write("exit\n")
tn.read_until("bgpd#")
def add_neighbor_metric(tn, as_number, neighbor_address, metric):
tn.write("configure terminal\n")
tn.write("router bgp "+str(as_number)+"\n")
tn.write("neighbor " + neighbor_address + " route-map MED" + metric + " out\n")
tn.write("exit\n")
tn.write("exit\n")
tn.read_until("bgpd#")
def add_network(tn, as_number, network, use_ipv6=False):
tn.write("configure terminal\n")
tn.write("router bgp "+str(as_number)+"\n")
if use_ipv6:
tn.write("address-family ipv6\n")
tn.write("network "+ network + " \n")
tn.write("exit\n")
else:
tn.write("network "+ network + " \n")
tn.write("exit\n")
tn.write("exit\n")
tn.read_until("bgpd#")
def add_metric(tn, metric, network):
tn.write("configure terminal\n")
tn.write("access-list 1 permit " + network + " 0.0.0.255\n")
tn.write("route-map MED" + metric + " permit 10\n")
tn.write("match ip address 1\n")
tn.write("set metric " + metric + "\n")
tn.write("route-map MED" + metric + " permit 10\n")
tn.write("set metric\n")
tn.read_until("bgpd(config-route-map)#")
tn.write("exit\n")
tn.write("exit\n")
return tn
def show_config(tn):
tn.write("show run\n")
print tn.read_until("bgpd#")
tn.write("exit\n")
print tn.read_all()
def show_rib(tn, af=IPv4):
if af == IPv4:
tn.write("show ip bgp\n")
elif af == IPv6:
tn.write("show bgp ipv6\n")
else:
print "invalid af: ", af
return
tn.read_until(" Network Next Hop Metric LocPrf Weight Path")
rib = tn.read_until("bgpd#")
return rib_parser(rib)
def clear_ip_bgp(tn):
tn.write("clear ip bgp *\n")
tn.read_until("bgpd#")
def rib_parser(rib):
lines = rib.split("\n")
paths = []
for line in lines:
path = {}
if line[0] == "*":
elems = line.split()
path['Network'] = elems[1]
path['Next Hop'] = elems[2]
if len(path) > 0:
paths.append(path)
return paths
def lookup_prefix(tn, prefix, af):
if af == IPv4:
tn.write("show ip bgp " + prefix + "\n")
elif af == IPv6:
tn.write("show bgp ipv6 " + prefix + "\n")
else:
print "invalid af: ", af
return
info = tn.read_until("bgpd#")
paths = []
for line in info.split("\n"):
path = {}
if "from" in line:
nexthop = line.split()[0]
path['Network'] = prefix
path['Next Hop'] = nexthop
paths.append(path)
return paths
def check_community(tn, addr, community, af=IPv4):
if af == IPv4:
tn.write("show ip bgp community " + community + "\n")
elif af == IPv6:
tn.write("show bgp ipv6 community " + community + "\n")
else:
print "invalid af: ", af
return
result = tn.read_until("bgpd#")
for line in result.split("\n"):
if addr in line:
return True
return False
def check_med(tn, addr, med, af=IPv4):
if af == IPv4:
tn.write("show ip bgp " + addr[0] + "\n")
elif af == IPv6:
tn.write("show bgp ipv6 " + addr[0] + "\n")
else:
print "invalid af: ", af
return
result = tn.read_until("bgpd#")
for line in result.split("\n"):
if "metric" in line:
if str(med) in line.split()[3]:
return True
return False
|