Advertisement
Guest User

frr.conf.local

a guest
Mar 10th, 2025
109
0
85 days
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.53 KB | None | 0 0
  1. ip prefix-list PFL_SDC_OUT seq 10 deny 192.168.203.192/28
  2. ip prefix-list PFL_SDC_OUT seq 20 permit 0.0.0.0/0 le 31
  3. !
  4.  
  5. ip prefix-list PFL_L01_OUT seq 10 deny 192.168.203.208/28
  6. ip prefix-list PFL_L01_OUT seq 20 permit 0.0.0.0/0 le 31
  7. !
  8.  
  9.  
  10. router bgp 4000000002 vrf vrf_SDCVPN01
  11.  neighbor LABFWSDC peer-group
  12.  neighbor LABFWSDC remote-as external
  13.  neighbor LABFWSDC remote-as 4000000001
  14.  neighbor LABFWSDC bfd
  15.  neighbor 192.168.203.194 peer-group LABFWSDC
  16.  neighbor 192.168.203.195 peer-group LABFWSDC
  17. !
  18.  address-family ipv4 unicast
  19.   neighbor LABFWSDC activate
  20.   neighbor LABFWSDC soft-reconfiguration inbound
  21.   neighbor LABFWSDC prefix-list PFL_SDC_OUT out
  22. #  import vrf vrf_SDCVPN01
  23.  exit-address-family
  24.  !
  25.  address-family ipv6 unicast
  26.   neighbor LABFWSDC activate
  27.   neighbor LABFWSDC soft-reconfiguration inbound
  28. #  import vrf vrf_SDCVPN01
  29.  exit-address-family
  30.  !
  31. exit
  32. !
  33.  
  34. router bgp 4000000002 vrf vrf_L01VPN01
  35.  neighbor LABFWL01 peer-group
  36.  neighbor LABFWL01 remote-as external
  37.  neighbor LABFWL01 remote-as 4000000001
  38.  neighbor LABFWL01 bfd
  39.  neighbor 192.168.203.210 peer-group LABFWL01
  40.  neighbor 192.168.203.211 peer-group LABFWL01
  41. !
  42.  address-family ipv4 unicast
  43.   neighbor LABFWL01 activate
  44.   neighbor LABFWL01 soft-reconfiguration inbound
  45.   neighbor LABFWL01 prefix-list PFL_L01_OUT out
  46. #  import vrf vrf_L01VPN01
  47.  exit-address-family
  48.  !
  49.  address-family ipv6 unicast
  50.   neighbor LABFWL01 activate
  51.   neighbor LABFWL01 soft-reconfiguration inbound
  52. #  import vrf vrf_L01VPN01
  53.  exit-address-family
  54.  !
  55. exit
  56. !
  57.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement