Advertisement
Guest User

Untitled

a guest
Jun 5th, 2017
553
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.47 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 mpls interface
  28. Interface State Administrative groups
  29. ge-0/0/1.0 Up <none>
  30. ge-0/0/2.0 Up <none>
  31.  
  32. noc@br1.mil.bb> show mpls lsp
  33. Ingress LSP: 1 sessions
  34. To From State Rt ActivePath P LSPname
  35. 92.60.64.2 92.60.64.1 Dn 0 - br2-lsp
  36. Total 1 displayed, Up 0, Down 1
  37.  
  38. Egress LSP: 0 sessions
  39. Total 0 displayed, Up 0, Down 0
  40.  
  41. Transit LSP: 0 sessions
  42. Total 0 displayed, Up 0, Down 0
  43.  
  44. noc@br1.mil.bb>
  45.  
  46.  
  47. --------------------------------
  48. BR 2:
  49. --------------------------------
  50.  
  51. protocols {
  52. mpls {
  53. traffic-engineering bgp-igp;
  54. label-switched-path br2-lsp {
  55. from 92.60.64.2;
  56. to 92.60.64.1;
  57. }
  58. interface ge-0/0/2.0 {
  59. label-map 1000000 {
  60. next-hop 92.60.70.75;
  61. pop;
  62. }
  63. }
  64. interface ge-0/0/1.0;
  65. interface lo0.0;
  66. }
  67. ldp {
  68. explicit-null;
  69. interface ge-0/0/1.0;
  70. interface ge-0/0/2.0;
  71. interface lo0.0;
  72. }
  73. }
  74.  
  75. noc@br2.mil.bb> show ldp neighbor
  76. Address Interface Label space ID Hold time
  77. 92.60.64.1 ge-0/0/1.0 92.60.64.1:0 14
  78. 92.60.64.197 ge-0/0/2.0 92.60.64.1:0 11
  79.  
  80. noc@br2.mil.bb> show mpls interface
  81. Interface State Administrative groups
  82. ge-0/0/1.0 Up <none>
  83. ge-0/0/2.0 Up <none>
  84.  
  85. noc@br2.mil.bb> show mpls lsp
  86. Ingress LSP: 1 sessions
  87. To From State Rt ActivePath P LSPname
  88. 92.60.64.1 92.60.64.2 Dn 0 - br2-lsp
  89. Total 1 displayed, Up 0, Down 1
  90.  
  91. Egress LSP: 0 sessions
  92. Total 0 displayed, Up 0, Down 0
  93.  
  94. Transit LSP: 0 sessions
  95. Total 0 displayed, Up 0, Down 0
  96.  
  97. noc@br2.mil.bb>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement