Advertisement
Guest User

Untitled

a guest
Aug 16th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. !
  2. hostname S101_T100
  3. !
  4. vrf definition CORP
  5. rd 101:101
  6. !
  7. address-family ipv4
  8. exit-address-family
  9. !
  10. vrf definition FVRF-100
  11. !
  12. address-family ipv4
  13. exit-address-family
  14. !
  15. interface Loopback0
  16. vrf forwarding CORP
  17. ip address 10.101.0.0 255.255.255.255
  18. !
  19. interface Tunnel100
  20. vrf forwarding CORP
  21. ip address 192.168.100.101 255.255.255.0
  22. no ip redirects
  23. ip mtu 1400
  24. ip nhrp authentication 100
  25. ip nhrp network-id 100
  26. ip nhrp holdtime 600
  27. ip nhrp nhs 192.168.100.1 nbma 100.0.0.1 multicast
  28. ip nhrp shortcut
  29. ip tcp adjust-mss 1360
  30. tunnel source Ethernet0/0
  31. tunnel mode gre multipoint
  32. tunnel key 100
  33. tunnel path-mtu-discovery
  34. tunnel vrf FVRF-100
  35. !
  36. interface Ethernet0/0
  37. vrf forwarding FVRF-100
  38. ip address 100.0.0.101 255.255.255.0
  39. !
  40. router bgp 101
  41. bgp router-id 10.101.0.0
  42. bgp log-neighbor-changes
  43. no bgp default ipv4-unicast
  44. !
  45. address-family ipv4 vrf CORP
  46. network 10.101.0.0 mask 255.255.255.255
  47. aggregate-address 10.101.0.0 255.255.0.0 summary-only
  48. neighbor 192.168.100.1 remote-as 1
  49. neighbor 192.168.100.1 activate
  50. neighbor 192.168.100.1 shutdown
  51. exit-address-family
  52. !
  53. ip bgp-community new-format
  54. !
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement