Quote:
Originally posted by OneManArmy
here they r where the * r just for screening .
# /etc/network/interfaces -- configuration file for ifup(8), ifdown(8)
# The loopback interface
auto lo
iface lo inet loopback
#iface eth0 inet dhcp
auto eth0
iface eth0 inet static
address ***.**.**.***
netmask ***.***.***.*
gateway ***.**.**.**
so what do u think?
|
You have have some lines missing - here's mine as example;
auto eth0
iface eth0 inet static
address 192.168.0.2
netmask 255.255.255.0
network 192.168.0.1
broadcast 192.168.0.255
I would also remove the gateway unless you specifically want this. My connecction to the adsl router contains it;
auto eth1
iface eth1 inet static
address 10.0.0.10
netmask 255.0.0.0
network 10.0.0.0
broadcast 10.255.255.255
gateway 10.0.0.2
I think the problem is your lack of network address. You might also want to add names and addresses to your hosts file as well.