I'm travelling on business and trying to use the hotel-supplied internet.  I'm 
using a Telkonet Bridge through the building's wiring.  (Laptop -> Cat-5 
cable -> Telkonet -> building wiring.)  My laptop is an up-to-date Gentoo, 
2.6 kernel, IBM Thinkpad R51.

DHCP works to give me an IP address, and sets the default 
gateway.  /etc/resolv.conf gets automatically changed to one line:

nameserver 168.95.1.1

While the network connection works fine (I can ping any valid IP, such as my 
email server, my home network, etc).  However, DNS name resolution is not 
working.  Here's a typical session:

orion root # /etc/init.d/net.eth0 stop
 * Running predown function
 * Bringing eth0 down
 *   Releasing DHCP lease for eth0...                                           
                                     
[ ok ]
 *   Stopping eth0...                                                           
                                     
[ ok ]
orion root # /etc/init.d/net.eth0 start
 * Running preup function
 *   Wireless extensions not found for eth0
 * Bringing eth0 up via DHCP...
dhcpcd: MAC address = 00:0d:60:78:92:1f
dhcpcd: your IP address = 192.168.1.137
dhcpcd: orig hostname = orion
dhcpcd: orig domainname = (none)                                                
                                     
[ ok ]
 *   eth0 received address 192.168.1.137
orion root # ping www.utk.edu
ping: unknown host www.utk.edu
orion root # ping 160.36.178.162
PING 160.36.178.162 (160.36.178.162) 56(84) bytes of data.
64 bytes from 160.36.178.162: icmp_seq=1 ttl=235 time=90.7 ms
64 bytes from 160.36.178.162: icmp_seq=2 ttl=235 time=89.3 ms
64 bytes from 160.36.178.162: icmp_seq=3 ttl=235 time=88.6 ms
64 bytes from 160.36.178.162: icmp_seq=4 ttl=235 time=87.7 ms
64 bytes from 160.36.178.162: icmp_seq=5 ttl=235 time=89.0 ms

--- 160.36.178.162 ping statistics ---
5 packets transmitted, 5 received, 0% packet loss, time 4004ms
rtt min/avg/max/mdev = 87.782/89.131/90.759/1.027 ms
orion root # netstat -rn
Kernel IP routing table
Destination     Gateway         Genmask         Flags   MSS Window  irtt Iface
192.168.1.0     0.0.0.0         255.255.255.0   U         0 0          0 eth0
127.0.0.0       127.0.0.1       255.0.0.0       UG        0 0          0 lo
0.0.0.0         192.168.1.1     0.0.0.0         UG        0 0          0 eth0
orion root # cat /etc/resolv.conf
nameserver 168.95.1.1
orion root # 

Here's /etc/conf.d/net (less comments):

iface_eth0="dhcp"
dhcpcd_eth0="-dBSDH -t 5"
iface_eth1="dhcp"
dhcpcd_eth1="-dN -t 10"
iface_eth2="dhcp"
dhcpcd_eth2="-dN -t 10"

###########################################
# Hook wireless into /etc/init.d/net.eth0
# Please note, these lines should appear
# at the END of the file

source /etc/init.d/wireless.sh

preup() {
        wireless_up ${1}
        return $?
}

predown() {
        wireless_down ${1}
        return $?
}

# End hook
###########################################

What's not set up right?  Is there something on the network filtering me out?  
Am I missing a configuration setting?

Note:  I get the same behavior from a Knoppix boot.

Peace,
Gabriel

-- 
            G a b r i e l   M .  B e d d i n g f i e l d
...........................Today's fortune cookie.......................
Look, I'm about to buy me a double barreled sawed off shotgun and show
Linus what I think about backspace and delete not working.
        -- some anonymous .signature
........................................................................
-- 
gentoo-user@gentoo.org mailing list

Reply via email to