Como configurar IPs estáticos (IP interno ou lan) no meu Ubuntu (VPS)

0

Em primeiro lugar saudações a tudo Eu tenho um problema com o Ubuntu Estou executando o servidor Ubuntu 12.04 LTS com GUI (GNOME) Bem, é um VPS

Esta é a minha eth0

eth0      Link encap:Ethernet  HWaddr 8e:a3:65:ba:83:bc
          inet addr:207.xxx.xxx.27  Bcast:207.xxx.xxx.31  Mask:255.255.255.248
          inet6 addr: fxxx::8cxx:6xxx:fxxx:83bc/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:269487 errors:0 dropped:68 overruns:0 frame:0
          TX packets:202111 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:39408403 (39.4 MB)  TX bytes:92849451 (92.8 MB)

Eu tenho interfaces eth0, vboxnet0 e virbr0

Agora o problema é que o meu eth0 tem endereço IP externo configurado eu instalei o virtualbox agora eu não estou recebendo internet na interface da ponte NAT está bem

mas quando configuro o vbox no sistema host NAT (ubuntu) não consigo pingar o SO dentro do Vbox

Agora existe alguma maneira de dar um IP estático (LAN como 192.168.1.1) para o meu HOST (Ubuntu) e configurar o mesmo no modo de ponte dentro do vbox

Por favor me ajude

    
por Kevin Smith 22.06.2013 / 02:52

1 resposta

0

Eu tive o mesmo problema, resolvido com o adaptador em ponte e a seguinte configuração:

/ etc / network / interfaces

# 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

auto eth0:1
iface eth0:1 inet static
address 192.168.0.250
netmask 255.255.255.0
gateway 192.168.0.1

Lembre-se de ativar o comando de reinicialização da rede:

reiniciar o serviço sudo

Por questão de integridade, localize abaixo minha ifconfig output:

eth0      Link encap:Ethernet  HWaddr **:**:**:**:**:**
          inet addr:192.168.0.11  Bcast:192.168.0.255  Mask:255.255.255.0
          inet6 addr: ****::***:****:****:****/** Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:4156 errors:0 dropped:0 overruns:0 frame:0
          TX packets:2755 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:5214910 (5.2 MB)  TX bytes:288520 (288.5 KB)

eth0:1    Link encap:Ethernet  HWaddr **:**:**:**:**:**
          inet addr:192.168.0.250  Bcast:192.168.0.255  Mask:255.255.255.0
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1

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:49 errors:0 dropped:0 overruns:0 frame:0
          TX packets:49 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0 
          RX bytes:4694 (4.6 KB)  TX bytes:4694 (4.6 KB)

Testado com o servidor Ubuntu 13.10 x64 (Convidado) e Windows 8.1 (Host)

    
por Francesco Casula 25.11.2013 / 10:25