I am having tons of trouble with my DHCP settings i believe.
I try to ping google.com or another computer in my network (ammo-box) and i get the
ping: unknown host google.com error. When i try to ping google's ip address (74.125.67.100) i get
connect: Network is unreachable, but if I ping ammo-box with the IP, i get a return fine.
I'm not quite sure if this is a problem with the DHCP or something with my router maybe.
Here is my
/etc/network/interfaces file:
auto lo
iface lo inet loopback
#address 192.168.1.99
#netmask 255.225.225.0
auto eth0
iface eth0 inet static
address 192.168.1.99
network 192.168.0.0
netmask 225.225.225.0
broadcast 192.168.1.225
gateway 192.168.0.1
and my
/etc/dhcp3/dhclient.conf:
#option rfc3442-classless-static-routes code 121 = array of unsigned integer 8;
send host-name "<hostname>";
#send dhcp-client-identifier 1:0:a0:24:ab:fb:9c;
#send dhcp-lease-time 3600;
#supersede domain-name "fugue.com home.vix.com";
#prepend domain-name-servers 127.0.0.1;
request subnet-mask, broadcast-address, time-offset, routers,
domain-name, domain-name-servers, domain-search, host-name,
netbios-name-servers, netbios-scope, interface-mtu,
rfc3442-classless-static-routes, ntp-servers;
require routers, subnet-mask, domain-name-servers;
#timeout 60;
#retry 60;
#reboot 10;
#select-timeout 5;
#initial-interval 2;
#script "/etc/dhcp3/dhclient-script";
#media "-link0 -link1 -link2", "link0 link1";
#reject 192.33.137.209;
#alias {
# interface "eth0";
# fixed-address 192.5.5.213;
# option subnet-mask 255.255.255.255;
#}
#lease {
# interface "eth0";
# fixed-address 192.33.137.200;
# medium "link0 link1";
# option host-name "andare.swiftmedia.com";
# option subnet-mask 255.255.255.0;
# option broadcast-address 192.33.137.255;
# option routers 192.33.137.250;
# option domain-name-servers 127.0.0.1;
# renew 2 2000/1/12 00:00:01;
# rebind 2 2000/1/12 00:00:01;
# expire 2 2000/1/12 00:00:01;
#}
maybe I should have some of these things un-commented?
Any help would be appreciated. Thank you!