Link to home
Start Free TrialLog in
Avatar of sbock
sbock

asked on

Displaying the ports that are open on PIX506E

I am very new to the PIX and i was wondering if there is a way to display the ports that are open on my firewall through the PDM.  I can also use the CLI if that is easier.  Thanks.
Avatar of shivsa
shivsa
Flag of United States of America image

write t command statement to list the configuration.
Avatar of sbock
sbock

ASKER

so when i do that, i get alot of fixup protocols that show up.  What does that mean?
ASKER CERTIFIED SOLUTION
Avatar of Les Moore
Les Moore
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of sbock

ASKER

yea, i'm using 6.3(1) with PDM.  Here is my current config....

PIX Version 6.3(1)
interface ethernet0 auto
interface ethernet1 auto
nameif ethernet0 outside security0
nameif ethernet1 inside security100
enable password H373hETCVaeLW7xk encrypted
passwd 2KFQnbNIdI.2KYOU encrypted
hostname FireWall
domain-name .net
clock timezone CST -6
clock summer-time CDT recurring
no fixup protocol ftp 21
fixup protocol h323 h225 1720
fixup protocol h323 ras 1718-1719
fixup protocol http 80
fixup protocol ils 389
fixup protocol rsh 514
fixup protocol rtsp 554
fixup protocol sip 5060
fixup protocol sip udp 5060
fixup protocol skinny 2000
fixup protocol smtp 25
fixup protocol sqlnet 1521
names
pager lines 24
logging on
mtu outside 1500
mtu inside 1500
ip address outside 63.239.xxx.xxx 255.255.255.248
ip address inside 192.168.0.254 255.255.255.0
ip audit info action alarm
ip audit attack action alarm
pdm location 0.0.0.0 255.255.255.0 outside
pdm location 192.168.0.100 255.255.255.255 inside
pdm location 192.168.0.1 255.255.255.255 inside
pdm location 192.168.0.122 255.255.255.255 inside
pdm logging notifications 100
pdm history enable
arp timeout 14400
global (outside) 1 interface
nat (inside) 1 192.168.0.0 255.255.255.0 0 0
route outside 0.0.0.0 0.0.0.0 63.239.xxx.xxx 1
timeout xlate 3:00:00
timeout conn 1:00:00 half-closed 0:10:00 udp 0:02:00 rpc 0:10:00 h225 1:00:00
timeout h323 0:05:00 mgcp 0:05:00 sip 0:30:00 sip_media 0:02:00
timeout uauth 0:05:00 absolute
aaa-server TACACS+ protocol tacacs+
aaa-server RADIUS protocol radius
aaa-server LOCAL protocol local
http server enable
http 192.168.0.1 255.255.255.255 inside
http 192.168.0.0 255.255.255.0 inside
http 192.168.0.100 255.255.255.255 inside
no snmp-server location
no snmp-server contact
snmp-server community public
no snmp-server enable traps
tftp-server inside 192.168.0.1 c:/TFTP-Root
floodguard enable
telnet 192.168.0.0 255.255.255.0 inside
telnet timeout 5
ssh timeout 5
console timeout 0
terminal width 80


I'm assuming that i don't have any ports open right now because i don't have any access-lists.  And since i don't have any access-lists, the fixup ports are just there waiting to be used.  Am i correct?
Exactly. You have no open ports for un-invited traffic, the fixups don't necessarily just sit there, they are part of the Adaptive Security Algorithm to support the returns of outbound requests. For example, the fixup ftp is required because your outgoing ftp request is initiated on one port, and the data is sent on another port.
Avatar of sbock

ASKER

cool.  thanks for the help.