Networking

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 Networking

Related Posts

Networking · 3 min read

QinQ: IEEE 802.1Q Tunneling

2012.04.19

In situations where service providers want to offer transparent LAN services that preserve a customers VLAN tags across your Layer-2 network, this amendment to the IEEE 802.

Networking · 11 min read

Cisco MPLS VRF Configuration and Demo

2009.11.19

A while back I asked everyone to vote on what topic they wanted to see next, and by no surprise almost every voted for MPLS VRFs.

Networking · 2 min read

Configuring a Cisco Router as a Frame Relay Switch

2009.08.06

One of the most effective lab setups uses frame relay as its primary transport method. This is a configuration that many people use and praise for its ease of setup and maintenance.