Advertisement
Guest User

Untitled

a guest
Apr 17th, 2020
369
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.59 KB | None | 0 0
  1. root@router_R1> show configuration protocols mpls
  2. traffic-engineering {
  3.     mpls-forwarding;
  4. }
  5. admin-groups {
  6.     red 0;
  7.     blue 2;
  8. }
  9. label-switched-path r1r7 {
  10.     to 7.7.7.7;
  11.     primary red_path {
  12.         admin-group include-all red;
  13.     }
  14.     secondary blue_path {
  15.         standby;
  16.         admin-group include-all blue;
  17.     }
  18. }
  19. path red_path;
  20. path blue_path;
  21. interface all;
  22. interface xe-0/0/0.0 {
  23.     admin-group blue;
  24. }
  25. interface xe-0/0/1.0;
  26. interface xe-0/0/2.0 {
  27.     admin-group red;
  28. }
  29. interface lo0.0;
  30.  
  31. ---------
  32.  
  33. root@router_R1> show mpls lsp name r1r7 detail
  34. Ingress LSP: 1 sessions
  35.  
  36. 7.7.7.7
  37.   From: 1.1.1.1, State: Up, ActiveRoute: 0, LSPname: r1r7
  38.   ActivePath: blue_path (secondary)
  39.   LSPtype: Static Configured, Penultimate hop popping
  40.   LoadBalance: Random
  41.   Encoding type: Packet, Switching type: Packet, GPID: IPv4
  42.   Primary   red_path         State: Dn
  43.     Priorities: 7 0
  44.     SmartOptimizeTimer: 180
  45.           Include All: red
  46.     Will be enqueued for recomputation in 23 second(s).
  47.     1 Apr 18 03:42:29.753 CSPF failed: no route toward 7.7.7.7[170 times]
  48.  *Standby   blue_path        State: Up
  49.     Priorities: 7 0
  50.     SmartOptimizeTimer: 180
  51.           Include All: blue
  52.     Computed ERO (S [L] denotes strict [loose] hops): (CSPF metric: 30)
  53.  1.2.1.2 S 2.4.2.4 S 4.7.4.7 S
  54.     Received RRO (ProtectionFlag 1=Available 2=InUse 4=B/W 8=Node 10=SoftPreempt 20=Node-ID):
  55.           1.2.1.2 2.4.2.4 4.7.4.7
  56. Total 1 displayed, Up 1, Down 0
  57.  
  58. Egress LSP: 0 sessions
  59. Total 0 displayed, Up 0, Down 0
  60.  
  61. Transit LSP: 0 sessions
  62. Total 0 displayed, Up 0, Down 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement