Linux – Routing using Linux with 2 NIC cards

clearoslinuxrouterroutingstatic-routes

Configured Clear OS to be in Gateway mode on a machine with two NIC cards.

eth0:192.168.2.0/24 with ip 192.168.2.27 which is connected to a modem and thus have internet connectivity.

eth1:192.168.122.0/24 with ip 192.168.122.10 which is connected to other machines in LAN through switch.

LAN machines with network 192.168.122.0 is not getting internet.How can they get internet Through Clear OS gateway.I have enabled packet forwarding in clear os using "ip_forward=1" What am i missing?.Can you please help me in this.

Following are the static routing i have added:
on LAN machine1 with ip address 192.168.122.11

ip route add 192.168.2.0/24 via 192.168.122.10 dev eth0

ip route show

192.168.2.0/24 via 192.168.122.10 dev eth0 
192.168.122.0/24 dev eth0  proto kernel  scope link  src 192.168.122.11

But still 192.168.2.0/24 network is not reachable.Where can be the problem??

EDIT: All the machines are Virtual Machines running on xen.

Network 192.168.2.0/24 is through Bridge network with host Ethernet card and network 192.168.122.0/24 is through virtual bridge network with in VMs.

Best Answer

If Xen has configured a bridge network to connect the VM guests to the hosts LAN interface, then the guests should not be in a separate IP subnet. A "bridge" connects two networks which are disjoint at the 'hardware' (i.e. Ethernet) level. In that case, all machines, virtual and physical, should have addresses in 192.168.2.0/24 .

If, on the other hand, the physical LAN and virtual LAN are not bridged, then you will want separate IP subnets, with routing between them. NAT (on the Linux host) is optional, though it might be necessary if your Internet "modem" device is only expecting to provide access to one IP subnet. If you do things this way, then you will need to configure the guests to use 192.168.122.10 as their default gateway.

Related Topic