Results 1 to 9 of 9
I am using Debian (last version, downloaded it last week.)
I installed it with x server.
When i try to connect internet nothing happens.
I installed my router/modem, so that ...
- 04-24-2008 #1Just Joined!
- Join Date
- Apr 2008
- Posts
- 5
eth0 interfaces doesnt connect anything
I am using Debian (last version, downloaded it last week.)
I installed it with x server.
When i try to connect internet nothing happens.
I installed my router/modem, so that it gives a ip for the mac adres of my debian server.
Some how my debian install doesn`t pick up the ip.....
can someone help me?
p.s. i`m a newbie at Debian.
Thanx
- 04-24-2008 #2
I am understanding correctly that you need this server to use dhcp (getting ip the router assigns)? From the command line as su:
If on the other hand, you need a static ip:Code:dhclient eth0
All this, providing of course that your server already detects your ethernet device and has loaded the module for it. If you see the device when doing:Code:ifconfig eth0 inet ip.you.want.here
Then the above will likely yield a result. You should find this page very helpful.Code:ifconfig
Last edited by Dapper Dan; 04-24-2008 at 11:28 AM.
- 04-24-2008 #3Just Joined!
- Join Date
- Apr 2008
- Posts
- 5
if i use dhclient it takes the wrong subnet mask
it takes 255.255.255.255 while my router broadcasts at 255.255.255.0
- 04-24-2008 #4Just Joined!
- Join Date
- Apr 2008
- Posts
- 5
unfortunatly it didnt work
- 04-24-2008 #5
With your favourite editor as su, open: /etc/network/interfaces. It will look something like this:
Find your eth0 and edit it as you need for it to be.Code:auto lo iface lo inet loopback iface eth0 inet static address 192.168.1.101 netmask 255.255.255.0 gateway 192.168.1.1 auto eth1 #iface eth1 inet dhcp auto eth2 #iface eth2 inet dhcp auto ath0 #iface ath0 inet dhcp auto wlan0 #iface wlan0 inet dhcp
- 04-24-2008 #6Just Joined!
- Join Date
- Apr 2008
- Posts
- 5
- 04-24-2008 #7
To troubleshoot, you need to provide more information than just "...it doesn't work." What doesn't work? opening the file doesn't work? Editing it doesn't work? Did you run ifconfig? Is your device there? Open a terminal and do:
and post the output here please.Code:ifconfig
EDIT: If the device isn't up and running, do:
Code:ifconfig eth0 up
Last edited by Dapper Dan; 04-24-2008 at 12:49 PM.
- 04-25-2008 #8Linux User
- Join Date
- Feb 2006
- Posts
- 484
post the output of "ifconfig -a" command and the content of /etc/network/interfaces file. Maybe a "lspci" output would be useful.
- 04-26-2008 #9Just Joined!
- Join Date
- Apr 2008
- Posts
- 5
I`m not behind the server, but i think its a hardware problem:
If i fire up the eth0 device it says something like.
Irg 11.


Reply With Quote

