Estou tentando mudar meu Ubuntu VirtualBox (convidado) para um IP estático. Eu tenho uma rede Bridged habilitada que me permite facilmente SSH na caixa virtual do meu Mac.
Quando dentro da caixa virtual do Ubuntu, e eu executo ifconfig eu recebo o seguinte:
eth0 Link encap:Ethernet HWaddr 08:00:27:01:64:ea
inet addr:192.168.43.161 Bcast:192.168.43.255 Mask:255.255.255.0
inet6 addr: fe80::a00:27ff:fe01:64ea/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:163 errors:0 dropped:0 overruns:0 frame:0
TX packets:124 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:17856 (17.8 KB) TX bytes:14776 (14.7 KB)
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:65536 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
A máquina funciona bem, eu consigo acessar meus URLs hospedados na caixa via Apache, e a própria caixa também é capaz de acessar a internet.
Para converter em estático, estou editando meu arquivo / etc / network / interfaces e adicionando as seguintes informações:
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto eth0
#iface eth0 inet dhcp
iface eth0 inet static
address 192.168.43.161
netmask 255.255.255.0
gateway 192.168.43.1
Estou usando o mesmo endereço IP fornecido pelo ifconfig e adquiri o endereço IP do
route -n
comando
.
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
0.0.0.0 192.168.43.1 0.0.0.0 UG 0 0 0 eth0
192.168.43.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
No entanto, no momento em que mudo para um endereço IP estático dessa maneira, a caixa virtual perde a capacidade de se conectar à Internet.
O que estou fazendo de errado?