| 14 | * VLAN ID 1 は多くのインテリジェントスイッチでマネージメント用に予約されているため、非推奨 |
| 15 | * mitty@vlan-gw:~$ sudo vconfig add eth1 1 |
| 16 | {{{ |
| 17 | Added VLAN with VID == 1 to IF -:eth1:- |
| 18 | WARNING: VLAN 1 does not work with many switches, |
| 19 | consider another number if you have problems. |
| 20 | }}} |
| 21 | |
| 22 | = Bridging VLAN = |
| 23 | * 概念図[[br]][[Image(bridging-vlan.png,33%)]] |
| 24 | * 目的 |
| 25 | * vlan-gwのeth0にL2で抜けるルートがvlan-node上に欲しい |
| 26 | * vlan-gwのeth0 <-> eth1で直接ブリッジするのは困る |
| 27 | * vlan-nodeNAPT下にある、など |
| 28 | * VLANにすることで、NICを増やしたりすることなく複数サブネットを得る |
| 29 | |
| 30 | == make bridge on vlan-gw == |
| 31 | 1. mitty@vlan-gw:~$ sudo vconfig add eth1 10 |
| 32 | {{{ |
| 33 | Added VLAN with VID == 10 to IF -:eth1:- |
| 34 | }}} |
| 35 | * mitty@vlan-gw:~$ ifconfig eth1.10 |
| 36 | {{{ |
| 37 | eth1.10 Link encap:Ethernet HWaddr 00:16:3e:3d:4f:ca |
| 38 | }}} |
| 39 | 1. mitty@vlan-gw:~$ sudo brctl addbr br-gw |
| 40 | 1. mitty@vlan-gw:~$ sudo brctl addif br-gw eth1.10 |
| 41 | * mitty@vlan-gw:~$ brctl show |
| 42 | {{{ |
| 43 | bridge name bridge id STP enabled interfaces |
| 44 | br-gw 8000.00163e3d4fca no eth1.10 |
| 45 | }}} |
| 46 | * mitty@vlan-gw:~$ ifconfig | grep addr |
| 47 | {{{ |
| 48 | br-gw Link encap:Ethernet HWaddr 00:16:3e:3d:4f:ca |
| 49 | |
| 50 | eth0 Link encap:Ethernet HWaddr 00:16:3e:3d:4f:c9 |
| 51 | inet addr:192.168.0.185 Bcast:192.168.0.255 Mask:255.255.255.0 |
| 52 | |
| 53 | eth1 Link encap:Ethernet HWaddr 00:16:3e:3d:4f:ca |
| 54 | |
| 55 | eth1.10 Link encap:Ethernet HWaddr 00:16:3e:3d:4f:ca |
| 56 | }}} |
| 57 | 1. mitty@vlan-gw:~$ sudo brctl addif br-gw eth0 |
| 58 | * このコマンドにより、eth0を通じて192.168.0.185でアクセスしている場合はいったん切断されるため、リモートから操作している場合などは注意 |
| 59 | * mitty@vlan-gw:~$ brctl show |
| 60 | {{{ |
| 61 | bridge name bridge id STP enabled interfaces |
| 62 | br-gw 8000.00163e3d4fc9 no eth0 |
| 63 | eth1.10 |
| 64 | }}} |
| 65 | 1. mitty@vlan-gw:~$ sudo ifconfig eth0 0.0.0.0 |
| 66 | 1. mitty@vlan-gw:~$ sudo ifconfig br-gw 192.168.0.185 netmask 255.255.255.0 |
| 67 | 1. mitty@vlan-gw:~$ sudo ifconfig eth1.10 up |
| 68 | 1. mitty@vlan-gw:~$ sudo ifconfig br-gw up |
| 69 | |
| 70 | == add vlan nic on vlan-node == |
| 71 | 1. mitty@vlan-node:~$ sudo vconfig add eth0 10 |
| 72 | {{{ |
| 73 | Added VLAN with VID == 10 to IF -:eth0:- |
| 74 | }}} |
| 75 | 1. mitty@vlan-node:~$ sudo ifconfig eth0.10 192.168.0.13 netmask 255.255.255.0 |
| 76 | * 上流(192.168.0.0/24)にdhcpdがあるのであればdhclientなどを使うことも出来る |
| 77 | 1. mitty@vlan-node:~$ sudo ifconfig eth0.10 up |
| 78 | * mitty@vlan-node:~$ ifconfig | grep addr |
| 79 | {{{ |
| 80 | eth0 Link encap:Ethernet HWaddr 00:16:3e:d1:69:13 |
| 81 | inet addr:10.0.0.2 Bcast:10.255.255.255 Mask:255.0.0.0 |
| 82 | |
| 83 | eth0.10 Link encap:Ethernet HWaddr 00:16:3e:d1:69:13 |
| 84 | inet addr:192.168.0.13 Bcast:192.168.0.255 Mask:255.255.255.0 |
| 85 | }}} |
| 86 | * vlan-gw:eth1 <-> vlan-node:eth0 は10.0.0.0/8 |
| 87 | |
| 88 | == check connection == |
| 89 | * mitty@vlan-node:~$ sudo tcpdump -i eth0.10 |
| 90 | {{{ |
| 91 | 04:35:02.147257 1c:c1:ww:xx:yy:zz > 00:16:3e:d1:69:13, ethertype IPv4 (0x0800), length 74: 192.168.0.102 > 192.168.0.13: ICMP echo request, id 1, seq 38, length 40 |
| 92 | 04:35:02.147290 00:16:3e:d1:69:13 > 1c:c1:ww:xx:yy:zz, ethertype IPv4 (0x0800), length 74: 192.168.0.13 > 192.168.0.102: ICMP echo reply, id 1, seq 38, length 40 |
| 93 | 04:35:03.149340 1c:c1:ww:xx:yy:zz > 00:16:3e:d1:69:13, ethertype IPv4 (0x0800), length 74: 192.168.0.102 > 192.168.0.13: ICMP echo request, id 1, seq 39, length 40 |
| 94 | 04:35:03.149373 00:16:3e:d1:69:13 > 1c:c1:ww:xx:yy:zz, ethertype IPv4 (0x0800), length 74: 192.168.0.13 > 192.168.0.102: ICMP echo reply, id 1, seq 39, length 40 |
| 95 | }}} |
| 96 | * mitty@vlan-node:~$ sudo tcpdump -i eth0 |
| 97 | {{{ |
| 98 | 04:35:02.147257 1c:c1:ww:xx:yy:zz > 00:16:3e:d1:69:13, ethertype 802.1Q (0x8100), length 78: vlan 10, p 0, ethertype IPv4, 192.168.0.102 > 192.168.0.13: ICMP echo request, id 1, seq 38, length 40 |
| 99 | 04:35:02.147293 00:16:3e:d1:69:13 > 1c:c1:ww:xx:yy:zz, ethertype 802.1Q (0x8100), length 78: vlan 10, p 0, ethertype IPv4, 192.168.0.13 > 192.168.0.102: ICMP echo reply, id 1, seq 38, length 40 |
| 100 | 04:35:03.149340 1c:c1:ww:xx:yy:zz > 00:16:3e:d1:69:13, ethertype 802.1Q (0x8100), length 78: vlan 10, p 0, ethertype IPv4, 192.168.0.102 > 192.168.0.13: ICMP echo request, id 1, seq 39, length 40 |
| 101 | 04:35:03.149376 00:16:3e:d1:69:13 > 1c:c1:ww:xx:yy:zz, ethertype 802.1Q (0x8100), length 78: vlan 10, p 0, ethertype IPv4, 192.168.0.13 > 192.168.0.102: ICMP echo reply, id 1, seq 39, length 40 |
| 102 | |
| 103 | 04:35:11.744387 00:16:3e:3d:4f:ca > ff:ff:ff:ff:ff:ff, ethertype ARP (0x0806), length 42: Request who-has 10.0.0.2 tell 10.0.0.1, length 28 |
| 104 | 04:35:11.744428 00:16:3e:d1:69:13 > 00:16:3e:3d:4f:ca, ethertype ARP (0x0806), length 42: Reply 10.0.0.2 is-at 00:16:3e:d1:69:13, length 28 |
| 105 | 04:35:11.744471 00:16:3e:3d:4f:ca > 00:16:3e:d1:69:13, ethertype IPv4 (0x0800), length 98: 10.0.0.1 > 10.0.0.2: ICMP echo request, id 1165, seq 1, length 64 |
| 106 | 04:35:11.744489 00:16:3e:d1:69:13 > 00:16:3e:3d:4f:ca, ethertype IPv4 (0x0800), length 98: 10.0.0.2 > 10.0.0.1: ICMP echo reply, id 1165, seq 1, length 64 |
| 107 | 04:35:12.744806 00:16:3e:3d:4f:ca > 00:16:3e:d1:69:13, ethertype IPv4 (0x0800), length 98: 10.0.0.1 > 10.0.0.2: ICMP echo request, id 1165, seq 2, length 64 |
| 108 | 04:35:12.744831 00:16:3e:d1:69:13 > 00:16:3e:3d:4f:ca, ethertype IPv4 (0x0800), length 98: 10.0.0.2 > 10.0.0.1: ICMP echo reply, id 1165, seq 2, length 64 |
| 109 | }}} |
| 110 | |
| 111 | == dhcp on VLAN == |
| 112 | * mitty@vlan-node:~$ cat /etc/network/interfaces |
| 113 | {{{ |
| 114 | auto lo |
| 115 | iface lo inet loopback |
| 116 | |
| 117 | auto eth0 |
| 118 | iface eth0 inet dhcp |
| 119 | |
| 120 | auto vlan10 |
| 121 | iface vlan10 inet dhcp |
| 122 | vlan-raw-device eth0 |
| 123 | }}} |
| 124 | * mitty@vlan-node:~$ ifconfig | grep addr |
| 125 | {{{ |
| 126 | eth0 Link encap:Ethernet HWaddr 00:16:3e:d1:69:13 |
| 127 | |
| 128 | vlan10 Link encap:Ethernet HWaddr 00:16:3e:d1:69:13 |
| 129 | inet addr:192.168.0.199 Bcast:192.168.0.255 Mask:255.255.255.0 |
| 130 | }}} |
| 131 | * eth0側にはIPが割り振られていない(期待通り) |
| 132 | * vlan10とeth0.10は同じ -> {{{man 5 vlan-interfaces}}} |
| 133 | |
| 134 | * mitty@vlan-node:~$ sudo tcpdump -i eth0 |
| 135 | {{{ |
| 136 | ... |
| 137 | |
| 138 | 05:01:18.183019 00:16:3e:d1:69:13 > ff:ff:ff:ff:ff:ff, ethertype IPv4 (0x0800), length 342: 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:16:3e:d1:69:13, length 300 |
| 139 | 05:01:28.750340 00:16:3e:d1:69:13 > ff:ff:ff:ff:ff:ff, ethertype IPv4 (0x0800), length 342: 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:16:3e:d1:69:13, length 300 |
| 140 | 05:01:43.031794 00:16:3e:d1:69:13 > ff:ff:ff:ff:ff:ff, ethertype IPv4 (0x0800), length 342: 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:16:3e:d1:69:13, length 300 |
| 141 | |
| 142 | 05:02:02.942903 00:16:3e:d1:69:13 > ff:ff:ff:ff:ff:ff, ethertype 802.1Q (0x8100), length 346: vlan 10, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:16:3e:d1:69:13, length 300 |
| 143 | 05:02:02.944507 00:24:wx:yz:wx:yz > 00:16:3e:d1:69:13, ethertype 802.1Q (0x8100), length 354: vlan 10, p 0, ethertype IPv4, 192.168.0.1.67 > 192.168.0.199.68: BOOTP/DHCP, Reply, length 308 |
| 144 | 05:02:02.944977 00:16:3e:d1:69:13 > ff:ff:ff:ff:ff:ff, ethertype 802.1Q (0x8100), length 346: vlan 10, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:16:3e:d1:69:13, length 300 |
| 145 | 05:02:02.947171 00:24:wx:yz:wx:yz > 00:16:3e:d1:69:13, ethertype 802.1Q (0x8100), length 365: vlan 10, p 0, ethertype IPv4, 192.168.0.1.67 > 192.168.0.199.68: BOOTP/DHCP, Reply, length 319 |
| 146 | 05:02:03.125276 00:16:3e:d1:69:13 > ff:ff:ff:ff:ff:ff, ethertype 802.1Q (0x8100), length 46: vlan 10, p 0, ethertype ARP, Request who-has 192.168.0.1 tell 192.168.0.199, length 28 |
| 147 | 05:02:03.125419 00:24:wx:yz:wx:yz > 00:16:3e:d1:69:13, ethertype 802.1Q (0x8100), length 64: vlan 10, p 0, ethertype ARP, Reply 192.168.0.1 is-at 00:24:wx:yz:wx:yz, length 46 |
| 148 | |
| 149 | 05:02:22.984115 1c:c1:zz:yy:xx:ww > ff:ff:ff:ff:ff:ff, ethertype 802.1Q (0x8100), length 64: vlan 10, p 0, ethertype ARP, Request who-has 192.168.0.199 tell 192.168.0.102, length 46 |
| 150 | 05:02:22.984148 00:16:3e:d1:69:13 > 1c:c1:zz:yy:xx:ww, ethertype 802.1Q (0x8100), length 46: vlan 10, p 0, ethertype ARP, Reply 192.168.0.199 is-at 00:16:3e:d1:69:13, length 28 |
| 151 | 05:02:22.984242 1c:c1:zz:yy:xx:ww > 00:16:3e:d1:69:13, ethertype 802.1Q (0x8100), length 78: vlan 10, p 0, ethertype IPv4, 192.168.0.102 > 192.168.0.199: ICMP echo request, id 1, seq 42, length 40 |
| 152 | 05:02:22.984275 00:16:3e:d1:69:13 > 1c:c1:zz:yy:xx:ww, ethertype 802.1Q (0x8100), length 78: vlan 10, p 0, ethertype IPv4, 192.168.0.199 > 192.168.0.102: ICMP echo reply, id 1, seq 42, length 40 |
| 153 | 05:02:23.986581 1c:c1:zz:yy:xx:ww > 00:16:3e:d1:69:13, ethertype 802.1Q (0x8100), length 78: vlan 10, p 0, ethertype IPv4, 192.168.0.102 > 192.168.0.199: ICMP echo request, id 1, seq 43, length 40 |
| 154 | 05:02:23.986609 00:16:3e:d1:69:13 > 1c:c1:zz:yy:xx:ww, ethertype 802.1Q (0x8100), length 78: vlan 10, p 0, ethertype IPv4, 192.168.0.199 > 192.168.0.102: ICMP echo reply, id 1, seq 43, length 40 |
| 155 | }}} |
| 156 | * mitty@vlan-gw:~$ sudo tcpdump -i eth1 |
| 157 | {{{ |
| 158 | 04:57:01.612502 00:16:3e:d1:69:13 > ff:ff:ff:ff:ff:ff, ethertype IPv4 (0x0800), length 342: 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:16:3e:d1:69:13, length 300 |
| 159 | 04:57:04.284819 00:16:3e:d1:69:13 > ff:ff:ff:ff:ff:ff, ethertype IPv4 (0x0800), length 342: 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:16:3e:d1:69:13, length 300 |
| 160 | 04:57:12.426705 00:16:3e:d1:69:13 > ff:ff:ff:ff:ff:ff, ethertype IPv4 (0x0800), length 342: 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:16:3e:d1:69:13, length 300 |
| 161 | |
| 162 | ... |
| 163 | |
| 164 | 05:01:18.183048 00:16:3e:d1:69:13 > ff:ff:ff:ff:ff:ff, ethertype IPv4 (0x0800), length 342: 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:16:3e:d1:69:13, length 300 |
| 165 | 05:01:28.750367 00:16:3e:d1:69:13 > ff:ff:ff:ff:ff:ff, ethertype IPv4 (0x0800), length 342: 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:16:3e:d1:69:13, length 300 |
| 166 | 05:01:43.031819 00:16:3e:d1:69:13 > ff:ff:ff:ff:ff:ff, ethertype IPv4 (0x0800), length 342: 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:16:3e:d1:69:13, length 300 |
| 167 | |
| 168 | 05:02:02.942934 00:16:3e:d1:69:13 > ff:ff:ff:ff:ff:ff, ethertype 802.1Q (0x8100), length 346: vlan 10, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:16:3e:d1:69:13, length 300 |
| 169 | 05:02:02.944491 00:24:wx:yz:wx:yz > 00:16:3e:d1:69:13, ethertype 802.1Q (0x8100), length 354: vlan 10, p 0, ethertype IPv4, 192.168.0.1.67 > 192.168.0.199.68: BOOTP/DHCP, Reply, length 308 |
| 170 | 05:02:02.945004 00:16:3e:d1:69:13 > ff:ff:ff:ff:ff:ff, ethertype 802.1Q (0x8100), length 346: vlan 10, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:16:3e:d1:69:13, length 300 |
| 171 | 05:02:02.947157 00:24:wx:yz:wx:yz > 00:16:3e:d1:69:13, ethertype 802.1Q (0x8100), length 365: vlan 10, p 0, ethertype IPv4, 192.168.0.1.67 > 192.168.0.199.68: BOOTP/DHCP, Reply, length 319 |
| 172 | 05:02:03.125309 00:16:3e:d1:69:13 > ff:ff:ff:ff:ff:ff, ethertype 802.1Q (0x8100), length 46: vlan 10, p 0, ethertype ARP, Request who-has 192.168.0.1 tell 192.168.0.199, length 28 |
| 173 | 05:02:03.125410 00:24:wx:yz:wx:yz > 00:16:3e:d1:69:13, ethertype 802.1Q (0x8100), length 64: vlan 10, p 0, ethertype ARP, Reply 192.168.0.1 is-at 00:24:wx:yz:wx:yz, length 46 |
| 174 | }}} |
| 175 | |
| 176 | * 起動時、eth0側のdhcpタイムアウト待ちをするため、vlan10にIPが振ってくるまで2分ほど遅延する |
| 177 | * vlan-node:/etc/network/interfaces |
| 178 | {{{ |
| 179 | iface eth0 inet manual |
| 180 | }}} |
| 181 | * などにするとよい |
| 182 | |
| 183 | == dhcpd on another network == |
| 184 | * 概念図[[br]][[Image(bridging-vlan-with-dhcpd.png,33%)]] |
| 185 | * vlan-gw:eth1 <-> vlan-node:eth0 に192.168.1110/24でdhcpdを建てる |
| 186 | * mitty@vlan-gw:~$ sudo ifconfig eth1.10 down |
| 187 | |
| 188 | * mitty@vlan-node:~$ cat /etc/network/interfaces |
| 189 | {{{ |
| 190 | auto lo |
| 191 | iface lo inet loopback |
| 192 | |
| 193 | auto eth0 |
| 194 | iface eth0 inet dhcp |
| 195 | |
| 196 | auto vlan10 |
| 197 | iface vlan10 inet dhcp |
| 198 | vlan-raw-device eth0 |
| 199 | }}} |
| 200 | * mitty@vlan-node:~$ ifconfig | grep addr |
| 201 | {{{ |
| 202 | eth0 Link encap:Ethernet HWaddr 00:16:3e:d1:69:13 |
| 203 | inet addr:192.168.111.102 Bcast:192.168.111.255 Mask:255.255.255.0 |
| 204 | |
| 205 | vlan10 Link encap:Ethernet HWaddr 00:16:3e:d1:69:13 |
| 206 | }}} |
| 207 | * vlan-node:vlan10にはdhcpでIPが割り振られることはない(期待通り) |
| 208 | |
| 209 | |
| 210 | * mitty@vlan-gw:~$ sudo ifconfig eth1.10 up |
| 211 | * mitty@vlan-node:~$ ifconfig |
| 212 | {{{ |
| 213 | eth0 Link encap:Ethernet HWaddr 00:16:3e:d1:69:13 |
| 214 | inet addr:192.168.111.102 Bcast:192.168.111.255 Mask:255.255.255.0 |
| 215 | |
| 216 | vlan10 Link encap:Ethernet HWaddr 00:16:3e:d1:69:13 |
| 217 | inet addr:192.168.0.199 Bcast:192.168.0.255 Mask:255.255.255.0 |
| 218 | }}} |
| 219 | * mitty@vlan-node:~$ sudo tcpdump -i eth0 |
| 220 | {{{ |
| 221 | 10:03:25.576221 00:16:3e:d1:69:13 > ff:ff:ff:ff:ff:ff, ethertype IPv4 (0x0800), length 342: 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:16:3e:d1:69:13, length 300 |
| 222 | 10:03:26.577102 00:1b:zz:yy:xx:ww > 00:16:3e:d1:69:13, ethertype IPv4 (0x0800), length 342: 192.168.111.1.67 > 192.168.111.102.68: BOOTP/DHCP, Reply, length 300 |
| 223 | 10:03:26.577404 00:16:3e:d1:69:13 > ff:ff:ff:ff:ff:ff, ethertype IPv4 (0x0800), length 342: 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:16:3e:d1:69:13, length 300 |
| 224 | 10:03:26.702221 00:1b:zz:yy:xx:ww > 00:16:3e:d1:69:13, ethertype IPv4 (0x0800), length 342: 192.168.111.1.67 > 192.168.111.102.68: BOOTP/DHCP, Reply, length 300 |
| 225 | |
| 226 | 10:03:26.940715 00:16:3e:d1:69:13 > ff:ff:ff:ff:ff:ff, ethertype 802.1Q (0x8100), length 346: vlan 10, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:16:3e:d1:69:13, length 300 |
| 227 | 10:03:26.941123 00:1b:zz:yy:xx:ww > 00:16:3e:d1:69:13, ethertype IPv4 (0x0800), length 342: 192.168.111.1.67 > 192.168.111.102.68: BOOTP/DHCP, Reply, length 300 |
| 228 | 10:03:26.942027 00:24:wx:yz:wx:yz > 00:16:3e:d1:69:13, ethertype 802.1Q (0x8100), length 354: vlan 10, p 0, ethertype IPv4, 192.168.0.1.67 > 192.168.0.199.68: BOOTP/DHCP, Reply, length 308 |
| 229 | 10:03:26.942392 00:16:3e:d1:69:13 > ff:ff:ff:ff:ff:ff, ethertype 802.1Q (0x8100), length 346: vlan 10, p 0, ethertype IPv4, 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:16:3e:d1:69:13, length 300 |
| 230 | 10:03:26.942676 00:1b:zz:yy:xx:ww > ff:ff:ff:ff:ff:ff, ethertype IPv4 (0x0800), length 342: 192.168.111.1.67 > 255.255.255.255.68: BOOTP/DHCP, Reply, length 300 |
| 231 | 10:03:26.944592 00:24:wx:yz:wx:yz > 00:16:3e:d1:69:13, ethertype 802.1Q (0x8100), length 365: vlan 10, p 0, ethertype IPv4, 192.168.0.1.67 > 192.168.0.199.68: BOOTP/DHCP, Reply, length 319 |
| 232 | }}} |
| 233 | * VLAN ID 10でのDHCP requestに対して、192.168.111.1のdhcpdがVLAN ID無しでreplayしている模様 |
| 234 | * DHCPd(isc-dhcp-server)はtaggedかどうかを無視する? |
| 235 | * [http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=643564 #643564 - isc-dhcp-server: responds to vlan tagged packets on untagged interface - Debian Bug report logs] |
| 236 | |
| 237 | = VLAN with VMware Workstation on Windows = |
| 238 | * WindowsはOSとしてはtag VLANに対応して居ない |