cleanup / orginizing frr.conf a little bit for dual stack

This commit is contained in:
toby 2018-09-09 20:06:05 +02:00
parent 660343046e
commit 52e4f93928
1 changed files with 8 additions and 8 deletions

View File

@ -25,8 +25,8 @@ router bgp NODEASN
neighbor feth2 interface peer-group fabric
!
address-family ipv4 unicast
redistribute kernel route-map EIP
redistribute connected route-map LOOPBACK
redistribute kernel route-map EIPv4
redistribute connected route-map LOCALNETSv4
neighbor fabric activate
neighbor fabric addpath-tx-all-paths
neighbor fabric soft-reconfiguration inbound
@ -34,7 +34,7 @@ router bgp NODEASN
!
address-family ipv6 unicast
redistribute kernel route-map EIPv6
redistribute connected route-map LOOPBACKv6
redistribute connected route-map LOCALNETSv6
neighbor fabric activate
neighbor fabric addpath-tx-all-paths
neighbor fabric soft-reconfiguration inbound
@ -59,17 +59,17 @@ ip prefix-list WITV4 seq 45 permit 170.199.217.0/24 ge 25
ipv6 prefix-list LOOPBACK seq 5 permit 2604:bbc0:0:100::/56 ge 128
ipv6 prefix-list WITV6-CUSTOMERS seq 5 permit 2604:bbc0:1::/48 ge 64
!
route-map EIPv4 permit 5
match ip address prefix-list WITV4
!
route-map EIPv6 permit 5
match ipv6 address prefix-list WITV6-CUSTOMERS
!
route-map EIP permit 5
match ip address prefix-list WITV4
!
route-map LOOPBACK permit 5
route-map LOCALNETSv4 permit 5
description "permit loopback ips"
match ip address prefix-list LOOPBACK
!
route-map LOOPBACKv6 permit 5
route-map LOCALNETSv6 permit 5
description "permit ipv6 loopback ips"
match ipv6 address prefix-list LOOPBACK
!