Advertisement
Guest User

Untitled

a guest
Nov 11th, 2014
699
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 KB | None | 0 0
  1. MX config:
  2. interfaces {
  3. lt-0/0/0 {
  4. description "Tunnel Interface";
  5. unit 0 {
  6. description "c1 tunnel";
  7. encapsulation ethernet-ccc;
  8. peer-unit 1;
  9. }
  10. unit 1 {
  11. encapsulation ethernet;
  12. peer-unit 0;
  13. family inet {
  14. address 10.42.146.85/30; <--- /30 between MX and CE
  15. }
  16. }
  17. }
  18. }
  19. protocols {
  20. mpls {
  21. label-switched-path FROM-MX-TO-EX-C1 {
  22. to 10.42.146.1; <--- Loopback on EX
  23. no-cspf;
  24. }
  25. }
  26. connections {
  27. remote-interface-switch C1 {
  28. interface lt-0/0/0.0;
  29. transmit-lsp FROM-MX-TO-EX-C1;
  30. receive-lsp FROM-EX-TO-MX-C1;
  31. }
  32.  
  33. }
  34.  
  35.  
  36.  
  37. EX4550 config:
  38. ge-0/0/3 { <-- Interface facing CE
  39. description c2;
  40. ether-options {
  41. no-flow-control;
  42. }
  43. unit 0 {
  44. family ccc;
  45. }
  46. }
  47. }
  48.  
  49. protocols {
  50. mpls {
  51. label-switched-path FROM-EX-TO-MX-C1 {
  52. to 10.52.127.145; <---- Loopback of MX
  53. no-cspf;
  54. }
  55.  
  56. }
  57. connections {
  58. remote-interface-switch c1 {
  59. interface ge-0/0/3.0;
  60. transmit-lsp FROM-EX-TO-MX-C1;
  61. receive-lsp FROM-MX-TO-EX-C1;
  62. }
  63. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement