-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tests: test nexthop-local unchanged with route-server
Test nexthop-local unchanged with route-server. Signed-off-by: Louis Scalbert <[email protected]>
- Loading branch information
1 parent
91512c3
commit 5f035ed
Showing
15 changed files
with
1,144 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
[exabgp.api] | ||
encoder = text | ||
highres = false | ||
respawn = false | ||
socket = '' | ||
|
||
[exabgp.bgp] | ||
openwait = 60 | ||
|
||
[exabgp.cache] | ||
attributes = true | ||
nexthops = true | ||
|
||
[exabgp.daemon] | ||
daemonize = true | ||
pid = '/var/run/exabgp/exabgp.pid' | ||
user = 'exabgp' | ||
##daemonize = false | ||
|
||
[exabgp.log] | ||
all = false | ||
configuration = true | ||
daemon = true | ||
destination = '/var/log/exabgp.log' | ||
enable = true | ||
level = INFO | ||
message = false | ||
network = true | ||
packets = false | ||
parser = false | ||
processes = true | ||
reactor = true | ||
rib = false | ||
routes = false | ||
short = false | ||
timers = false | ||
|
||
[exabgp.pdb] | ||
enable = false | ||
|
||
[exabgp.profile] | ||
enable = false | ||
file = '' | ||
|
||
[exabgp.reactor] | ||
speed = 1.0 | ||
|
||
[exabgp.tcp] | ||
acl = false | ||
bind = '' | ||
delay = 0 | ||
once = false | ||
port = 179 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
113 changes: 113 additions & 0 deletions
113
tests/topotests/bgp_route_server_client/r1/show_bgp_ipv6_step2.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
{ | ||
"routerId": "10.10.10.1", | ||
"localAS": 65001, | ||
"routes": { | ||
"2001:db8:1::/64": [ | ||
{ | ||
"nexthops": [ | ||
{ | ||
"ip": "::", | ||
"hostname": "r1", | ||
"afi": "ipv6", | ||
"scope": "global", | ||
"used": true | ||
} | ||
] | ||
}, | ||
{ | ||
"nexthops": [ | ||
{ | ||
"ip": "2001:db8:1::4", | ||
"hostname": "r2", | ||
"afi": "ipv6", | ||
"scope": "global", | ||
"used": true | ||
} | ||
] | ||
} | ||
], | ||
"2001:db8:3::/64": [ | ||
{ | ||
"nexthops": [ | ||
{ | ||
"ip": "2001:db8:3::2", | ||
"hostname": "r2", | ||
"afi": "ipv6", | ||
"scope": "global" | ||
}, | ||
{ | ||
"ip": "link-local:r2:r2-eth0", | ||
"hostname": "r2", | ||
"afi": "ipv6", | ||
"scope": "link-local", | ||
"used": true | ||
} | ||
] | ||
} | ||
], | ||
"2001:db8:f::1/128": [ | ||
{ | ||
"nexthops": [ | ||
{ | ||
"ip": "::", | ||
"hostname": "r1", | ||
"afi": "ipv6", | ||
"scope": "global", | ||
"used": true | ||
} | ||
] | ||
} | ||
], | ||
"2001:db8:f::3/128": [ | ||
{ | ||
"nexthops": [ | ||
{ | ||
"ip": "2001:db8:3::2", | ||
"hostname": "r2", | ||
"afi": "ipv6", | ||
"scope": "global" | ||
}, | ||
{ | ||
"ip": "link-local:r2:r2-eth0", | ||
"hostname": "r2", | ||
"afi": "ipv6", | ||
"scope": "link-local", | ||
"used": true | ||
} | ||
] | ||
} | ||
], | ||
"2001:db8:f::4/128": [ | ||
{ | ||
"nexthops": [ | ||
{ | ||
"ip": "2001:db8:1::3", | ||
"hostname": "r2", | ||
"afi": "ipv6", | ||
"scope": "global" | ||
}, | ||
{ | ||
"ip": "link-local:r4:r4-eth0", | ||
"hostname": "r2", | ||
"afi": "ipv6", | ||
"scope": "link-local", | ||
"used": true | ||
} | ||
] | ||
} | ||
], | ||
"2001:db8:f::5/128": [ | ||
{ | ||
"nexthops": [ | ||
{ | ||
"ip": "2001:db8:1::4", | ||
"hostname": "r2", | ||
"afi": "ipv6", | ||
"scope": "global", | ||
"used": true | ||
} | ||
] | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.