Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.96 KB | None | 0 0
  1. protocol ospf {
  2. tick 2;
  3. rfc1583compat yes;
  4.  
  5. area 0.0.0.0 {
  6.  
  7. networks {
  8. 1.1.1.0/22;
  9. };
  10. stubnet 2.2.2.2/32 {
  11. cost 100;
  12. };
  13. stubnet 3.3.3.3/32 {
  14. cost 500;
  15. };
  16. stubnet 4.4.4.4/32 {
  17. cost 1000;
  18. };
  19. stubnet 5.5.5.5/32 {
  20. cost 900;
  21. };
  22. interface "eth0" {
  23. cost 1000;
  24. password "MySecretPassword" {
  25. id 5;
  26. };
  27. authentication cryptographic;
  28. };
  29.  
  30. interface "dummy0" {
  31. stub;
  32. };
  33. interface "dummy1" {
  34. stub;
  35. };
  36. interface "dummy2" {
  37. stub;
  38. };
  39. interface "dummy3" {
  40. stub;
  41. };
  42.  
  43. };
  44. }
  45.  
  46. filter import_OSPF {
  47. reject;
  48. }
  49.  
  50. protocol ospf {
  51. tick 2;
  52. rfc1583compat yes;
  53.  
  54. import filter import_OSPF;
  55. area 0.0.0.0 {
  56.  
  57. networks {
  58. 1.1.1.0/22;
  59. };
  60. stubnet 2.2.2.2/32 {
  61. cost 100;
  62. };
  63. stubnet 3.3.3.3/32 {
  64. cost 500;
  65. };
  66. stubnet 4.4.4.4/32 {
  67. cost 1000;
  68. };
  69. stubnet 5.5.5.5/32 {
  70. cost 900;
  71. };
  72. interface "eth0" {
  73. cost 1000;
  74. password "MySecretPassword" {
  75. id 5;
  76. };
  77. authentication cryptographic;
  78. };
  79.  
  80. interface "dummy0" {
  81. stub;
  82. };
  83. interface "dummy1" {
  84. stub;
  85. };
  86. interface "dummy2" {
  87. stub;
  88. };
  89. interface "dummy3" {
  90. stub;
  91. };
  92.  
  93. };
  94. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement