* Re: RE: smtp/pop and NAT only
@ 2005-05-18 11:43 varun_saa
0 siblings, 0 replies; only message in thread
From: varun_saa @ 2005-05-18 11:43 UTC (permalink / raw)
To: Rob Sterenborg; +Cc: netfilter
----- Original Message -----
From: Rob Sterenborg <rob@sterenborg.info>
Date: Wednesday, May 18, 2005 3:54 pm
Subject: RE: smtp/pop and NAT only
> > Hello,
> > My server is on FC3 (fedora3)
> > eth0 is WAN ---> DSL router ----> ISP
> > eth1 is LAN
>
> Not sure I understand the ASCII art : is your server the DSL router ?
The server has two ethernet card. eth0 is basically WAN.
>
> > I would like to that 2 client 192.168.0.253 and 192.168.0.248
> > are connected to " fedora3 server "
> > via NAT.
>
> So that they can do "anything" ?
Yes that is correct.
>
> > And all other clients connected to "fedora3 server"
> > are able to only send / recieve mail.
> >
> > Howto do that
>
> Something like :
>
> $IPT -P FORWARD DROP
>
> $IPT -A FORWARD -m state --state RELATED,ESTABLISHED -j ACCEPT
> $IPT -A FORWARD -i eth1 -o eth0 -s 192.168.0.248 -j ACCEPT
> $IPT -A FORWARD -i eth1 -o eth0 -s 192.168.0.253 -j ACCEPT
> $IPT -A FORWARD -i eth1 -o eth0 -p tcp --dport 25 -j ACCEPT
> $IPT -A FORWARD -i eth1 -o eth0 -p tcp --dport 110 -j ACCEPT
>
> $IPT -t nat -A POSTROUTING -o eth0 -s 192.168.0.0/24 -j SNAT \
> --to-source <inet_ip>
No static IP
>
> Maybe Oscars IPTables tutorial is something useful :
> http://iptables-tutorial.frozentux.net/iptables-tutorial.html
>
>
> Gr,
> Rob
Thanks a lot
I shall give it a try.
Varun
>
>
>
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2005-05-18 11:43 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-05-18 11:43 RE: smtp/pop and NAT only varun_saa
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.