<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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:series="http://unfoldingneurons.com/"
		>
<channel>
	<title>Comments on: Howto: Configure Linux Virtual Local Area Network (VLAN)</title>
	<atom:link href="http://www.cyberciti.biz/tips/howto-configure-linux-virtual-local-area-network-vlan.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.cyberciti.biz/tips/howto-configure-linux-virtual-local-area-network-vlan.html</link>
	<description>This is a Linux sys admin journal by Vivek about sys admin work, Linux tips &#38; tricks, hacks, news and more.</description>
	<lastBuildDate>Sat, 20 Mar 2010 00:34:04 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: hafeez</title>
		<link>http://www.cyberciti.biz/tips/howto-configure-linux-virtual-local-area-network-vlan.html#comment-154351</link>
		<dc:creator>hafeez</dc:creator>
		<pubDate>Thu, 18 Mar 2010 07:29:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/howto-configure-linux-virtual-local-area-network-vlan.html#comment-154351</guid>
		<description>A working configuration example from hafeezisbad@gmail.com

Server ip : 172.27.0.10
Swtich ip / gateway ip of server : 172.27.0.100
Option domain –name servers : 172.27.0.6

Please note  default vlan 172.27.0.x in this case 

Switch and server need to be in default lan for communication / or else we need to trunk in case other vlan connected , we need to configure vconfig  on server to communicate 


For biggner I would recommend to go for the default  vlan connectivity 


Example :
&lt;pre&gt;
ddns-update-style interim;
ignore client-updates;
default-lease-time 43200;
max-lease-time 43200;
authoritative;


#-----subnet mask-- broadcast-- gateway-#

option subnet-mask 255.255.255.0;
#option broadcast-address 192.168.1.1;
option routers 172.27.0.100;
option domain-name-servers 172.27.0.6;


# ----------- Server Scope and vlan1 with switches and server--------------#
subnet 172.27.0.0 netmask 255.255.255.0 {
#range 172.27.0.0 172.27.0.50;
option routers 172.27.0.1;
#option subnet-mask 255.255.255.0;
option broadcast-address 172.27.0.255;
#option domain-name-servers 172.27.0.5;
}


# ----------- clients1 Scope-vlan2-------------#
subnet 172.27.1.0 netmask 255.255.255.0 {
range 172.27.1.3 172.27.1.200;
option routers 172.27.1.1;
option subnet-mask 255.255.255.0;
option broadcast-address 172.27.1.255;
#option domain-name-servers 192.168.1.1 #
}
&lt;pre&gt;

Save the file 
&lt;pre&gt;
Chkconfig –list dhcpd on&lt;/pre&gt;
{ For enabling the service on all run levels }
Service dhcpd start
In case , dhcp server faild to start , check with  log messages 

&lt;pre&gt;/var/log/messages&lt;/pre&gt;

Check for the ip helper address in layer 3 swtich , which act as dhcp-relay 
Which has to be configured as 172.27.0.10


Troubleshooting Dhcp server start up error :

1)	Run the Dhcp service in debug mode
2)	Check the ip configuration
3)	Check for syntax errors in dhcpd.conf file
4)	Check for the right location of the dhcpd file
5)	Ping test between the switch and server
6)	Possible conflict of other dhcp server may be the issue

dhcpd in the foreground in debug mode with /usr/sbin/dhcpd -d –f

Hopefully, a DHCP server like the one we’ll be configuring will respond. Running tcpdump shows a dhcp request looks like:
17:26:02.003956 00:00:00:00:00:00 &gt; ff:ff:ff:ff:ff:ff, ethertype IPv4 (0×0800), length 342: 0.0.0.0.68 &gt; 255.255.255.255.67: BOOTP/DHCP, Request, length 300
You should notice DHCP running in the process (ps) list. Any problems, check syslog

Congratulations you have finally configured In easy steps</description>
		<content:encoded><![CDATA[<p>A working configuration example from <a href="mailto:hafeezisbad@gmail.com">hafeezisbad@gmail.com</a></p>
<p>Server ip : 172.27.0.10<br />
Swtich ip / gateway ip of server : 172.27.0.100<br />
Option domain –name servers : 172.27.0.6</p>
<p>Please note  default vlan 172.27.0.x in this case </p>
<p>Switch and server need to be in default lan for communication / or else we need to trunk in case other vlan connected , we need to configure vconfig  on server to communicate </p>
<p>For biggner I would recommend to go for the default  vlan connectivity </p>
<p>Example :</p>
<pre>
ddns-update-style interim;
ignore client-updates;
default-lease-time 43200;
max-lease-time 43200;
authoritative;

#-----subnet mask-- broadcast-- gateway-#

option subnet-mask 255.255.255.0;
#option broadcast-address 192.168.1.1;
option routers 172.27.0.100;
option domain-name-servers 172.27.0.6;

# ----------- Server Scope and vlan1 with switches and server--------------#
subnet 172.27.0.0 netmask 255.255.255.0 {
#range 172.27.0.0 172.27.0.50;
option routers 172.27.0.1;
#option subnet-mask 255.255.255.0;
option broadcast-address 172.27.0.255;
#option domain-name-servers 172.27.0.5;
}

# ----------- clients1 Scope-vlan2-------------#
subnet 172.27.1.0 netmask 255.255.255.0 {
range 172.27.1.3 172.27.1.200;
option routers 172.27.1.1;
option subnet-mask 255.255.255.0;
option broadcast-address 172.27.1.255;
#option domain-name-servers 192.168.1.1 #
}
</pre>
<pre>

Save the file
</pre>
<pre>
Chkconfig –list dhcpd on</pre>
<p>{ For enabling the service on all run levels }<br />
Service dhcpd start<br />
In case , dhcp server faild to start , check with  log messages </p>
<pre>/var/log/messages</pre>
<p>Check for the ip helper address in layer 3 swtich , which act as dhcp-relay<br />
Which has to be configured as 172.27.0.10</p>
<p>Troubleshooting Dhcp server start up error :</p>
<p>1)	Run the Dhcp service in debug mode<br />
2)	Check the ip configuration<br />
3)	Check for syntax errors in dhcpd.conf file<br />
4)	Check for the right location of the dhcpd file<br />
5)	Ping test between the switch and server<br />
6)	Possible conflict of other dhcp server may be the issue</p>
<p>dhcpd in the foreground in debug mode with /usr/sbin/dhcpd -d –f</p>
<p>Hopefully, a DHCP server like the one we’ll be configuring will respond. Running tcpdump shows a dhcp request looks like:<br />
17:26:02.003956 00:00:00:00:00:00 &gt; ff:ff:ff:ff:ff:ff, ethertype IPv4 (0×0800), length 342: 0.0.0.0.68 &gt; 255.255.255.255.67: BOOTP/DHCP, Request, length 300<br />
You should notice DHCP running in the process (ps) list. Any problems, check syslog</p>
<p>Congratulations you have finally configured In easy steps</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sayantan</title>
		<link>http://www.cyberciti.biz/tips/howto-configure-linux-virtual-local-area-network-vlan.html#comment-153374</link>
		<dc:creator>sayantan</dc:creator>
		<pubDate>Sun, 07 Feb 2010 08:18:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/howto-configure-linux-virtual-local-area-network-vlan.html#comment-153374</guid>
		<description>is it virtual ip?can it be used with RAC?</description>
		<content:encoded><![CDATA[<p>is it virtual ip?can it be used with RAC?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Venkat</title>
		<link>http://www.cyberciti.biz/tips/howto-configure-linux-virtual-local-area-network-vlan.html#comment-152957</link>
		<dc:creator>Venkat</dc:creator>
		<pubDate>Sun, 17 Jan 2010 02:44:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/howto-configure-linux-virtual-local-area-network-vlan.html#comment-152957</guid>
		<description>In the above test I have seen the statement like &quot;Remove gateway entry from all other network config files.&quot; How can I  find the places where the gateway is configured on the system ?

Please let me know how can I test my vlan config using one single Linux PC ?</description>
		<content:encoded><![CDATA[<p>In the above test I have seen the statement like &#8220;Remove gateway entry from all other network config files.&#8221; How can I  find the places where the gateway is configured on the system ?</p>
<p>Please let me know how can I test my vlan config using one single Linux PC ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Arun Menon</title>
		<link>http://www.cyberciti.biz/tips/howto-configure-linux-virtual-local-area-network-vlan.html#comment-151860</link>
		<dc:creator>Arun Menon</dc:creator>
		<pubDate>Thu, 26 Nov 2009 10:48:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/howto-configure-linux-virtual-local-area-network-vlan.html#comment-151860</guid>
		<description>hey folks
how can i configure the vlan priority bits on the ethernet header...it wud be of gr8 help if ne1 could provide som inputs on this

regards
Arun</description>
		<content:encoded><![CDATA[<p>hey folks<br />
how can i configure the vlan priority bits on the ethernet header&#8230;it wud be of gr8 help if ne1 could provide som inputs on this</p>
<p>regards<br />
Arun</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shlomi</title>
		<link>http://www.cyberciti.biz/tips/howto-configure-linux-virtual-local-area-network-vlan.html#comment-148688</link>
		<dc:creator>Shlomi</dc:creator>
		<pubDate>Mon, 25 May 2009 12:31:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/howto-configure-linux-virtual-local-area-network-vlan.html#comment-148688</guid>
		<description>The line &quot;DEVICE=ifcfg-eth0.5&quot;, should be written as &quot;DEVICE=eth0.5&quot; !!!</description>
		<content:encoded><![CDATA[<p>The line &#8220;DEVICE=ifcfg-eth0.5&#8243;, should be written as &#8220;DEVICE=eth0.5&#8243; !!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Manisha</title>
		<link>http://www.cyberciti.biz/tips/howto-configure-linux-virtual-local-area-network-vlan.html#comment-148175</link>
		<dc:creator>Manisha</dc:creator>
		<pubDate>Mon, 20 Apr 2009 12:20:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/howto-configure-linux-virtual-local-area-network-vlan.html#comment-148175</guid>
		<description>Can you give me the whole codes for virtual lan. and there should be browser and it should allow us to access a file from another ip address and it should allow copy, paste, save, open commands in that programm for that access file.</description>
		<content:encoded><![CDATA[<p>Can you give me the whole codes for virtual lan. and there should be browser and it should allow us to access a file from another ip address and it should allow copy, paste, save, open commands in that programm for that access file.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sathishenet</title>
		<link>http://www.cyberciti.biz/tips/howto-configure-linux-virtual-local-area-network-vlan.html#comment-147114</link>
		<dc:creator>sathishenet</dc:creator>
		<pubDate>Tue, 10 Feb 2009 06:49:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/howto-configure-linux-virtual-local-area-network-vlan.html#comment-147114</guid>
		<description>Hi All,

Very very basic question, for configuring VLAN in Linux is that necessary to have a manageable switches ?? 

Thanks,
Sathish</description>
		<content:encoded><![CDATA[<p>Hi All,</p>
<p>Very very basic question, for configuring VLAN in Linux is that necessary to have a manageable switches ?? </p>
<p>Thanks,<br />
Sathish</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dekkard</title>
		<link>http://www.cyberciti.biz/tips/howto-configure-linux-virtual-local-area-network-vlan.html#comment-146432</link>
		<dc:creator>dekkard</dc:creator>
		<pubDate>Thu, 25 Dec 2008 06:04:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/howto-configure-linux-virtual-local-area-network-vlan.html#comment-146432</guid>
		<description>very nice! 2 minutes &amp; vlans are set
thanx</description>
		<content:encoded><![CDATA[<p>very nice! 2 minutes &amp; vlans are set<br />
thanx</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: siva</title>
		<link>http://www.cyberciti.biz/tips/howto-configure-linux-virtual-local-area-network-vlan.html#comment-145581</link>
		<dc:creator>siva</dc:creator>
		<pubDate>Fri, 14 Nov 2008 08:33:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/howto-configure-linux-virtual-local-area-network-vlan.html#comment-145581</guid>
		<description>Hey folks,

I have a couple of questions:

1.If i want to copy a file from my windows desktop to my linux (RHEL 4.0) virtual machine, how should i do it?

2.How can i assign ip address to my virtual machine?

Thanks
NSiva</description>
		<content:encoded><![CDATA[<p>Hey folks,</p>
<p>I have a couple of questions:</p>
<p>1.If i want to copy a file from my windows desktop to my linux (RHEL 4.0) virtual machine, how should i do it?</p>
<p>2.How can i assign ip address to my virtual machine?</p>
<p>Thanks<br />
NSiva</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: D</title>
		<link>http://www.cyberciti.biz/tips/howto-configure-linux-virtual-local-area-network-vlan.html#comment-145120</link>
		<dc:creator>D</dc:creator>
		<pubDate>Fri, 26 Sep 2008 17:49:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/howto-configure-linux-virtual-local-area-network-vlan.html#comment-145120</guid>
		<description>It worked</description>
		<content:encoded><![CDATA[<p>It worked</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shirish</title>
		<link>http://www.cyberciti.biz/tips/howto-configure-linux-virtual-local-area-network-vlan.html#comment-144389</link>
		<dc:creator>shirish</dc:creator>
		<pubDate>Thu, 17 Jul 2008 09:30:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/howto-configure-linux-virtual-local-area-network-vlan.html#comment-144389</guid>
		<description>very Helpful</description>
		<content:encoded><![CDATA[<p>very Helpful</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: after reading,there are some question</title>
		<link>http://www.cyberciti.biz/tips/howto-configure-linux-virtual-local-area-network-vlan.html#comment-144128</link>
		<dc:creator>after reading,there are some question</dc:creator>
		<pubDate>Fri, 20 Jun 2008 21:46:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/howto-configure-linux-virtual-local-area-network-vlan.html#comment-144128</guid>
		<description>Ye,after reading this topic,I learn a lot.So first,say thanks everyone.
        Back to this topic,I have a question.
	At say of topic owner,&quot;an Ethernet header extension that enlarges the header from 14 to 18 bytes&quot;,what means? I capture a frame. A Ethernet header contains destination,source,type fields.(I use adsl).And en-largeing above means add a field at Ethernet header,or add one in other place?
	My Goal is building a experiment environment for network communication. It will be a complex one.It contains hundreds nodes with multiple topology structures.
	Could someone give me a hand?And is vlan OK for it?If not,which can?</description>
		<content:encoded><![CDATA[<p>Ye,after reading this topic,I learn a lot.So first,say thanks everyone.<br />
        Back to this topic,I have a question.<br />
	At say of topic owner,&#8221;an Ethernet header extension that enlarges the header from 14 to 18 bytes&#8221;,what means? I capture a frame. A Ethernet header contains destination,source,type fields.(I use adsl).And en-largeing above means add a field at Ethernet header,or add one in other place?<br />
	My Goal is building a experiment environment for network communication. It will be a complex one.It contains hundreds nodes with multiple topology structures.<br />
	Could someone give me a hand?And is vlan OK for it?If not,which can?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ubaid</title>
		<link>http://www.cyberciti.biz/tips/howto-configure-linux-virtual-local-area-network-vlan.html#comment-144036</link>
		<dc:creator>ubaid</dc:creator>
		<pubDate>Wed, 11 Jun 2008 20:22:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/howto-configure-linux-virtual-local-area-network-vlan.html#comment-144036</guid>
		<description>i have xp in my system but i wanna install ubundu Linux on it by virtual machine but it running till when it display one error after that it need additional virtual machine it cant be go ahead give me salvations how it ll be install on xp plz</description>
		<content:encoded><![CDATA[<p>i have xp in my system but i wanna install ubundu Linux on it by virtual machine but it running till when it display one error after that it need additional virtual machine it cant be go ahead give me salvations how it ll be install on xp plz</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bincy</title>
		<link>http://www.cyberciti.biz/tips/howto-configure-linux-virtual-local-area-network-vlan.html#comment-143220</link>
		<dc:creator>Bincy</dc:creator>
		<pubDate>Wed, 19 Mar 2008 08:35:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/howto-configure-linux-virtual-local-area-network-vlan.html#comment-143220</guid>
		<description>I have configured valn in two linux machines with vlan id 4. Ping is working between the virtual interfaces but the ping packets have no tag attached.

I anyone have some idea please  share..


Thanks</description>
		<content:encoded><![CDATA[<p>I have configured valn in two linux machines with vlan id 4. Ping is working between the virtual interfaces but the ping packets have no tag attached.</p>
<p>I anyone have some idea please  share..</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gagan</title>
		<link>http://www.cyberciti.biz/tips/howto-configure-linux-virtual-local-area-network-vlan.html#comment-143037</link>
		<dc:creator>Gagan</dc:creator>
		<pubDate>Thu, 28 Feb 2008 14:36:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/howto-configure-linux-virtual-local-area-network-vlan.html#comment-143037</guid>
		<description>Hi,

is there any way to find out that whether systems are connected under physical or virtual LAN&#039;s?  

please tell me know ...</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>is there any way to find out that whether systems are connected under physical or virtual LAN&#8217;s?  </p>
<p>please tell me know &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: csmith</title>
		<link>http://www.cyberciti.biz/tips/howto-configure-linux-virtual-local-area-network-vlan.html#comment-142443</link>
		<dc:creator>csmith</dc:creator>
		<pubDate>Fri, 11 Jan 2008 23:21:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/howto-configure-linux-virtual-local-area-network-vlan.html#comment-142443</guid>
		<description>“one dhcp server using multiple vlan’s”
I&#039;d presume you change /etc/sysconfig/dhcpd file 
specify which virtual adaptors you want the dhcpd service to runon &quot;eth0 eth1 eth1.10&quot; would be ethernet if 0, 1, and vlan 10 on eth1.  Thats where I&#039;d start. Though you may have a lot of....er..fun if you dont have an injection of which vlan is making the request they&#039;ll all get the same pool. (option 82 enabled devices)</description>
		<content:encoded><![CDATA[<p>“one dhcp server using multiple vlan’s”<br />
I&#8217;d presume you change /etc/sysconfig/dhcpd file<br />
specify which virtual adaptors you want the dhcpd service to runon &#8220;eth0 eth1 eth1.10&#8243; would be ethernet if 0, 1, and vlan 10 on eth1.  Thats where I&#8217;d start. Though you may have a lot of&#8230;.er..fun if you dont have an injection of which vlan is making the request they&#8217;ll all get the same pool. (option 82 enabled devices)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fsmendoza</title>
		<link>http://www.cyberciti.biz/tips/howto-configure-linux-virtual-local-area-network-vlan.html#comment-142009</link>
		<dc:creator>fsmendoza</dc:creator>
		<pubDate>Thu, 29 Nov 2007 15:47:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/howto-configure-linux-virtual-local-area-network-vlan.html#comment-142009</guid>
		<description>Hi everyone,

is it possible to do &quot;one dhcp server using multiple vlan&#039;s&quot;? does anyone successfully do this? Please let us know howto.

Thank you.</description>
		<content:encoded><![CDATA[<p>Hi everyone,</p>
<p>is it possible to do &#8220;one dhcp server using multiple vlan&#8217;s&#8221;? does anyone successfully do this? Please let us know howto.</p>
<p>Thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vivek</title>
		<link>http://www.cyberciti.biz/tips/howto-configure-linux-virtual-local-area-network-vlan.html#comment-141392</link>
		<dc:creator>Vivek</dc:creator>
		<pubDate>Sat, 13 Oct 2007 12:53:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/howto-configure-linux-virtual-local-area-network-vlan.html#comment-141392</guid>
		<description>Sir,
I have followed the steps mentioned in &quot;How to configure VLAN in LINUX&quot;. I am using fedora 7.
although I am able to configure VLAN but I am not able to ping it to my client computer and vice versa.
 If I don&#039;t configure vlan then everything works fine on this interface i.e. eth1.
Kindly provide me with some solution.</description>
		<content:encoded><![CDATA[<p>Sir,<br />
I have followed the steps mentioned in &#8220;How to configure VLAN in LINUX&#8221;. I am using fedora 7.<br />
although I am able to configure VLAN but I am not able to ping it to my client computer and vice versa.<br />
 If I don&#8217;t configure vlan then everything works fine on this interface i.e. eth1.<br />
Kindly provide me with some solution.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: George</title>
		<link>http://www.cyberciti.biz/tips/howto-configure-linux-virtual-local-area-network-vlan.html#comment-140593</link>
		<dc:creator>George</dc:creator>
		<pubDate>Thu, 26 Jul 2007 19:20:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/howto-configure-linux-virtual-local-area-network-vlan.html#comment-140593</guid>
		<description>I was looking for a site to explain this in plain english and i found it! thank god! :)

a few questions:
1st, how can i configure the system so everything takes a dhcp address once the system initializes?  Should i configure a dhcp server so that when a computer starts it will send a DHCP request?  How can i setup a dhcp server to give different ip address ranges to different VLANS?  If i am trying to access a resource from within a vlan, will i need a dns server internally to translate the domain name (if used) to the different ip addresses a device will have?

thanks!</description>
		<content:encoded><![CDATA[<p>I was looking for a site to explain this in plain english and i found it! thank god! :)</p>
<p>a few questions:<br />
1st, how can i configure the system so everything takes a dhcp address once the system initializes?  Should i configure a dhcp server so that when a computer starts it will send a DHCP request?  How can i setup a dhcp server to give different ip address ranges to different VLANS?  If i am trying to access a resource from within a vlan, will i need a dns server internally to translate the domain name (if used) to the different ip addresses a device will have?</p>
<p>thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric Arnaud</title>
		<link>http://www.cyberciti.biz/tips/howto-configure-linux-virtual-local-area-network-vlan.html#comment-140354</link>
		<dc:creator>Eric Arnaud</dc:creator>
		<pubDate>Tue, 03 Jul 2007 03:24:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/howto-configure-linux-virtual-local-area-network-vlan.html#comment-140354</guid>
		<description>Here is my problem.

Office 1 has 3 networks (VLAN port-based)
Office 2 is 500&#039; away with a switch in the middle and only one cat5 cable

I&#039;m trying to find a way to convert port-based vlan to TAG (IEEE 802.1Q or similar )

Ex: On a x86 with linux or wrt54g

Port1 = Lan #1 =&gt; Tag #1 on port4
Port2 = Lan #2 =&gt; Tag #1 on port4
Port3 = Lan #3 =&gt; Tag #1 on port4

port4 got to the other wrt54g on port4

on the other device

port4 (tag #1) =&gt; Port1
port4 (tag #2) =&gt; Port2
port4 (tag #3) =&gt; Port3

So basicly is how to tag a incomming packet on port x and untag once on the other side.
The routing part is almost simple.

Eric</description>
		<content:encoded><![CDATA[<p>Here is my problem.</p>
<p>Office 1 has 3 networks (VLAN port-based)<br />
Office 2 is 500&#8242; away with a switch in the middle and only one cat5 cable</p>
<p>I&#8217;m trying to find a way to convert port-based vlan to TAG (IEEE 802.1Q or similar )</p>
<p>Ex: On a x86 with linux or wrt54g</p>
<p>Port1 = Lan #1 =&gt; Tag #1 on port4<br />
Port2 = Lan #2 =&gt; Tag #1 on port4<br />
Port3 = Lan #3 =&gt; Tag #1 on port4</p>
<p>port4 got to the other wrt54g on port4</p>
<p>on the other device</p>
<p>port4 (tag #1) =&gt; Port1<br />
port4 (tag #2) =&gt; Port2<br />
port4 (tag #3) =&gt; Port3</p>
<p>So basicly is how to tag a incomming packet on port x and untag once on the other side.<br />
The routing part is almost simple.</p>
<p>Eric</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.210 seconds -->
<!-- Cached page served by WP-Cache -->
