<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>onvox.net &#187; 802.1Q</title>
	<atom:link href="http://onvox.net/tag/8021q/feed" rel="self" type="application/rss+xml" />
	<link>http://onvox.net</link>
	<description></description>
	<lastBuildDate>Wed, 06 Apr 2011 15:46:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How to enable 802.1Q VLAN tagging in Ubuntu</title>
		<link>http://onvox.net/linux/how-to-enable-8021q-vlan-tagging-in-ubuntu</link>
		<comments>http://onvox.net/linux/how-to-enable-8021q-vlan-tagging-in-ubuntu#comments</comments>
		<pubDate>Thu, 18 Sep 2008 01:59:59 +0000</pubDate>
		<dc:creator>Jonathan Voss</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[802.1Q]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[VLAN]]></category>

		<guid isPermaLink="false">http://dev.onvox.net/?p=3</guid>
		<description><![CDATA[To make use of IEEE 802.1Q VLAN tagging capabilities in Ubuntu you must first install the user mode programs for Virtual LAN support: sudo apt-get install vlan Next the 8021q kernel module must be loaded to enable VLAN support on a kernel level: sudo modprobe 8021q A quick review of lsmod will ensure the kernel [...]]]></description>
			<content:encoded><![CDATA[<p>To make use of <a href="http://en.wikipedia.org/wiki/IEEE_802.1Q">IEEE 802.1Q</a> VLAN tagging capabilities in Ubuntu you must first install the user mode programs for <a href="http://en.wikipedia.org/wiki/Vlan">Virtual LAN</a> support:</p>
<p><code>sudo apt-get install vlan</code></p>
<p>Next the <code>8021q</code> kernel module must be loaded to enable VLAN support on a kernel level:</p>
<p><code>sudo modprobe 8021q</code></p>
<p>A quick review of <code>lsmod</code> will ensure the kernel module was loaded:</p>
<p><code>lsmod | grep 8021q</code></p>
<p>The output of the command should look similar to this:</p>
<pre>8021q                  26896  0</pre>
<p>Next we can create a tagged interface  in <code>/etc/network/interfaces</code>. The following example configures eth1 for VLAN 10 to use DHCP to obtain its IP address:</p>
<p><code>iface eth1.10 inet dhcp</code></p>
<p>The new VLAN 10 interface can now be initialized using:</p>
<p><code>ifup eth1.10</code></p>
<p>The usual nomenclature for making your interface come up automatically during the boot process is the same for your existing interfaces, just use <code>eth1.10</code>.</p>
<p>Once the interface is initialized you may want to refer to the following proc locations for configuration information:</p>
<p><code>/proc/net/vlan/config</code><br />
<code>/proc/net/vlan/[vlan-device]</code></p>
]]></content:encoded>
			<wfw:commentRss>http://onvox.net/linux/how-to-enable-8021q-vlan-tagging-in-ubuntu/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

