Advertisement
Guest User

Untitled

a guest
Sep 1st, 2014
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. # Configure logging
  2. log syslog { debug, trace, info, remote, warning, error, auth, fatal, bug };
  3.  
  4. # Override router ID
  5. router id 172.23.211.129;
  6.  
  7. define myas = 4242421111;
  8.  
  9. protocol kernel {
  10. scan time 20; # Scan kernel routing table every 20 seconds
  11. import all;
  12. export where source != RTS_STATIC;
  13. }
  14.  
  15. protocol device {
  16. scan time 10; # Scan interfaces every 10 seconds
  17. }
  18.  
  19. protocol static {
  20. route 172.23.211.128/25 via 172.23.211.129;
  21. #route 172.23.211.0/25 via 172.23.211.1;
  22. }
  23.  
  24. # Protocol template
  25. template bgp PEERS {
  26. import all;
  27. export all;
  28. #export where source = RTS_STATIC;
  29. }
  30.  
  31. protocol bgp PEER2 from PEERS
  32. {
  33. description "iBGP to home router";
  34. #direct;
  35. local 172.23.211.129 as myas;
  36. neighbor 172.23.211.1 as myas;
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement