Virtualboxを介してWindowsホストとUbuntuゲストを使用しています。 2つのネットワークアダプタを設定しました。どちらも接続されています。 1つ目はWi-Fiネットワークアダプタに接続し、2つ目はUSBイーサネットアダプタに接続します。 Wi-Fiアダプタはdhcpに設定され、USBネットワークアダプタは固定IPに設定されます。私の問題は、私のLinuxゲストからの起動後にWi-Fiアダプタのみを起動し、USBアダプタはインターフェイスに設定されていても起動しないことです。ifconfig -a
出力は次のとおりです。
lukasz@lukasz-vb:~$ ifconfig -a
enp0s3: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 172.21.10.29 netmask 255.255.0.0 broadcast 172.21.255.255
inet6 fe80::87e1:2aa6:bac0:b941 prefixlen 64 scopeid 0x20<link>
inet6 2003:f0:9bcc:3500:5c07:9fa7:4423:f093 prefixlen 64 scopeid 0x0<global>
inet6 2003:f0:9bcc:3500:d260:1f95:48fc:63af prefixlen 64 scopeid 0x0<global>
ether 08:00:27:6f:af:c4 txqueuelen 1000 (Ethernet)
RX packets 33 bytes 2898 (2.8 KB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 69 bytes 10487 (10.4 KB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
enp0s8: flags=4098<BROADCAST,MULTICAST> mtu 1500
ether 08:00:27:f4:fd:65 txqueuelen 1000 (Ethernet)
RX packets 0 bytes 0 (0.0 B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 0 bytes 0 (0.0 B)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536
inet 127.0.0.1 netmask 255.0.0.0
inet6 ::1 prefixlen 128 scopeid 0x10<host>
loop txqueuelen 1000 (Local Loopback)
RX packets 50 bytes 4188 (4.1 KB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 50 bytes 4188 (4.1 KB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
1つ目はWi-Fiアダプター、2つ目はUSBアダプターです。これはifconfig
:
lukasz@lukasz-vb:~$ ifconfig
enp0s3: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 172.21.10.29 netmask 255.255.0.0 broadcast 172.21.255.255
inet6 fe80::87e1:2aa6:bac0:b941 prefixlen 64 scopeid 0x20<link>
inet6 2003:f0:9bcc:3500:5c07:9fa7:4423:f093 prefixlen 64 scopeid 0x0<global>
inet6 2003:f0:9bcc:3500:d260:1f95:48fc:63af prefixlen 64 scopeid 0x0<global>
ether 08:00:27:6f:af:c4 txqueuelen 1000 (Ethernet)
RX packets 1801 bytes 137862 (137.8 KB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 74 bytes 10787 (10.7 KB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536
inet 127.0.0.1 netmask 255.0.0.0
inet6 ::1 prefixlen 128 scopeid 0x10<host>
loop txqueuelen 1000 (Local Loopback)
RX packets 50 bytes 4188 (4.1 KB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 50 bytes 4188 (4.1 KB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
2番目のアダプタがオフになっています...
私はそれを次のように設定しようとしましたetc/network/interfaces
。
lukasz@lukasz-vb:~$ cat /etc/network/interfaces
# interfaces(5) file used by ifup(8) and ifdown(8)
auto lo
iface lo inet loopback
# USB C ethrnet adapter static ip
auto enp0s8
iface enp0s8 inet static
address 10.10.10.7
netmask 255.0.0.0
gateway 10.10.10.6
最初の(Wi-Fi)インターフェイスは、設定されていない場合でも機能します。 2番目のインターフェイスはどのように設定しますか?