Advertisement
Guest User

bino-bird4-rtr_b

a guest
Apr 17th, 2014
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. #Configuration of bino's ROUTER-B
  2. log syslog all;
  3.  
  4.  
  5. router id 10.0.0.2;
  6.  
  7.  
  8. protocol device {
  9.  
  10. scan time 10;
  11.  
  12. }
  13.  
  14.  
  15. protocol kernel {
  16.  
  17. export all;
  18.  
  19. scan time 15;
  20.  
  21. }
  22.  
  23.  
  24. protocol static {
  25.  
  26. import all;
  27.  
  28. }
  29.  
  30.  
  31. protocol ospf {
  32.  
  33. import all;
  34.  
  35. export filter {
  36.  
  37. ospf_metric1 = 1000;
  38.  
  39. if source = RTS_STATIC then accept; else reject;
  40.  
  41. };
  42.  
  43.  
  44. area 0 {
  45.  
  46. interface "bat0" {
  47.  
  48. cost 1000;
  49.  
  50. type broadcast;
  51.  
  52. hello 5; retransmit 2; wait 10; dead 60;
  53.  
  54. authentication none;
  55.  
  56. };
  57.  
  58.  
  59.  
  60. };
  61.  
  62. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement