]>
git.puffer.fish Git - matthieu/frr.git/blob
3b99065fe078e55f506490801b5c8e35c3ff38c4
3 # Copyright (c) 2021 by
4 # Donatas Abraitis <donatas.abraitis@gmail.com>
6 # Permission to use, copy, modify, and/or distribute this software
7 # for any purpose with or without fee is hereby granted, provided
8 # that the above copyright notice and this permission notice appear
11 # THE SOFTWARE IS PROVIDED "AS IS" AND NETDEF DISCLAIMS ALL WARRANTIES
12 # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
13 # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NETDEF BE LIABLE FOR
14 # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY
15 # DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
16 # WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
17 # ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
22 https://tools.ietf.org/html/rfc4271
24 Check if NEXT_HOP attribute is not changed if peer X shares a
25 common subnet with this address.
27 - Otherwise, if the route being announced was learned from an
28 external peer, the speaker can use an IP address of any
29 adjacent router (known from the received NEXT_HOP attribute)
30 that the speaker itself uses for local route calculation in
31 the NEXT_HOP attribute, provided that peer X shares a common
32 subnet with this address. This is a second form of "third
33 party" NEXT_HOP attribute.
43 pytestmark
= [pytest
.mark
.bgpd
]
45 CWD
= os
.path
.dirname(os
.path
.realpath(__file__
))
46 sys
.path
.append(os
.path
.join(CWD
, "../"))
48 # pylint: disable=C0413
49 from lib
import topotest
50 from lib
.topogen
import Topogen
, TopoRouter
, get_topogen
51 from lib
.topolog
import logger
52 from mininet
.topo
import Topo
55 class TemplateTopo(Topo
):
56 def build(self
, *_args
, **_opts
):
57 tgen
= get_topogen(self
)
59 for routern
in range(1, 4):
60 tgen
.add_router("r{}".format(routern
))
62 switch
= tgen
.add_switch("s1")
63 switch
.add_link(tgen
.gears
["r1"])
64 switch
.add_link(tgen
.gears
["r2"])
65 switch
.add_link(tgen
.gears
["r3"])
68 def setup_module(mod
):
69 tgen
= Topogen(TemplateTopo
, mod
.__name
__)
72 router_list
= tgen
.routers()
74 for i
, (rname
, router
) in enumerate(router_list
.items(), 1):
76 TopoRouter
.RD_ZEBRA
, os
.path
.join(CWD
, "{}/zebra.conf".format(rname
))
79 TopoRouter
.RD_BGP
, os
.path
.join(CWD
, "{}/bgpd.conf".format(rname
))
85 def teardown_module(mod
):
90 def test_bgp_ebgp_common_subnet_nh_unchanged():
93 if tgen
.routers_have_failure():
94 pytest
.skip(tgen
.errors
)
99 def _bgp_converge(router
):
100 output
= json
.loads(router
.vtysh_cmd("show ip bgp summary json"))
104 "192.168.1.1": {"state": "Established"},
105 "192.168.1.103": {"state": "Established"},
109 return topotest
.json_cmp(output
, expected
)
111 test_func
= functools
.partial(_bgp_converge
, r3
)
112 success
, result
= topotest
.run_and_expect(test_func
, None, count
=60, wait
=0.5)
114 assert result
is None, 'Failed bgp convergence in "{}"'.format(r3
)
116 def _bgp_nh_unchanged(router
):
117 output
= json
.loads(router
.vtysh_cmd("show ip bgp 172.16.1.1/32 json"))
118 expected
= {"paths": [{"nexthops": [{"ip": "192.168.1.1"}]}]}
119 return topotest
.json_cmp(output
, expected
)
121 test_func
= functools
.partial(_bgp_nh_unchanged
, r2
)
122 success
, result
= topotest
.run_and_expect(test_func
, None, count
=60, wait
=0.5)
124 assert result
is None, 'Wrong next-hop in "{}"'.format(r2
)
127 if __name__
== "__main__":
128 args
= ["-s"] + sys
.argv
[1:]
129 sys
.exit(pytest
.main(args
))