Linux Netfilter discussions
 help / color / mirror / Atom feed
* Re: dhcp windows client port
@ 2005-11-12 21:25 Gabriel
  2005-11-12 23:27 ` P theodorou
  0 siblings, 1 reply; 5+ messages in thread
From: Gabriel @ 2005-11-12 21:25 UTC (permalink / raw)
  To: netfilter

On Sat, 12 Nov 2005 18:08:23 +0200, P theodorou
<props666999@hotmail.com>  
wrote:

> Hello
>
> i wish  the windows machine which receives Internet from
the firewall pc
> to be restricted fully apart from the port needed to
access the internet
>
> the windows machine has got fully access when my
rc.firewall  contains
>
> $iptables -A FORWARD -i $LAN_IFACE -j ACCEPT
>
> which gives to the windows machine access to every port
>
> i've tried unsuccesully the following command
>
> $iptables -A FORWARD -p TCP -i $LAN_IFACE -- sport XX -j
ACCEPT
>
> my netstat on the windows machine displays various
connections
> few questions now
>
>
> 1 which port should be alolwed for the windows machine to
see internet
> 2 can i restrct it to  something like :
> $iptables -A FORWARD  -p TCP -i $LAN_IFACE  -sport XX  
-dport XX -j  
> ACCEPT
>
> in other words, allow  the windows relevant port for
accesing on the  
> internet  to
> be connected to the specific port of the firewall
>
> regards
>
>
>
>

You could adopt a strategy where you allow all connections
started from  
the inside of your LAN (and, of course, all connections
related to those),  
but none that is started from the internet. So, you could
set the FORWARD  
policy to DROP, allow the IPs from inside the LAN to
connect to the  
internet and then use a rule that allows all ESTABLISHED
and RELATED  
connections.

-- 
Using Opera's revolutionary e-mail client: http://www.opera.com/mail/


		
__________________________________ 
Yahoo! FareChase: Search multiple travel sites in one click.
http://farechase.yahoo.com


^ permalink raw reply	[flat|nested] 5+ messages in thread
* RE: dhcp windows client port
@ 2005-11-12 18:45 P theodorou
  2005-11-12 19:36 ` dhcp windows client port (nfcan: addressed to exclusive sender for this address) Jim Laurino
  0 siblings, 1 reply; 5+ messages in thread
From: P theodorou @ 2005-11-12 18:45 UTC (permalink / raw)
  To: netfilter

Thanks Rob for you detailed reply.

My intention is to secure this side  of network as much as possible
I'm not a guru but common sense says that  if i block everything apart from 
the
web access then this is   well restricted policy  OR IT IS NOT ?

regards

>From: "Rob Sterenborg" <rob@sterenborg.info>
>To: <netfilter@lists.netfilter.org>
>Subject: RE: dhcp windows client port Date: Sat, 12 Nov 2005 18:08:14 +0100
>
> > i wish  the windows machine which receives Internet from the
> > firewall pc to be restricted fully apart from the port needed to
> > access the internet
> >
> > the windows machine has got fully access when my rc.firewall
> > contains
> >
> > $iptables -A FORWARD -i $LAN_IFACE -j ACCEPT
> >
> > which gives to the windows machine access to every port
> >
> > i've tried unsuccesully the following command
> >
> > $iptables -A FORWARD -p TCP -i $LAN_IFACE -- sport XX -j ACCEPT
> >
> > my netstat on the windows machine displays various connections
> > few questions now
> >
> >
> > 1 which port should be alolwed for the windows machine to see internet
> > 2 can i restrct it to  something like :
> > $iptables -A FORWARD  -p TCP -i $LAN_IFACE  -sport XX -dport XX -j
> > ACCEPT
> >
> > in other words, allow  the windows relevant port for accesing on the
> > internet  to be connected to the specific port of the firewall
>
>You will not connect to any port on the firewall. The firewall will
>route your packets through to the internet.
>
>To access websites you need DNS (port 53/udp, sometimes tcp) to be able
>to resolve the hostname of the website. Further, most websites use http
>and/or https, ports 80/tcp and 443/tcp.
>So, your ruleset would look like :
>
>$ipt -P FORWARD DROP
>$ipt -A FORWARD -m state --state RELATED,ESTABLISHED -j ACCEPT
>$ipt -A FORWARD -i $IF_LAN -o $IF_INET -m state --state NEW \
>   -p udp --dport 53 -j ACCEPT
>$ipt -A FORWARD -i $IF_LAN -o $IF_INET -m state --state NEW \
>   -p tcp --dport 53 -j ACCEPT
>$ipt -A FORWARD -i $IF_LAN -o $IF_INET -m state --state NEW \
>   -p tcp --dport 80 -j ACCEPT
>$ipt -A FORWARD -i $IF_LAN -o $IF_INET -m state --state NEW \
>   -p tcp --dport 443 -j ACCEPT
>
>But, this way you will not be able to browse a website that is not
>hosted on a standard port (eg 81/tcp).
>For more information about Netfilter, check out
>http://iptables-tutorial.frozentux.net/iptables-tutorial.html.
>
>
>Gr,
>Rob
>
>




^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2005-11-13  3:13 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-11-12 21:25 dhcp windows client port Gabriel
2005-11-12 23:27 ` P theodorou
2005-11-12 23:51   ` Tom Eastep
2005-11-13  3:13   ` dhcp windows client port (nfcan: addressed to exclusive sender for this address) Jim Laurino
  -- strict thread matches above, loose matches on Subject: below --
2005-11-12 18:45 dhcp windows client port P theodorou
2005-11-12 19:36 ` dhcp windows client port (nfcan: addressed to exclusive sender for this address) Jim Laurino

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox