Advertisement

02.28.2008 at 05:30AM PST, ID: 23200135
[x]
Attachment Details

NMAP shows ports that I know nothing about in the "filtered" state

[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

8.9
Tags:

OpenBSD, Packet Filtering, 3.9

I noticed yesterday that when I run an NMAP against the external interface of my OpenBSD firewall it shows ports in the "filtered" state, that I know nothing about.  In the past it would only show the ports that I purposely opened in the PF.CONF file.  I don't know what changed, that's making me now see these "filtered" ports.  Below is output from NMAP.

Starting Nmap 4.10 ( http://www.insecure.org/nmap ) at 2008-02-28 08:18 Eastern Standard Time
Interesting ports on email.eoc.psu.edu (128.118.20.198):
Not shown: 1661 closed ports
PORT      STATE    SERVICE
21/tcp    open     ftp
22/tcp    open     ssh
25/tcp    open     smtp
80/tcp    open     http
554/tcp   filtered rtsp
1025/tcp  open     NFS-or-IIS
1720/tcp  filtered H.323/Q.931
2000/tcp  filtered callbook
3389/tcp  open     ms-term-serv
5060/tcp  filtered sip
49400/tcp filtered compaqdiag
50000/tcp filtered iiimsf
50002/tcp filtered iiimsf
54320/tcp filtered bo2k
61439/tcp filtered netprowler-manager
61440/tcp filtered netprowler-manager2
61441/tcp filtered netprowler-sensor
65301/tcp filtered pcanywhere

Nmap finished: 1 IP address (1 host up) scanned in 2.250 seconds

The ports in the OPEN state, are the ones that I opened on purpose.  The ones in the filtered state, I know nothing about.  Below is my pf.conf file

# VARIABLES
ext_if="xl1"
int_if="xl0"
tcp_services="{ 1025 }"
icmp_types="echoreq"
ssh="192.168.1.3"
web="192.168.1.3"
email="192.168.1.2"
ftp_server="192.168.1.3"

# OPTIONS
set block-policy return
set loginterface $ext_if
set skip on lo

# SCRUB
scrub in

# NAT/RDR
nat on $ext_if from !($ext_if) -> ($ext_if:0)

################# FTP ##################
nat-anchor "ftp-proxy/*"
rdr-anchor "ftp-proxy/*"
rdr on $ext_if proto tcp from any to any port 21 -> $ftp_server port 21
rdr on $ext_if proto tcp from any to any port 49152:65535 -> \
  $ftp_server port 49152:65535
################# FTP ##################

rdr on $ext_if proto tcp from any to any port 80 -> $web
rdr on $ext_if proto tcp from any to any port smtp -> $email
rdr on $ext_if proto tcp from any to any port 3389 -> $web
rdr on $ext_if proto tcp from any to any port 22 -> $ssh

# FILTER RULES
block in
pass out keep state
anchor "ftp-proxy/*"
antispoof quick for {lo $int_if }

pass in on $ext_if proto tcp from any to ($ext_if) \
  port $tcp_services flags S/SA keep state

pass in on $ext_if proto tcp from any to $web port 80 \
  flags S/SA synproxy state

pass in on $ext_if proto tcp from any to $web port 3389 \
  flags S/SA synproxy state

pass in on $ext_if proto tcp from any to $email port smtp \
  flags S/SA synproxy state

pass in on $ext_if proto tcp from any to $ssh port 22 \
  flags S/SA synproxy state

#################  FTP  #################
pass in quick on $ext_if proto tcp from any to $ftp_server \
  port 21 keep state
pass in quick on $ext_if proto tcp from any to $ftp_server \
  port > 49151 keep state
pass out quick on $int_if proto tcp from any to $ftp_server \
  port 21 keep state
pass out quick on $int_if proto tcp from any to $ftp_server \
  port > 49151 keep state
#################  FTP  #################

pass in inet proto icmp all icmp-type $icmp_types keep state
pass quick on $int_if



Answered By: ahoffmann
Expert Since: 06/17/1997
Accepted Solutions: 5898
ahoffmann has been an Expert for 11 years 6 months, during which he has posted 30254 comments and answered 5898 questions. ahoffmann is just one of 40 experts in the OpenBSD Zone. 2 experts collaborated on this answer, which was graded an "A" by the asker.
 
 
20081119-EE-VQP-47 / EE_QW_2_20070628