Advertisement
billyfence

Untitled

Apr 13th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.81 KB | None | 0 0
  1. root@ABR# show
  2. ## Last changed: 2018-04-10 08:31:51 UTC
  3. version 14.1R1.10;
  4. system {
  5. host-name ABR;
  6. root-authentication {
  7. encrypted-password "$1$RipVHNlI$AJk29VEIVqwl3PRmwqSNi."; ## SECRET-DATA
  8. }
  9. }
  10. interfaces {
  11. em2 {
  12. description "ABR to Edge-1";
  13. unit 0 {
  14. family inet {
  15. address 192.168.11.9/30;
  16. }
  17. }
  18. }
  19. em3 {
  20. description "ABR to Edge-2";
  21. unit 0 {
  22. family inet {
  23. address 192.168.11.13/30;
  24. }
  25. }
  26. }
  27. em4 {
  28. description "ABR ro R1";
  29. unit 0 {
  30. family inet {
  31. address 192.168.11.2/30;
  32. }
  33. }
  34. }
  35. em5 {
  36. description "ABR to R2";
  37. unit 0 {
  38. family inet {
  39. address 192.168.11.6/30;
  40. }
  41. }
  42. }
  43. em6 {
  44. description "ABR to RR";
  45. unit 0 {
  46. family inet {
  47. address 192.168.11.22/30;
  48. }
  49. }
  50. }
  51. lo0 {
  52. description Loopback;
  53. unit 0 {
  54. family inet {
  55. address 192.168.10.3/32;
  56. }
  57. }
  58. }
  59. }
  60. routing-options {
  61. router-id 192.168.10.3;
  62. autonomous-system 10;
  63. }
  64. protocols {
  65. bgp {
  66. group RR1 {
  67. type internal;
  68. local-address 192.168.10.3;
  69. export IGP-BGP;
  70. neighbor 192.168.10.6;
  71. }
  72. }
  73. ospf {
  74. export export-rip;
  75. area 0.0.0.1 {
  76. stub default-metric 10 no-summaries;
  77. interface em4.0 {
  78. interface-type p2p;
  79. }
  80. }
  81. area 0.0.0.0 {
  82. interface em2.0 {
  83. interface-type p2p;
  84. }
  85. interface lo0.0 {
  86. passive;
  87. }
  88. interface em3.0 {
  89. interface-type p2p;
  90. }
  91. interface em6.0 {
  92. interface-type p2p;
  93. }
  94. }
  95. }
  96. rip {
  97. group RIP-DOMAIN {
  98. export export-rip;
  99. neighbor em5.0;
  100. }
  101. }
  102. }
  103. policy-options {
  104. prefix-list RIP-CUST-BLOCK {
  105. 192.168.13.0/24;
  106. }
  107. prefix-list OSPF-CUST-BLOCK {
  108. 192.168.12.0/24;
  109. }
  110. policy-statement IGP-BGP {
  111. term OSPF-RIP {
  112. from {
  113. protocol [ rip ospf ];
  114. prefix-list RIP-CUST-BLOCK;
  115. prefix-list OSPF-CUST-BLOCK;
  116. }
  117. then accept;
  118. }
  119. term OTHER {
  120. then reject;
  121. }
  122. }
  123. policy-statement export-rip {
  124. term 1 {
  125. from protocol rip;
  126. }
  127. then accept;
  128. }
  129. community INTERNAL members 10:1;
  130. }
  131.  
  132. [edit]
  133. root@ABR#
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement