Advertisement
Guest User

Untitled

a guest
Jun 5th, 2017
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.38 KB | None | 0 0
  1. BR 1:
  2. --------------------------------------
  3. protocols {
  4. mpls {
  5. traffic-engineering bgp-igp;
  6. label-switched-path br2-lsp {
  7. from 92.60.64.1;
  8. to 92.60.64.2;
  9. primary myfirstpath;
  10. }
  11. static-path inet {
  12. 92.60.32.0/20 {
  13. next-hop 92.60.64.2;
  14. push 1000000;
  15. }
  16. }
  17. interface ge-0/0/2.0;
  18. interface ge-0/0/1.0;
  19. }
  20. ldp {
  21. explicit-null;
  22. interface ge-0/0/1.0;
  23. interface ge-0/0/2.0;
  24. interface lo0.0;
  25. }
  26. }
  27. noc@br1.mil.bb> show configuration interfaces ge-0/0/1.0
  28. vlan-id 100;
  29. family inet {
  30. address 92.60.64.1/24 {
  31. primary;
  32. preferred;
  33. }
  34. }
  35. family inet6 {
  36. address 2a01:658::1/48 {
  37. primary;
  38. preferred;
  39. }
  40. }
  41. family mpls;
  42.  
  43. noc@br1.mil.bb> show configuration interfaces ge-0/0/2.0
  44. family inet {
  45. address 92.60.64.197/30;
  46. }
  47. family inet6 {
  48. address 2a01:658:2::1/64;
  49. }
  50. family mpls;
  51.  
  52. noc@br1.mil.bb> show mpls interface
  53. Interface State Administrative groups
  54. ge-0/0/1.0 Up <none>
  55. ge-0/0/2.0 Up <none>
  56.  
  57. noc@br1.mil.bb> show mpls lsp
  58. Ingress LSP: 1 sessions
  59. To From State Rt ActivePath P LSPname
  60. 92.60.64.2 92.60.64.1 Dn 0 - br2-lsp
  61. Total 1 displayed, Up 0, Down 1
  62.  
  63. Egress LSP: 0 sessions
  64. Total 0 displayed, Up 0, Down 0
  65.  
  66. Transit LSP: 0 sessions
  67. Total 0 displayed, Up 0, Down 0
  68.  
  69. noc@br1.mil.bb>
  70.  
  71.  
  72. --------------------------------
  73. BR 2:
  74. --------------------------------
  75.  
  76. protocols {
  77. mpls {
  78. traffic-engineering bgp-igp;
  79. label-switched-path br2-lsp {
  80. from 92.60.64.2;
  81. to 92.60.64.1;
  82. }
  83. interface ge-0/0/2.0 {
  84. label-map 1000000 {
  85. next-hop 92.60.70.75;
  86. pop;
  87. }
  88. }
  89. interface ge-0/0/1.0;
  90. interface lo0.0;
  91. }
  92. ldp {
  93. explicit-null;
  94. interface ge-0/0/1.0;
  95. interface ge-0/0/2.0;
  96. interface lo0.0;
  97. }
  98. }
  99.  
  100. noc@br2.mil.bb> show configuration interfaces ge-0/0/1.0
  101. vlan-id 100;
  102. family inet {
  103. address 92.60.64.2/24 {
  104. broadcast 92.60.64.255;
  105. primary;
  106. preferred;
  107. }
  108. }
  109. family inet6 {
  110. address 2a01:658::2/48 {
  111. primary;
  112. preferred;
  113. }
  114. }
  115. family mpls;
  116.  
  117. noc@br2.mil.bb> show configuration interfaces ge-0/0/2.0
  118. family inet {
  119. address 92.60.64.198/30;
  120. }
  121. family inet6 {
  122. address 2a01:658:2::2/64;
  123. }
  124. family mpls;
  125.  
  126. noc@br2.mil.bb> show ldp neighbor
  127. Address Interface Label space ID Hold time
  128. 92.60.64.1 ge-0/0/1.0 92.60.64.1:0 14
  129. 92.60.64.197 ge-0/0/2.0 92.60.64.1:0 11
  130.  
  131. noc@br2.mil.bb> show mpls interface
  132. Interface State Administrative groups
  133. ge-0/0/1.0 Up <none>
  134. ge-0/0/2.0 Up <none>
  135.  
  136. noc@br2.mil.bb> show mpls lsp
  137. Ingress LSP: 1 sessions
  138. To From State Rt ActivePath P LSPname
  139. 92.60.64.1 92.60.64.2 Dn 0 - br2-lsp
  140. Total 1 displayed, Up 0, Down 1
  141.  
  142. Egress LSP: 0 sessions
  143. Total 0 displayed, Up 0, Down 0
  144.  
  145. Transit LSP: 0 sessions
  146. Total 0 displayed, Up 0, Down 0
  147.  
  148. noc@br2.mil.bb>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement