Advertisement
Guest User

Untitled

a guest
Mar 27th, 2012
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. #bird.conf for router2
  2.  
  3. log syslog { debug, trace, info, remote, warning, error, auth, fatal, bug };
  4.  
  5. router id 10.151.99.2;
  6.  
  7. debug protocols all;
  8.  
  9. protocol kernel {
  10. # learn; # Learn all alien routes from the kernel
  11. persist; # Don't remove routes on bird shutdown
  12. scan time 20; # Scan kernel routing table every 20 seconds
  13. import all; # Default is import all
  14. export all; # Default is export none
  15. }
  16.  
  17. # This pseudo-protocol watches all interface up/down events.
  18. protocol device {
  19. scan time 10; # Scan interfaces every 10 seconds
  20. }
  21.  
  22. protocol ospf MyOSPF {
  23. tick 2;
  24. rfc1583compat yes;
  25. area 0.0.0.0 {
  26. stub no;
  27. networks {
  28. 10.151.4.0/24;
  29. 10.151.5.0/24;
  30. };
  31. interface "eth0" {
  32. hello 2;
  33. retransmit 4;
  34. cost 10;
  35. transmit delay 5;
  36. dead count 3;
  37. wait 10;
  38. type broadcast;
  39. };
  40. };
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement