Eu tenho tentado configurar o Ubuntu 12.04 com um IP estático (com informações fornecidas pela minha universidade), bem como o IP de ciclismo local em uma estação de trabalho com duas portas ethernet. No entanto, eu tive alguns problemas irritantes, e em minhas tentativas de consertar a coisa, parece que as tornei piores. No momento, a conexão com a internet continua caindo e apenas um comando de:
$ sudo /etc/init.d/networking restart
parece permitir a reconexão. Aqui está alguma saída da minha configuração:
$ more /etc/network/interface file:
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet dhcp
iface eth1 inet static
address 169.230.xx.zz
gateway 169.230.xx.y
netmask 255.255.255.0
network 169.230.xx.a
broadcast 169.230.xx.255
dns-nameservers 169.230.ab.cd 128.218.def.ghi
Então meu ifconfig out:
$ ifconfig
eth0 Link encap:Ethernet HWaddr 00:25:90:99:d4:be
inet addr:169.230.xx.xxx Bcast:169.230.xx.255 Mask:255.255.255.0
inet6 addr: fe80::225:90ff:fe99:d4be/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:4135511 errors:0 dropped:9 overruns:0 frame:0
TX packets:375971 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:530705260 (530.7 MB) TX bytes:103589902 (103.5 MB)
Memory:dfd20000-dfd40000
eth1 Link encap:Ethernet HWaddr 00:25:90:99:d4:bf
inet addr:169.230.xx.yyy Bcast:169.230.xx.255 Mask:255.255.255.0
inet6 addr: fe80::225:90ff:fe99:d4bf/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:1351335980 errors:0 dropped:6 overruns:0 frame:0
TX packets:672022745 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:1830620673517 (1.8 TB) TX bytes:56632610611 (56.6 GB)
Memory:dfd00000-dfd20000
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:3986514 errors:0 dropped:0 overruns:0 frame:0
TX packets:3986514 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:1147973416 (1.1 GB) TX bytes:1147973416 (1.1 GB)
Agora, também vejo essa boa mensagem aparecer no terminal de tempos em tempos:
lockfile creation failed: exceeded maximum number of lock attempts
Agora, acho que o problema como algo a ver com o arquivo resolv.conf não é preenchido corretamente. Aqui está o que eu vejo:
$ more /etc/resolv.conf
# Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)
# DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
nameserver 128.218.zzz.10
nameserver 128.218.zzz.40
search ucsf.edu
Qualquer ideia sobre o que possivelmente está acontecendo seria ótima.
Obrigado antecipadamente.