Advertisement
PANTHEONtech

[lighty-bgp] Full configuration of Arista switch leaf2

Aug 22nd, 2019
1,123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. leaf2#sh run
  2. ! Command: show running-config
  3. ! device: leaf2 (cEOSLab, EOS-4.21.0F)
  4. !
  5. transceiver qsfp default-mode 4x10G
  6. !
  7. service routing protocols model multi-agent
  8. !
  9. hostname leaf2
  10. !
  11. spanning-tree mode mstp
  12. !
  13. no aaa root
  14. !
  15. vlan 10
  16. !
  17. interface Ethernet1
  18. switchport access vlan 10
  19. !
  20. interface Ethernet2
  21. no switchport
  22. ip address 172.20.0.3/16
  23. !
  24. interface Loopback0
  25. ip address 10.10.10.2/32
  26. !
  27. interface Vxlan1
  28. vxlan source-interface Loopback0
  29. vxlan udp-port 4789
  30. vxlan vlan 10 vni 3322
  31. vxlan learn-restrict any
  32. !
  33. ip routing
  34. !
  35. router bgp 50
  36. router-id 172.20.0.3
  37. neighbor 172.20.0.4 remote-as 50
  38. neighbor 172.20.0.4 next-hop-self
  39. neighbor 172.20.0.4 send-community extended
  40. neighbor 172.20.0.4 maximum-routes 12000
  41. redistribute connected
  42. redistribute attached-host
  43. !
  44. vlan 10
  45. rd 50:3322
  46. route-target both 10:3322
  47. redistribute learned
  48. !
  49. address-family evpn
  50. neighbor 172.20.0.4 activate
  51. !
  52. address-family ipv4
  53. network 10.10.10.2/32
  54. !
  55. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement