Advertisement
billyfence

ISP-1-R2- Config

Apr 16th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.86 KB | None | 0 0
  1. [edit]
  2. root@ISP-1-R2# show
  3. ## Last changed: 2018-04-14 13:14:28 UTC
  4. version 14.1R1.10;
  5. system {
  6. host-name ISP-1-R2;
  7. root-authentication {
  8. encrypted-password "$1$.3BFfTJG$naznJIRGK00qR9OQtzagk/"; ## SECRET-DATA
  9. }
  10. syslog {
  11. user * {
  12. any emergency;
  13. }
  14. file messages {
  15. any notice;
  16. authorization info;
  17. }
  18. file interactive-commands {
  19. interactive-commands any;
  20. }
  21. }
  22. }
  23. interfaces {
  24. em2 {
  25. description "ISP-1-R2 to Edge 1";
  26. unit 0 {
  27. family inet {
  28. address 30.30.30.5/30;
  29. }
  30. }
  31. }
  32. em4 {
  33. description "ISP-1-R2 to ISP-1-R1";
  34. unit 0 {
  35. family inet {
  36. address 50.50.50.1/30;
  37. }
  38. }
  39. }
  40. lo0 {
  41. unit 0 {
  42. family inet {
  43. address 10.10.10.2/32;
  44. }
  45. }
  46. }
  47. }
  48. routing-options {
  49. router-id 10.10.10.2;
  50. autonomous-system 100;
  51. }
  52. protocols {
  53. bgp {
  54. group IBGP-PEERS {
  55. type internal;
  56. local-address 10.10.10.2;
  57. neighbor 10.10.10.1;
  58. }
  59. group isp1-r2 {
  60. type external;
  61. peer-as 10;
  62. neighbor 30.30.30.6;
  63. }
  64. }
  65. ospf {
  66. area 0.0.0.0 {
  67. interface em4.0 {
  68. interface-type p2p;
  69. }
  70. interface lo0.0 {
  71. passive;
  72. }
  73. interface em2.0 {
  74. passive;
  75. }
  76. }
  77. }
  78. }
  79. policy-options {
  80. policy-statement BGP-ENTERPRISE-OUT {
  81. term ACCEPT {
  82. from community Customers;
  83. }
  84. term OTHER {
  85. then reject;
  86. }
  87. }
  88. community Customers members [ 400:200 300:100 ];
  89. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement