fbf3f6eeb5
Initial support for devstack plugin, with default configuration for the SB DB driver Signed-off-by: Lucas Alvares Gomes <lucasagomes@gmail.com> Change-Id: If806802fe65f852f643b85557c4c88973fa96dea
54 lines
1.4 KiB
Plaintext
54 lines
1.4 KiB
Plaintext
frr version 7.0
|
|
frr defaults traditional
|
|
hostname devstack
|
|
log file /var/log/frr/frr.log informational
|
|
log timestamp precision 3
|
|
service integrated-vtysh-config
|
|
line vty
|
|
|
|
router bgp 64999
|
|
bgp router-id 172.24.4.1
|
|
bgp log-neighbor-changes
|
|
bgp graceful-shutdown
|
|
no bgp default ipv4-unicast
|
|
no bgp ebgp-requires-policy
|
|
|
|
neighbor uplink peer-group
|
|
neighbor uplink remote-as internal
|
|
neighbor uplink password f00barZ
|
|
neighbor br-ex interface peer-group uplink
|
|
|
|
address-family ipv4 unicast
|
|
redistribute connected
|
|
neighbor uplink activate
|
|
neighbor uplink allowas-in origin
|
|
neighbor uplink prefix-list only-host-prefixes out
|
|
exit-address-family
|
|
|
|
address-family ipv6 unicast
|
|
redistribute connected
|
|
neighbor uplink activate
|
|
neighbor uplink allowas-in origin
|
|
neighbor uplink prefix-list only-host-prefixes out
|
|
exit-address-family
|
|
|
|
ip prefix-list only-default permit 0.0.0.0/0
|
|
ip prefix-list only-host-prefixes permit 0.0.0.0/0 ge 32
|
|
|
|
route-map rm-only-default permit 10
|
|
match ip address prefix-list only-default
|
|
set src 172.24.4.1
|
|
|
|
ip protocol bgp route-map rm-only-default
|
|
|
|
ipv6 prefix-list only-default permit ::/0
|
|
ipv6 prefix-list only-host-prefixes permit ::/0 ge 128
|
|
|
|
route-map rm-only-default permit 11
|
|
match ipv6 address prefix-list only-default
|
|
set src 2001:db8::2
|
|
|
|
ipv6 protocol bgp route-map rm-only-default
|
|
|
|
ip nht resolve-via-default
|