Hello I have a problem with my network. I can't connect to the Internet.
I have to use an static IP, here is the information:
IP address: 192.168.8.18
Netmask: 255.255.255.224
Gateway: 192.168.8.1
DNS: 192.168.11.1 and 192.168.11.2
I tried doing all this via network settings but I can't write by hand the netmask I need. So I went to the interfaces (/etc/network/interfaces) file, here is the info:
auto lo
iface lo inet loopback
address 127.0.0.1
netmask 255.0.0.0
auto eth0
iface eth0 inet static
address 192.168.8.18
netmask 255.255.255.0
gateway 192.168.8.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
Before making changes in the interfaces file, in the console, I executed "ifdown eth0", then I changed the netmask to 255.255.255.224 in the interfaces file. I saved the changes and then "ifup eth0".
I went to konqueror and tried to see if I had my internet working but it wasn't working.
Then I went to the terminal and wrote ifconfig eth0, here is the information:
eth0 Link encap:Ethernet HWaddr 00:01:6C:F6:3C:0E
inet addr:192.168.8.18 Bcast:192.168.8.31 Mask:255.255.255.224
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:155 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:56 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:15414 (15.0 KiB) TX bytes:0 (0.0 b)
Interrupt:217 Base address:0xe000
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:40 errors:0 dropped:0 overruns:0 frame:0
TX packets:40 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:3204 (3.1 KiB) TX bytes:3204 (3.1 KiB)
I noticed I had the broadcast like this Bcast:192.168.8.31, so I went again to the interfaces file and I added "broadcast 192.168.8.255". I'm not sure if what I did with the broadcast is right but in I noticed in many posts that the broadcast looks like that. Now my interfaces file looks like this:
auto lo
iface lo inet loopback
address 127.0.0.1
netmask 255.0.0.0
auto eth0
iface eth0 inet static
address 192.168.8.18
netmask 255.255.255.224
gateway 192.168.8.1
broadcast 192.168.8.255
auto eth1
iface eth1 inet dhcp
auto eth2
iface eth2 inet dhcp
auto ath0
iface ath0 inet dhcp
auto wlan0
iface wlan0 inet dhcp
Here is the "more /etc/resolv.conf" information:
nameserver 192.168.11.1
nameserver 192.168.11.2
I don't know what else to do, I just installed kubuntu dapper. I used to work with ubuntu (breezy)
Please help!!!!!
I have to use an static IP, here is the information:
IP address: 192.168.8.18
Netmask: 255.255.255.224
Gateway: 192.168.8.1
DNS: 192.168.11.1 and 192.168.11.2
I tried doing all this via network settings but I can't write by hand the netmask I need. So I went to the interfaces (/etc/network/interfaces) file, here is the info:
auto lo
iface lo inet loopback
address 127.0.0.1
netmask 255.0.0.0
auto eth0
iface eth0 inet static
address 192.168.8.18
netmask 255.255.255.0
gateway 192.168.8.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
Before making changes in the interfaces file, in the console, I executed "ifdown eth0", then I changed the netmask to 255.255.255.224 in the interfaces file. I saved the changes and then "ifup eth0".
I went to konqueror and tried to see if I had my internet working but it wasn't working.
Then I went to the terminal and wrote ifconfig eth0, here is the information:
eth0 Link encap:Ethernet HWaddr 00:01:6C:F6:3C:0E
inet addr:192.168.8.18 Bcast:192.168.8.31 Mask:255.255.255.224
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:155 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:56 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:15414 (15.0 KiB) TX bytes:0 (0.0 b)
Interrupt:217 Base address:0xe000
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:40 errors:0 dropped:0 overruns:0 frame:0
TX packets:40 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:3204 (3.1 KiB) TX bytes:3204 (3.1 KiB)
I noticed I had the broadcast like this Bcast:192.168.8.31, so I went again to the interfaces file and I added "broadcast 192.168.8.255". I'm not sure if what I did with the broadcast is right but in I noticed in many posts that the broadcast looks like that. Now my interfaces file looks like this:
auto lo
iface lo inet loopback
address 127.0.0.1
netmask 255.0.0.0
auto eth0
iface eth0 inet static
address 192.168.8.18
netmask 255.255.255.224
gateway 192.168.8.1
broadcast 192.168.8.255
auto eth1
iface eth1 inet dhcp
auto eth2
iface eth2 inet dhcp
auto ath0
iface ath0 inet dhcp
auto wlan0
iface wlan0 inet dhcp
Here is the "more /etc/resolv.conf" information:
nameserver 192.168.11.1
nameserver 192.168.11.2
I don't know what else to do, I just installed kubuntu dapper. I used to work with ubuntu (breezy)
Please help!!!!!
Comment