Hi, I'm configuring a OSPF/BGP environment and need help configuring two features in Extreme XOS. The equivalent Cisco commands are included below:
1. Mutual Route Redistribution
The first is to configure a XOS equivalent route-map to prevent route-flapping when I perform mutual route redistribution between OSPF and BGP. I'm using the following Cisco doc as a reference:
route-map BLOCK-TAGGED-ROUTES deny 10
match tag 65401 65402 65512
!
route-map BLOCK-TAGGED-ROUTES permit 20
!
router eigrp LAN
address-family ipv4 unicast autonomous-system 100
topology base
distribute-list route-map BLOCK-TAGGED-ROUTES in
exit-af-topology
exit-address-family
2. Prevent Customer AS becoming transient for SPs
Referring to the document above:
- PAGE 56
- Step 2: Configure BGP to prevent the remote site from becoming a transit AS
router bgp 65511
neighbor [IP address of PE] route-map NO-TRANSIT-AS out
neighbor [IP address of PE 2] route-map NO-TRANSIT-AS out
ip as-path access-list 10 permit ^$
!
route-map NO-TRANSIT-AS permit 10
match as-path 10
Thanks in advance for any assistance.