Advertisement
cetex

Untitled

Apr 23rd, 2014
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. protocol ospf EXTERNAL {
  2. ecmp yes;
  3. import all;
  4. export none;
  5. area 0.0.0.0 {
  6. networks {
  7. <public-ip-range>/22;
  8. };
  9. interface "wan";
  10. stubnet <anycasted-public-ip>/32;
  11. #interface "lo" {
  12. # stub yes;
  13. #};
  14. };
  15. }
  16.  
  17. protocol ospf INTERNAL {
  18. ecmp yes;
  19. import none;
  20. export none;
  21. #export filter {
  22. # if proto = "STATIC" then accept;
  23. # reject;
  24. #};
  25. area 0.0.0.0 {
  26. networks {
  27. 172.16.0.0/16;
  28. 172.17.0.0/16;
  29. };
  30. interface "lan";
  31. interface "gre1" { type broadcast; };
  32. };
  33. }
  34.  
  35. protocol device {
  36. scan time 10; # Scan interfaces every 10 seconds
  37. }
  38.  
  39. protocol kernel {
  40. persist;
  41. import filter { if proto = "INTERNAL" then accept; }; #filter { if proto = "INTERNAL" then accept; };
  42. export none;
  43. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement