LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Networking (https://www.linuxquestions.org/questions/linux-networking-3/)
-   -   Setting up a home network problem (https://www.linuxquestions.org/questions/linux-networking-3/setting-up-a-home-network-problem-662898/)

Shwick 08-14-2008 10:40 PM

Setting up a home network problem
 
I have two interfaces on my ubuntu 8.04 machine, eth0 and eth1. eth0 is for internet(working) and eth1 uses dhcp with a static ip(not working) for my other computers on the network.

My windows machine can't ping domain names or ips when connected to eth1. It acquires an ip address from my dhcp3 server and can ping the static ip, but nothing on the internet. I also tried disabling ufw.

-----------------------
/etc/network/interfaces

auto lo
iface lo inet loopback

iface eth0 inet dhcp

iface eth1 inet static
address 192.168.0.1
netmask 255.255.255.0
gateway 192.168.0.1

auto eth0
auto eth1
-----------------------
/etc/dhcp3/dhcpd.conf

default-lease-time 600;
max-lease-time 7200;
option subnet-mask 255.255.255.0;
option broadcast-address 192.168.0.255;
option routers 192.168.0.1;
option domain-name-servers 64.71.255.198;
option domain-name "shwick.mydomain";

subnet 192.168.0.0 netmask 255.255.255.0 {
range 192.168.0.2 192.168.0.100;
}
-----------------------
/etc/default/dhcp3-server

INTERFACES="eth1"
-----------------------
/etc/resolv.conf

search phub.net.cable.rogers.com
nameserver 64.71.255.198


I'm thinking this has something to do with the gateway. When I enter a gateway in interfaces for eth1, interface eth0 can't connect/ping the internet.

I read through the ubuntu server guide but I'm really confused right now, any help is welcome.

billymayday 08-14-2008 10:55 PM

It's probably just that nothing is getting forwarded on the Ubuntu box. Can you post the output of

cat /proc/sys/net/ipv4/ip_forward

iptables -L

route

(you'll need to enter these commands from a terminal, and probably add "sudo" before each command, so "sudo iptables -L")

What is "ufw"?

Shwick 09-23-2008 09:35 PM

Sorry for the long time before reply.

The problem was that I didn't have port forwarding enabled. I disabled ufw because it was going to cause problems moving forward with other services. I used this as a guide to enable port forwarding with iptables: https://help.ubuntu.com/community/In...nectionSharing


All times are GMT -5. The time now is 12:30 AM.