Routing

Layer 2 Ethernet transport over OpenVPN

Tony Mattke · 2009.05.14 · 1 min read

One of the things I used to deploy frequently at my previous position was transport for other ISPs and businesses. Since MPLS support is in its infancy on the Imagestream platform, and was yet to be deployed at the time, this is what I came up with. The configuration is quite simple, setup an OpenVPN tunnel across your network, and bridge a vlan or interface to it. Simple, right?

Here is one side of the config…

text
!
interface Tunnel100
 description Customer Transit
 tunnel mode openvpn
 tunnel options --passtos
 tunnel source 10.1.32.1 9876
 tunnel destination 10.12.54.1 9876
 tunnel key 8df4234bc8e
 ip pim sparce-mode
 bridge-group 100 spanning-disabled
!
interface Ethernet4
 description Customer Transit Interface
 bridge-group 100 spanning-disabled
!

Mirroring this configuration on the remote side will complete the transport… If you have any questions or problems implementing this, please leave a command I can attempt to assist you.

More in Routing
comments powered by Disqus

Related Posts

Routing

BGP Security Tips (updated)

For some, BGP is a rather large obtrusive beast of a protocol that scares them half to death.

2009.08.11 · 2 min
Fundamentals

Cisco VOIP Basics – Installing Cisco Call Manager Express

This is the second part of my Cisco voip basics series. ( Parts 1, 3 & 4 ) Our goal in this series is to setup a working voice gateway that you could use in your home office.

2009.08.24 · 5 min
Switching

Nexus Virtual Port Channel (vPC)

The Nexus 7000 and 5000 series have taken port-channel functionality to the next level by enabling port-channels to exist between links that are connected to different devices.

2011.02.01 · 4 min