b04bf138e4
According to RFC-8212 policies must be described in order to allow announce/accept routes. Without policies being described, no routes will be announced/recieved by default. This patch fixes current CI failures. Change-Id: Ia033cc7c3ed3146860ab96452bec988f3c3069bf
10 lines
577 B
Plaintext
10 lines
577 B
Plaintext
frr_bgpd_config:
|
|
- router bgp 5678
|
|
- "bgp router-id {{ hostvars['secondary']['ansible_' ~ bridge_name | replace('-', '_')]['ipv4']['address'] }}"
|
|
- "neighbor {{ hostvars['primary']['ansible_' ~ bridge_name | replace('-', '_')]['ipv4']['address'] }} remote-as 1234"
|
|
- address-family ipv4 unicast
|
|
- " neighbor {{ hostvars['primary']['ansible_' ~ bridge_name | replace('-', '_')]['ipv4']['address'] }} prefix-list pl-allowed-adv in"
|
|
- exit-address-family
|
|
- ip prefix-list pl-allowed-adv seq 5 permit 192.168.1.0/24
|
|
- ip prefix-list pl-allowed-adv seq 10 deny any
|