Guest User

Untitled

a guest
Feb 2nd, 2021
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. protocol bgp RRxxxxx_2_125 {
  2. local as xxxxx;
  3. source address 10.200.2.124;
  4. interpret communities yes;
  5. capabilities yes;
  6. rr cluster id 1.1.1.1;
  7. ipv4 {
  8. import all;
  9. export filter RRexport;
  10. };
  11.  
  12. vpn4 mpls {
  13. import all;
  14. export all;
  15. };
  16. neighbor 10.200.2.125 as xxxxx;
  17. }
  18.  
  19. template bgp rr_clients {
  20. local as xxxxx;
  21. neighbor as xxxxx;
  22. capabilities yes;
  23. rr client;
  24. multihop;
  25. ipv4 {
  26. import all;
  27. export filter rrclientsexport;
  28. };
  29. ipv6 {
  30. import all;
  31. export filter rrclientsexport6;
  32. };
  33.  
  34.  
  35. }
  36.  
Advertisement
Add Comment
Please, Sign In to add comment