Advertisement
Balu75

bgpd.conf

Nov 8th, 2011
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. hostname Router.bgpd
  2. password 123456
  3. enable password 123456
  4. log file /var/log/quagga/bgpd.log
  5. log record-priority
  6. !
  7. router bgp 65015
  8. bgp router-id 77.93.39.94
  9. bgp log-neighbor-changes
  10. bgp dampening
  11. network 77.93.39.32/27
  12. neighbor 77.93.39.93 remote-as 43022
  13. neighbor 77.93.39.93 description "Infocom World"
  14. neighbor 77.93.39.93 route-map permit-any in
  15. neighbor 77.93.39.93 route-map mynet out
  16. neighbor 77.93.41.225 remote-as 43022
  17. neighbor 77.93.41.225 description "Infocom UA-IX"
  18. neighbor 77.93.41.225 route-map uaix-in in
  19. neighbor 77.93.41.225 route-map mynet out
  20. !
  21. ip prefix-list mynet seq 5 permit 77.93.39.32/27
  22. !
  23. ip as-path access-list match-any permit .*
  24. !
  25. route-map permit-any permit 10
  26. match as-path match-any
  27. !
  28. route-map mynet permit 10
  29. match ip address prefix-list mynet
  30. !
  31. route-map uaix-in permit 10
  32. match as-path match-any
  33. set local-preference 120
  34. !
  35. line vty
  36. !
  37.  
  38.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement