Very, very new debian/linux user, please go easy. I have a modem connected to a wireless router which is how I'm using my netbook to write this post, and a desktop which I just installed debian on, and a wired connection from the desktop to the router. Internet was connecting fine on the desktop before debian, so the problem is definitely configuration. I'm pretty sure that this should be simple to fix, I just have no idea how to do it. I've checked the debian manual, along with some others, and am still not sure what I need to do. The manuals seem to assume a lot of a priori knowledge :/
Here is some of my terminal session, to give you an idea of what I've been looking at:
root@debian:/# more /etc/hosts
127.0.0.1 localhost
127.0.0.1 debian.localdomain debian
# The following lines are desirable for IPv6 capable hosts
::1 ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
root@debian:/# more /etc/resolv.conf
nameserver 127.0.0.1
domain localdomain
root@debian:/# ifconfig -a
eth0 Link encap:Ethernet HWaddr 50:e5:49:c2:cd:3f
inet addr:127.0.0.1 Bcast:127.0.0.255 Mask:255.255.255.0
inet6 addr: fe80::52e5:49ff:fec2:cd3f/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:41 errors:0 dropped:0 overruns:0 frame:0
TX packets:498 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:5588 (5.4 KiB) TX bytes:21132 (20.6 KiB)
Interrupt:29 Base address:0x6000
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:661 errors:0 dropped:0 overruns:0 frame:0
TX packets:661 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:80595 (78.7 KiB) TX bytes:80595 (78.7 KiB)
root@debian:/# more /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
allow-hotplug eth0
iface eth0 inet static
address 127.0.0.1
netmask 255.255.255.0
network 127.0.0.0
broadcast 127.0.0.255
gateway 127.0.0.1
# dns-* options are implemented by the resolvconf package, if installed
dns-nameservers 127.0.0.1
dns-search localdomain
root@debian:/# hostname -i
127.0.0.1
root@debian:/# hostname -d
localdomain
root@debian:/# hostname
debian
# I don't appear to have a network manager program
root@debian:/# find /usr/share/doc/ -name net*
/usr/share/doc/netcat-traditional
/usr/share/doc/libgnomevfs2-common/html/networking.html
/usr/share/doc/netbase
/usr/share/doc/ifupdown/examples/network-interfaces.gz
/usr/share/doc/net-tools
# No results for wicd either
root@debian:/# find /usr/share/doc/ -name *wicd*
# I do have ifupdown
root@debian:/# find / -name ifupdown
/usr/share/doc/ifupdown
/usr/share/ifupdown
/var/lib/update-rc.d/ifupdown
/etc/bash_completion.d/ifupdown
/etc/init.d/ifupdown
/etc/default/ifupdown
Any guidance would be much appreciated!