Advertisement
Guest User

Untitled

a guest
May 4th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.32 KB | None | 0 0
  1. version 12.1R1.9;
  2. system {
  3. root-authentication {
  4. encrypted-password "$1$fyx2nGwP$czrUxTVClDreYoGEn33dL."; ## SECRET-DATA
  5. }
  6. services {
  7. ssh {
  8. root-login allow;
  9. protocol-version v2;
  10. }
  11. }
  12. syslog {
  13. user * {
  14. any emergency;
  15. }
  16. file messages {
  17. any notice;
  18. authorization info;
  19. }
  20. file interactive-commands {
  21. interactive-commands any;
  22. }
  23. }
  24. }
  25. interfaces {
  26. lt-0/0/0 {
  27. unit 0 {
  28. encapsulation frame-relay;
  29. dlci 1;
  30. peer-unit 1;
  31. family inet;
  32. }
  33. unit 1 {
  34. encapsulation frame-relay;
  35. dlci 1;
  36. peer-unit 0;
  37. family inet;
  38. }
  39. }
  40. em0 {
  41. unit 0 {
  42. family inet {
  43. address 172.20.1.205/24;
  44. }
  45. }
  46. }
  47. em2 {
  48. unit 0 {
  49. family inet {
  50. address 10.100.0.254/24;
  51. }
  52. }
  53. }
  54. lo0 {
  55. unit 1 {
  56. family inet {
  57. address 1.1.1.1/32;
  58. }
  59. }
  60. }
  61. }
  62. routing-options {
  63. static {
  64. route 10.200.0.0/24 next-hop lt-0/0/0.0;
  65. route 172.20.0.0/16 next-hop 172.20.1.254;
  66. }
  67. route-distinguisher-id 10.100.0.254;
  68. autonomous-system 64512;
  69. dynamic-tunnels {
  70. overlay {
  71. source-address 10.100.0.254;
  72. gre;
  73. destination-networks {
  74. 10.100.0.0/16;
  75. }
  76. }
  77. }
  78. }
  79. protocols {
  80. mpls {
  81. interface all;
  82. }
  83. bgp {
  84. group Contrail {
  85. type internal;
  86. local-address 10.100.0.254;
  87. keep all;
  88. family inet-vpn {
  89. unicast;
  90. }
  91. export exp2bgp;
  92. neighbor 10.100.0.50;
  93. }
  94. }
  95. }
  96. policy-options {
  97. policy-statement exp2bgp {
  98. from protocol static;
  99. then accept;
  100. }
  101. }
  102. routing-instances {
  103. public {
  104. instance-type vrf;
  105. interface lt-0/0/0.1;
  106. vrf-target target:64512:100;
  107. routing-options {
  108. static {
  109. route 1.1.1.1/32 next-hop lt-0/0/0.1;
  110. }
  111. }
  112. }
  113. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement