Hi,
I've got a network as pictured below:
80.x.y.z -> Router Siemens (192.168.1.1)
/ \
192.168.1.2 192.168.1.3
On machine 192.168.1.3 there is an Apache running, which I can access
from the Internet. (I did a port-forwarding on the router to the
mac-address of 192.168.1.3)
Everything works fine.
Now, I wanted to add a third machine to the network. Since 192.168.1.3
had a second Ethernet card (eth1), I connected the new machine via cross
link to eth1 and created a bridge on 192.168.1.3:
/etc/sysconfig/network-scripts/ifcfg-br0:
DEVICE=br0
TYPE=Bridge
IPADDR=192.168.1.3
NETMASK=255.255.255.0
ONBOOT=yes
/etc/sysconfig/network-scripts/ifcfg-eth0:
DEVICE=eth0
TYPE=Ethernet
BRIDGE=br0
ONBOOT=yes
/etc/sysconfig/network-scripts/ifcfg-eth1:
DEVICE=eth1
TYPE=Ethernet
BRIDGE=br0
ONBOOT=yes
Everything works fine and I can ping each machine by another. Accessing
the Internet is also possible.
I still can access the Apache from inside the LAN, but not from the
Internet anymore...
What is the problem?
TIA.
sven
|