Layer 2 Ethernet transport over OpenVPN

Layer 2 Ethernet transport over OpenVPN

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…

!
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.

comments powered by Disqus

Related Posts

Regular Expression Basics

Regular Expression Basics

Before I even get started, I want to mention that not all regular expression metacharacters are supported in every application. Keep this in mind when building your matches. …

Read More
The Road to Hack…intosh

The Road to Hack…intosh

Over the past couple months, the lack of desktop here at home has driven me up the wall. Turning to my laptop time and time again, hooking it up to an external monitor while …

Read More
PCAP or it didn’t happen…. The t-shirt!

PCAP or it didn’t happen…. The t-shirt!

Some days I don’t know why I do things… But last night I was playing around with creating a PCAP meme when my friend Josh Kittle said he’d be interested in a t-shirt like that. I …

Read More