alex_sm74
(usa Debian)
Enviado em 13/11/2013 - 22:27h
Pessoal, o comando hostname -i e hostname -f está retornando como resultado "nome ou serviço desconhecido" no lugar do IP e do FQDN.
Segue abaixo algumas configurações de arquivos e respostas de alguns comandos que eu executei para testar o serviço.
root@debian:~# cat /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 eth1
iface eth1 inet static
address 192.168.200.1
netmask 255.255.255.0
broadcast 192.168.200.255
network 192.168.200.0
auto eth0
iface eth0 inet dhcp
-----------------------------------------------------------------------------
root@debian:~# cat /etc/hostname
debian
root@debian:~# hostname
debian
root@debian:~# hostname -i
hostname: Name or service not known
root@debian:~# hostname -f
hostname: Name or service not known
root@debian:~# cat /etc/hosts
127.0.0.1 localhost.localdomain localhost
192.168.200.1 servidor.dexter.com.br servidor
------------------------------------------------------------------------------
root@debian:~# ping google.com.br
PING google.com.br (186.207.162.162) 56(84) bytes of data.
64 bytes from bacfa2a2.virtua.com.br (186.207.162.162): icmp_req=1 ttl=61 time=10.9 ms
64 bytes from bacfa2a2.virtua.com.br (186.207.162.162): icmp_req=2 ttl=61 time=12.3 ms
64 bytes from bacfa2a2.virtua.com.br (186.207.162.162): icmp_req=3 ttl=61 time=12.5 ms
^C
--- google.com.br ping statistics ---
3 packets transmitted, 3 received, 0% packet loss, time 2005ms
rtt min/avg/max/mdev = 10.970/11.937/12.539/0.696 ms
--------------------------------------------------------------------------------
root@debian:~# ifconfig eth0
eth0 Link encap:Ethernet Endereço de HW 08:00:27:24:02:47
inet end.: 10.0.2.15 Bcast:10.0.2.255 Masc:255.255.255.0
endereço inet6: fe80::a00:27ff:fe24:247/64 Escopo:Link
UP BROADCASTRUNNING MULTICAST MTU:1500 Métrica:1
RX packets:2003 errors:0 dropped:0 overruns:0 frame:0
TX packets:1580 errors:0 dropped:0 overruns:0 carrier:0
colisões:0 txqueuelen:1000
RX bytes:1538644 (1.4 MiB) TX bytes:207258 (202.4 KiB)
root@debian:~# ifconfig eth1
eth1 Link encap:Ethernet Endereço de HW 08:00:27:cc:94:04
inet end.: 192.168.200.1 Bcast:192.168.200.255 Masc:255.255.255.0
endereço inet6: fe80::a00:27ff:fecc:9404/64 Escopo:Link
UP BROADCASTRUNNING MULTICAST MTU:1500 Métrica:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:12 errors:0 dropped:0 overruns:0 carrier:0
colisões:0 txqueuelen:1000
RX bytes:0 (0.0 B) TX bytes:936 (936.0 B)
-----------------------------------------------------------------------------------------
Como eu resolvo esse problema??