summaryrefslogtreecommitdiffhomepage
path: root/test/scenario_test/quagga_access.py
blob: 1e51afaf28fb5385bde0a61f36ff900ed2562609 (plain)
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
# 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

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")
    return tn


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):
    tn.write("configure terminal\n")
    tn.write("router bgp "+str(as_number)+"\n")
    tn.write("network "+ network + " \n")
    tn.write("exit\n")
    tn.write("exit\n")
    print 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):
    tn.write("show ip bgp\n")
    tn.read_until("   Network          Next Hop            Metric LocPrf Weight Path")
    rib = tn.read_until("bgpd#")
    return rib_parser(rib)


def show_ipv6_rib(tn):
    tn.write("show bgp ipv6\n")
    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