Guest User

Untitled

a guest
Oct 22nd, 2017
386
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.09 KB | None | 0 0
  1. swp1+---------+swp2
  2. +----| leaf 1 |----+
  3. / +---------+
  4. /
  5. /swp3 swp3
  6. +---------+swp1 swp1+---------+
  7. | spine 1 |---------------| spine 2 |
  8. | |---------------| |
  9. +---------+swp2 swp2+---------+
  10. swp4 /swp4
  11. /
  12. swp1+---------+swp2 /
  13. +----| leaf 2 |----+
  14. +---------+
  15.  
  16. spine1# show ip bgp
  17. BGP table version is 54, local router ID is 1.1.1.1
  18. Status codes: s suppressed, d damped, h history, * valid, > best, = multipath,
  19. i internal, r RIB-failure, S Stale, R Removed
  20. Origin codes: i - IGP, e - EGP, ? - incomplete
  21.  
  22. Network Next Hop Metric LocPrf Weight Path
  23. [...]
  24. *=i192.168.200.0 swp2 0 100 0 i
  25. *=i swp1 0 100 0 i
  26. *>i swp4 0 100 0 i
  27.  
  28. root@spine1:~# ip route show 192.168.200.0/24
  29. 192.168.200.0/24 proto bgp metric 20
  30. nexthop via 169.254.0.1 dev swp4 weight 1 onlink
  31. nexthop via 169.254.0.1 dev swp1 weight 1 onlink
  32. nexthop via 169.254.0.1 dev swp2 weight 1 onlink
  33.  
  34. interface swp1
  35. ipv6 nd ra-interval 3
  36. no ipv6 nd suppress-ra
  37. !
  38. interface swp2
  39. ipv6 nd ra-interval 3
  40. no ipv6 nd suppress-ra
  41. !
  42. interface swp3
  43. ipv6 nd ra-interval 3
  44. no ipv6 nd suppress-ra
  45. !
  46. interface swp4
  47. ipv6 nd ra-interval 3
  48. no ipv6 nd suppress-ra
  49. !
  50. router bgp 65000
  51. bgp router-id 1.1.1.1
  52. neighbor fabric peer-group
  53. neighbor fabric remote-as internal
  54. neighbor fabric description Internal Fabric Network
  55. neighbor fabric timers 1 3
  56. neighbor fabric timers connect 3
  57. neighbor fabric capability extended-nexthop
  58. neighbor swp1 interface peer-group fabric
  59. neighbor swp2 interface peer-group fabric
  60. neighbor swp3 interface peer-group fabric
  61. neighbor swp4 interface peer-group fabric
  62. !
  63. address-family ipv4 unicast
  64. network 1.1.1.1/32
  65. redistribute connected route-map LOOPBACK
  66. neighbor fabric route-reflector-client
  67. neighbor fabric next-hop-self
  68. maximum-paths 64
  69. exit-address-family
Add Comment
Please, Sign In to add comment