* FW: Opening connection
@ 2002-10-30 15:19 MValentin
0 siblings, 0 replies; 2+ messages in thread
From: MValentin @ 2002-10-30 15:19 UTC (permalink / raw)
To: netfilter
> Please if anybody can help me. My first Linux 7.2 firewall. How do I setup
> a connection using NAT for a web and mail server in the LAN. Also, Do I
> have to create entries for the routing table?
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: FW: Opening connection
@ 2002-10-30 16:31 Boryan Yotov
0 siblings, 0 replies; 2+ messages in thread
From: Boryan Yotov @ 2002-10-30 16:31 UTC (permalink / raw)
To: netfilter
[-- Attachment #1: Type: text/plain, Size: 1912 bytes --]
Hello,
If I understood your wish clearly you have the following situation
1. Gateway connected to the Internet as well as to your LAN
- external interface eth0 with IP 1.2.3.4
- internal interface eth1 with iP 9.9.9.1
2. Mail server running inside your LAN on IP 9.9.9.2 using the above
machine as Internet gateway
3. Web server again on your local LAN on IP 9.9.9.3 and the same as
for your mail server
(Note) All the values are example ones.
The firewall rules which you'll need in order both server to be
visible from Internet could look like:
iptables -t nat -A PREROUTING -p tcp -i eth0 -d 1.2.3.4 --dport 80 -j
DNAT --to-destination 9.9.9.3
iptables -t nat -A PREROUTING -p tcp -i eth0 -d 1.2.3.4 --dport 443
-j DNAT --to-destination 9.9.9.3
iptables -t nat -A PREROUTING -p tcp -i eth0 -d 1.2.3.4 --dport 25 -j
DNAT --to-destination 9.9.9.2
iptables -t nat -A PREROUTING -p tcp -i eth0 -d 1.2.3.4 --dport 110
-j DNAT --to-destination 9.9.9.2
(Note) For the external world it'll look like both servers are
running on your Gateway.
And of course using this configuration you don't need to change the
routing table. But at least the DNS entries for the mail and web server
must point to the external IP of your Gateway.
One addition - use for example the following rule if you want your
LAN to be able to reach Internet via the above Gateway:
#Enable IP forwarding
echo 1 > /proc/sys/net/ipv4/ip_forward
iptables -t nat -A POSTROUTING -o eth0 -s 9.9.9.0/24 -j SNAT
--to-source 1.2.3.4
where 9.9.9.0 is your LAN and 24 is your LAN's netmask.
Regards :)
MValentin@imsidc.com wrote:
>
>
>> Please if anybody can help me. My first Linux 7.2 firewall. How do I
>> setup
>> a connection using NAT for a web and mail server in the LAN. Also, Do I
>> have to create entries for the routing table?
>>
>
>
>
>
>
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2002-10-30 16:31 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-10-30 16:31 FW: Opening connection Boryan Yotov
-- strict thread matches above, loose matches on Subject: below --
2002-10-30 15:19 MValentin
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.