Skip to content

Instantly share code, notes, and snippets.

@KasperJak
Last active July 5, 2016 08:43
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/8c98cc610e28ee6c9e8a5f21dc65a2f1 to your computer and use it in GitHub Desktop.
Save KasperJak/8c98cc610e28ee6c9e8a5f21dc65a2f1 to your computer and use it in GitHub Desktop.
isp2-r1 - DMVPN OSPF
hostname isp2-r1
!
interface e2/0
description dc1-r2
ip address 100.0.0.5 255.255.255.252
no shut
!
interface e3/0
description isp1-r1
ip address 20.0.0.2 255.255.255.252
no shut
!
interface e1/0
description isp2-r2
ip address 30.0.0.1 255.255.255.252
no shut
!
interface e1/2
description isp2-r3
ip address 30.0.0.5 255.255.255.252
no shut
!
router bgp 65001
bgp router-id 30.1.1.1
neighbor internal-peer peer-group
bgp listen range 30.0.0.0/24 peer-group internal-peer
neighbor internal-peer remote-as 65001
neighbor internal-peer next-hop-self
neighbor 20.0.0.1 remote-as 65000
network 100.0.0.4 mask 255.255.255.252
!
router ospf 1
router-id 1.1.1.1
passive-interface default
no passive-interface e1/0
no passive-interface e1/2
network 30.0.0.0 0.0.0.255 area 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment