Ho creato una VM Debian su VirtualBox con due interfacce: una NAT (per l'accesso a Internet) e una solo host. Tuttavia, non so come far funzionare entrambe le interfacce contemporaneamente. Se definisco solo l'host come adattatore 1, posso accedere alla mia macchina virtuale dall'host ma non da Internet; se definisco quello NAT come adattatore 1, posso accedere a Internet ma non posso raggiungere il mio ospite Debian.
Quindi, come potrei far lavorare insieme entrambe le interfacce?
Nota : sto ancora cercando di mappare alcune porte dal mio host alla porta SSH dal SO guest, quindi non è necessario suggerirmi di farlo :)
EDIT : questo è l'output di ifconfig
quando il primo adattatore è solo host :
eth0 Link encap:Ethernet HWaddr 08:00:27:f6:b2:45
inet addr:192.168.56.101 Bcast:192.168.56.255 Mask:255.255.255.0
inet6 addr: fe80::a00:27ff:fef6:b245/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:495 errors:0 dropped:0 overruns:0 frame:0
TX packets:206 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:48187 (47.0 KiB) TX bytes:38222 (37.3 KiB)
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:8 errors:0 dropped:0 overruns:0 frame:0
TX packets:8 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:560 (560.0 B) TX bytes:560 (560.0 B)
Questo è l'output di netstat -nr
quando il primo adattatore è solo host :
Kernel IP routing table
Destination Gateway Genmask Flags MSS Window irtt Iface
192.168.56.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
Questo è l'output di ifconfig
quando il primo adattatore è quello NAT :
eth0 Link encap:Ethernet HWaddr 08:00:27:f6:b2:45
inet addr:10.0.2.15 Bcast:10.0.2.255 Mask:255.255.255.0
inet6 addr: fe80::a00:27ff:fef6:b245/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:53 errors:0 dropped:0 overruns:0 frame:0
TX packets:59 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:6076 (5.9 KiB) TX bytes:5526 (5.3 KiB)
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:16 errors:0 dropped:0 overruns:0 frame:0
TX packets:16 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:1664 (1.6 KiB) TX bytes:1664 (1.6 KiB)
Questo è l'output di netstat -nr
quando il primo adattatore è quello NAT :
Kernel IP routing table
Destination Gateway Genmask Flags MSS Window irtt Iface
10.0.2.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
0.0.0.0 10.0.2.2 0.0.0.0 UG 0 0 0 eth0
/etc/network/interfaces
. Risolto il mio problema, grazie. Per il potenziale debug, si tratta di due interfacce virtio fornite da Virtualbox. Uno è l'interfaccia NAT utilizzata per l'accesso a Internet (i NAT sono forniti individualmente da vbox), l'altro è una rete solo host con DHCP in una classe IP privata completamente diversa. Versione Debian testata 6.0.6 x64.