Skip to content

Instantly share code, notes, and snippets.

@KasperJak
Last active July 5, 2016 08:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KasperJak/81443acfc0929f04596d705f4a75e78d to your computer and use it in GitHub Desktop.
Save KasperJak/81443acfc0929f04596d705f4a75e78d to your computer and use it in GitHub Desktop.
isp2-r3 - DMVPN OSPF
hostname isp2-r3
!
interface e1/1
description isp2-r2
ip address 30.0.0.10 255.255.255.252
no shut
!
interface e1/2
description isp2-r1
ip address 30.0.0.6 255.255.255.252
no shut
!
interface e3/0
description isp3-r1
ip address 20.0.0.13 255.255.255.252
no shut
!
interface e3/1
description isp1-r1
ip address 20.0.0.6 255.255.255.252
no shut
!
interface e2/0
description spoke1
ip address 100.0.0.33 255.255.255.252
no shut
!
router bgp 65001
bgp router-id 30.1.3.1
neighbor 30.0.0.5 remote-as 65001
neighbor 30.0.0.5 next-hop self
neighbor 30.0.0.9 next-hop self
neighbor 30.0.0.9 remote-as 65001
neighbor 20.0.0.14 remote-as 65002
neighbor 20.0.0.5 remote-as 65000
network 100.0.0.32 mask 255.255.255.252
!
router ospf 1
router-id 3.3.3.3
passive-interface default
no passive-interface e1/1
no passive-interface e1/2
network 30.0.0.0 0.0.0.255 area 0
network 100.0.0.32 mask 255.255.255.252
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment