Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. protocols {
  2. bgp {
  3. import BGPIMPORT;
  4. export BGPEXPORT;
  5. group BSO {
  6. type external;
  7. peer-as 31216;
  8. neighbor 89.30.124.129;
  9. neighbor 89.30.124.133;
  10. }
  11. }
  12. }
  13. policy-options {
  14. policy-statement BGPEXPORT {
  15. term SUBNETS {
  16. from {
  17. route-filter 89.30.15.0/24 exact;
  18. route-filter 163.5.0.0/16 exact;
  19. }
  20. then {
  21. load-balance per-packet;
  22. accept;
  23. }
  24. }
  25. term THEREST {
  26. from protocol direct;
  27. then reject;
  28. }
  29. }
  30. policy-statement BGPIMPORT {
  31. term SUBNETS {
  32. from {
  33. route-filter 0.0.0.0/0 exact;
  34. }
  35. then {
  36. load-balance per-packet;
  37. accept;
  38. }
  39. }
  40. term THEREST {
  41. from protocol bgp;
  42. then reject;
  43. }
  44. }
  45. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement