Advertisement
Guest User

Bino_Router-A_V2

a guest
Apr 18th, 2014
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #Configuration of bino's ROUTER-A
  2. log syslog all;
  3. router id 10.0.0.1;
  4. protocol device {
  5. scan time 10;
  6. import all ;
  7. }
  8. protocol kernel { # Primary routing table
  9. learn; # Learn alien routes from the kernel
  10. persist; # Don't remove routes on bird shutdown
  11. scan time 15; # Scan kernel routing table every 10 seconds
  12. import all;
  13. export all;
  14. }
  15. protocol static {
  16. import all;
  17. route 172.16.3.0/24 via 10.0.0.3;
  18. }
  19. protocol ospf {
  20. import all;
  21. export filter {
  22. ospf_metric1 = 1000;
  23. accept;
  24. };
  25. area 0 {
  26. interface "bat0" {
  27. cost 1000;
  28. type broadcast;
  29. hello 5; retransmit 2; wait 10; dead 60;
  30. authentication none;
  31. };
  32. };
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement