Advertisement
Guest User

Untitled

a guest
Sep 19th, 2017
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. ip prefix-list deny-loopback permit 192.168.0.0/16 le 31
  2. ip prefix-list deny-loopback deny 192.168.0.0/16 ge 32
  3.  
  4. route-map EBGP
  5. match ip address prefix-list deny-loopback
  6.  
  7. router bgp 65001
  8. !...
  9. ! Does not seem to work
  10. redistribute connected route-map EBGP
  11. ! Does also not seem to work
  12. neighbor 192.168.102.1 route-map EBGP out
  13.  
  14. ! This on the other router seems to work:
  15.  
  16. router bgp 65002
  17. neighbor 192.168.101.1 route-map EBGP in
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement