Eu tenho um problema. com a ajuda das pessoas neste fórum eu consegui configurar minha rede. Para recapitular eu tenho dois computadores comp1 e comp2 conectados assim
comp2(eth0) -> comp1(eth1)
comp1(eth0) -> network
minha interface é assim:
comp1:
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet dhcp
auto eth1
iface eth1 inet static
address 10.10.0.10
netmask 255.255.255.0
comp2:
auto eth0
iface eth0 inet static
address 10.10.0.20
netmask 255.255.255.0
gateway 10.10.0.10
comp2
$ route
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
default 10.10.0.10 0.0.0.0 UG 100 0 0 eth0
10.10.0.0 * 255.255.255.0 U 0 0 0 eth0
comp1:
$ route
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
default g128.mp.l 0.0.0.0 UG 100 0 0 eth0
10.10.0.0 * 255.255.255.0 U 0 0 0 eth1
10.128.0.0 * 255.224.0.0 U 0 0 0 eth0
Agora: Eu posso ssh no meu comp2 e ping 8.8.8.8 e recebo:
ping 8.8.8.8
PING 8.8.8.8 (8.8.8.8) 56(84) bytes of data.
64 bytes from 8.8.8.8: icmp_req=1 ttl=43 time=42.6 ms
64 bytes from 8.8.8.8: icmp_req=2 ttl=43 time=41.8 ms
Mas se eu tentar wget:
wget -O - 173.194.70.113 | grep google
function n(){if(google.timers.load.t){google.timers.load.t.ol=(new Date).getTime();google.timers.load.t.iml=e;google.kCSI.imc=c;google.kCSI.imn=b;
google.kCSI.imp=d;void 0!==google.stt&&(google.kCS...
que está OK, mas se eu tentar assim:
wget -O - http://www.google.com |grep google
--2013-11-21 15:07:35-- http://www.google.com/
Resolving www.google.com (www.google.com)... failed: Temporary failure in name resolution.
wget: unable to resolve host address 'www.google.com'
o que implica para mim que este é um problema no servidor DNS.
meu less /etc/resolv.conf
no comp1 se parece com isto:
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 127.0.0.1
search xxx.xxx.xxx
xxx não são importantes, mas no comp2 se parece com isso:
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
como configurar isso?