Differences
This shows you the differences between the selected revision and the current version of the page.
howto:vlan 2008/12/31 02:36 | howto:vlan 2017/09/06 18:38 current | ||
---|---|---|---|
Line 4: | Line 4: | ||
The DNS-323 can support 802.1q vlans/frame tagging. The native kernel does not support this, however. To make it work, you must load an 8021q.ko kernel module into your kernel. You should have a chroot debian install to accomplish this. I will spare you the trouble of having to compile the module yourself. | The DNS-323 can support 802.1q vlans/frame tagging. The native kernel does not support this, however. To make it work, you must load an 8021q.ko kernel module into your kernel. You should have a chroot debian install to accomplish this. I will spare you the trouble of having to compile the module yourself. | ||
- | Here is a link to the file: [[http://rapidshare.com/files/178306707/8021q.ko|8021q.ko]]. **Warning: I have only tested this with firmware 1.06, but may work with earlier versions. Use at your own risk** | + | Here is a link to the file: [[http://rapidshare.com/files/178306707/8021q.ko|8021q.ko]]. **Warning: I have only tested this with firmware 1.06, but may work with earlier versions. Use at your own risk!** |
- | One reason you may want to do this is that you want to configure jumbo frames for (potentially) faster DNS-323 performance, but don't want to/can't activate frames on your primary network because some devices don't support it. (Jumbo frames require a Gigabit switch, but not all Gigabit switches and NIC's support jumbo frames) | + | One reason you may want to do this is that you want to configure jumbo frames for (potentially) faster DNS-323 performance, but don't want to/can't activate jumbo frames on your primary network because some devices don't support it. (Jumbo frames require a Gigabit switch, but not all Gigabit switches and NIC's support jumbo frames) |
- | + | <code bash> | |
- | - **#Put the file in the proper location** | + | #Put the file in the proper location |
- | - //sudo mkdir /lib/modules/2.6.12.6-arm1// | + | sudo mkdir /lib/modules/2.6.12.6-arm1 |
- | - //sudo cp 8021q.ko /lib/modules/2.6.12.6-arm1// | + | sudo cp 8021q.ko /lib/modules/2.6.12.6-arm1 |
- | - //sudo depmod -a// | + | sudo depmod -a |
- | - **#Load the module into the kernel** | + | #Load the module into the kernel |
- | - //sudo modprobe 8021q// | + | sudo modprobe 8021q |
- | - **#Install the vlan package - This enables management of vlans** | + | #Install the vlan package - This enables management of vlans |
- | - //sudo apt-get install vlan// | + | sudo apt-get install vlan |
- | - **#Use the vconfig command to configure your new trunked sub-interface** | + | #Use the vconfig command to configure a new trunked sub-interface |
- | - //sudo vconfig add egiga0 <vlan number>// | + | sudo vconfig add egiga0 <vlan number> |
- | - **#Use //sudo ifconfig// to configure your new interface. It should appear as egiga0.<vlan>. Don't forget to bring the interface up!** | + | </code> |
+ | Use //sudo ifconfig// to configure your new interface. It should appear as egiga0.<vlan>. Don't forget to bring the interface up! | ||
Be sure to save the config steps to //your fun_plug// or //linuxrc// file **(after you test this first!)** so this is persistent across reboots. | Be sure to save the config steps to //your fun_plug// or //linuxrc// file **(after you test this first!)** so this is persistent across reboots. |