Advertisement
Guest User

Untitled

a guest
Feb 6th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. # Override router ID
  2. router id 10.x.0.y;
  3.  
  4. # This pseudo-protocol performs synchronization between BIRD's routing
  5. # tables and the kernel. If your kernel supports multiple routing tables
  6. # (as Linux 2.2.x does), you can run multiple instances of the kernel
  7. # protocol and synchronize different kernel tables with different BIRD tables.
  8. protocol kernel {
  9. # learn; # Learn all alien routes from the kernel
  10. # persist; # Don't remove routes on bird shutdown
  11. scan time 10; # Scan kernel routing table every 20 seconds
  12. # import none; # Default is import all
  13. export all; # Default is export none
  14. # kernel table 5; # Kernel table to synchronize with (default: main)
  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.  
  23. protocol static {
  24. route 10.x.0.z via 10.x.y.b;
  25. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement