Per non saper ne leggere ne scrivere ..... let's take the bull by the horns ...
Prendi una macchina con una distro linux , tipo debian (va bene anche su VM, con scheda in bridge), apri il terminale, passi a root
- Codice: Seleziona tutto
jonatha@debian8:~$
jonatha@debian8:~$ su -l
Password:
poi dai
- Codice: Seleziona tutto
root@debian8:~# modprobe 8021q
root@debian8:~# vconfig add eth0 4
Added VLAN with VID == 4 to IF -:eth0:-
qui ho aggiunto la vlan 4 alla eth0, poi assegno l'indirizzo ip 192.168.24.5/24 alla vlan 4
- Codice: Seleziona tutto
root@debian8:~# ifconfig eth0.4 192.168.4.5/24
e vediamo se c'è....
- Codice: Seleziona tutto
root@debian8:~# ifconfig
eth0 Link encap:Ethernet HWaddr 08:00:27:d7:94:9c
inet addr:192.168.18.11 Bcast:192.168.18.31 Mask:255.255.255.224
inet6 addr: fe80::a00:27ff:fed7:949c/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:252 errors:0 dropped:0 overruns:0 frame:0
TX packets:280 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:101730 (99.3 KiB) TX bytes:35451 (34.6 KiB)
eth0.4 Link encap:Ethernet HWaddr 08:00:27:d7:94:9c
inet addr:192.168.4.5 Bcast:192.168.4.255 Mask:255.255.255.0
inet6 addr: fe80::a00:27ff:fed7:949c/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:57 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:0 (0.0 B) TX bytes:8718 (8.5 KiB)
Pc collegato ad edgerouter, interfacca eth1.4 (eth1 vlan4) , ping
- Codice: Seleziona tutto
root@debian8:~# ping 192.168.4.1
PING 192.168.4.1 (192.168.4.1) 56(84) bytes of data.
64 bytes from 192.168.4.1: icmp_seq=1 ttl=64 time=2.17 ms
64 bytes from 192.168.4.1: icmp_seq=2 ttl=64 time=1.03 ms
64 bytes from 192.168.4.1: icmp_seq=3 ttl=64 time=2.32 ms
64 bytes from 192.168.4.1: icmp_seq=4 ttl=64 time=0.704 ms
64 bytes from 192.168.4.1: icmp_seq=5 ttl=64 time=2.16 ms
^C
--- 192.168.4.1 ping statistics ---
5 packets transmitted, 5 received, 0% packet loss, time 4020ms
rtt min/avg/max/mdev = 0.704/1.682/2.328/0.675 ms
Altrimenti, se hai una NS sottomano, crei un bridge tra la lan0 e la lan1.80, colleghi il pc alla lan 0 e la bullet alla lan1 (o colleghi la lan1 in uno switch a cui, in 'qualche modo' è connessa la bullet) ....
ciao