Advertisement
Guest User

Untitled

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