All of lore.kernel.org
 help / color / mirror / Atom feed
From: adderek <adderek@polbox.com>
To: Askar Ali Khan <askarali@gmail.com>
Cc: netfilter <netfilter@lists.netfilter.org>
Subject: Re: rules suggestion
Date: Thu, 22 Jul 2004 08:16:08 +0200	[thread overview]
Message-ID: <40FF5BA8.2040900@polbox.com> (raw)
In-Reply-To: <a0f69e50407212243efa02aa@mail.gmail.com>

Askar Ali Khan wrote:

> Here are few rules from overs firewall, please let me know is this is
> the proper way to deal with windowz ports :)
> 
> iptables -A INPUT -p TCP -s 0/0 -d 0/0 --dport 135:140 -j DROP
> iptables -A INPUT -p UDP -s 0/0 -d 0/0 --dport 135:140 -j DROP
> iptables -A FORWARD -p TCP -s 0/0 -d 0/0 --dport 135:140 -j DROP
> iptables -A FORWARD -p UDP -s 0/0 -d 0/0 --dport 135:140 -j DROP
> iptables -t nat -A PREROUTING -p TCP -s 0/0 -d 0/0 --dport 135:140 -j DROP
> iptables -t nat -A PREROUTING -p UDP -s 0/0 -d 0/0 --dport 135:140 -j DROP


$ipt -t filter -A OUTPUT -o $extif_name -p udp -d 192.168.1.255 --dport 
137:139 -j DROP  #NETBIOS

$ipt -t filter -A INPUT -i $extif_name -p udp -d 192.168.1.255 --dport 
137:139 -j DROP  #NETBIOS

$ipt -t filter -A FORWARD -i $extif_name -p udp -d 192.168.1.255 --dport 
137:139 -j DROP  #NETBIOS

$ipt -t filter -A FORWARD -o $extif_name -p udp -d 192.168.1.255 --dport 
137:139 -j DROP  #NETBIOS



This will do (at least it works on my PC :)

I have 192.168.1.x subnet.

# NETBIOS is my comment (first two lines are taken from my bash's script 
and lines 3 and 4 are not tested and I've created them by hand a while 
ago). However I've disabled multicast forwarding on my router/firewall 
so only first two lines are really needed (on my PC).

However if you like to enable SMB then some more ports will be needed 
(ie. 32768 or someting like that, and this one port is undocumented)



  reply	other threads:[~2004-07-22  6:16 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-07-22  5:43 rules suggestion Askar Ali Khan
2004-07-22  6:16 ` adderek [this message]
2004-07-22 10:04   ` George Alexandru Dragoi
2004-07-22  6:23 ` Patrick Leslie Polzer
  -- strict thread matches above, loose matches on Subject: below --
2004-07-22 20:31 Jason Opperisano

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=40FF5BA8.2040900@polbox.com \
    --to=adderek@polbox.com \
    --cc=askarali@gmail.com \
    --cc=netfilter@lists.netfilter.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.