Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- frr version 8.5.2
- frr defaults datacenter
- hostname pve-01
- log syslog informational
- service integrated-vtysh-config
- !
- !
- vrf vrf_L01VPN01
- vni 4000003
- ip route 192.168.107.0/27 null0
- ip route 192.168.107.32/27 null0
- ip route 192.168.107.64/26 null0
- exit-vrf
- !
- vrf vrf_SDCVPN01
- vni 4000002
- ip route 192.168.110.0/24 null0
- ip route 192.168.111.0/25 null0
- exit-vrf
- !
- router bgp 4000000002
- bgp router-id 192.168.203.142
- no bgp hard-administrative-reset
- no bgp default ipv4-unicast
- coalesce-time 1000
- no bgp graceful-restart notification
- neighbor VTEP peer-group
- neighbor VTEP remote-as 4000000002
- neighbor VTEP bfd
- neighbor 192.168.203.143 peer-group VTEP
- neighbor 192.168.203.144 peer-group VTEP
- neighbor 192.168.203.145 peer-group VTEP
- !
- address-family ipv4 unicast
- import vrf vrf_L01VPN01
- import vrf vrf_SDCVPN01
- exit-address-family
- !
- address-family ipv6 unicast
- import vrf vrf_L01VPN01
- import vrf vrf_SDCVPN01
- exit-address-family
- !
- address-family l2vpn evpn
- neighbor VTEP activate
- neighbor VTEP route-map MAP_VTEP_IN in
- neighbor VTEP route-map MAP_VTEP_OUT out
- advertise-all-vni
- exit-address-family
- exit
- !
- router bgp 4000000002 vrf vrf_L01VPN01
- bgp router-id 192.168.203.142
- no bgp hard-administrative-reset
- no bgp graceful-restart notification
- neighbor LABFWL01 peer-group
- neighbor LABFWL01 remote-as external
- neighbor LABFWL01 remote-as 4000000001
- neighbor LABFWL01 bfd
- neighbor 192.168.203.210 peer-group LABFWL01
- neighbor 192.168.203.211 peer-group LABFWL01
- !
- address-family ipv4 unicast
- redistribute connected
- neighbor LABFWL01 activate
- neighbor LABFWL01 soft-reconfiguration inbound
- neighbor LABFWL01 prefix-list PFL_L01_OUT out
- # import vrf vrf_L01VPN01
- exit-address-family
- !
- address-family ipv6 unicast
- redistribute connected
- neighbor LABFWL01 activate
- neighbor LABFWL01 soft-reconfiguration inbound
- # import vrf vrf_L01VPN01
- exit-address-family
- !
- address-family l2vpn evpn
- default-originate ipv4
- default-originate ipv6
- exit-address-family
- exit
- !
- router bgp 4000000002 vrf vrf_SDCVPN01
- bgp router-id 192.168.203.142
- no bgp hard-administrative-reset
- no bgp graceful-restart notification
- neighbor LABFWSDC peer-group
- neighbor LABFWSDC remote-as external
- neighbor LABFWSDC remote-as 4000000001
- neighbor LABFWSDC bfd
- neighbor 192.168.203.194 peer-group LABFWSDC
- neighbor 192.168.203.195 peer-group LABFWSDC
- !
- address-family ipv4 unicast
- redistribute connected
- neighbor LABFWSDC activate
- neighbor LABFWSDC soft-reconfiguration inbound
- neighbor LABFWSDC prefix-list PFL_SDC_OUT out
- # import vrf vrf_SDCVPN01
- exit-address-family
- !
- address-family ipv6 unicast
- redistribute connected
- neighbor LABFWSDC activate
- neighbor LABFWSDC soft-reconfiguration inbound
- # import vrf vrf_SDCVPN01
- exit-address-family
- !
- address-family l2vpn evpn
- default-originate ipv4
- default-originate ipv6
- exit-address-family
- exit
- !
- ip prefix-list PFL_L01_OUT seq 10 deny 192.168.203.208/28
- ip prefix-list PFL_L01_OUT seq 20 permit 0.0.0.0/0 le 31
- ip prefix-list PFL_SDC_OUT seq 10 deny 192.168.203.192/28
- ip prefix-list PFL_SDC_OUT seq 20 permit 0.0.0.0/0 le 31
- ip prefix-list only_default seq 1 permit 0.0.0.0/0
- !
- ipv6 prefix-list only_default_v6 seq 1 permit ::/0
- !
- route-map MAP_VTEP_IN deny 1
- match ip address prefix-list only_default
- exit
- !
- route-map MAP_VTEP_IN deny 2
- match ipv6 address prefix-list only_default_v6
- exit
- !
- route-map MAP_VTEP_IN deny 3
- match ip address prefix-list only_default
- exit
- !
- route-map MAP_VTEP_IN deny 4
- match ipv6 address prefix-list only_default_v6
- exit
- !
- route-map MAP_VTEP_IN permit 5
- exit
- !
- route-map MAP_VTEP_OUT permit 1
- exit
- !
- line vty
- !
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement