Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Pix501 help... 1

Status
Not open for further replies.

toosober

IS-IT--Management
Aug 29, 2005
29
US
I am new to Pix configuration. I have been working on a pix501 all weekend and have managed to upgrade to OS and PDM. I have the outside interface working and it can ping the inside, but I am unable to get anything from the inside out??? I think I am close and maybe just missing some permit statements? I am also having an issue where I keep losing connection to the PDM and have to restart it, so I have been trying to do most of it from the command line, except for the access lists.


If anyone can look at what I have so far and see if they see my error it will be appreciated! Here is the latest attempt:

PIX Version 6.3(5)
interface ethernet0 10baset
interface ethernet1 100full
nameif ethernet0 outside security0
nameif ethernet1 inside security100
enable password 8Ry2YjIyt7RRXU24 encrypted
passwd L5xB8KSxKk3Rwey. encrypted
hostname pixfirewall
domain-name ciscopix.com
fixup protocol dns maximum-length 512
fixup protocol ftp 21
fixup protocol h323 h225 1720
fixup protocol h323 ras 1718-1719
fixup protocol http 80
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
fixup protocol tftp 69
names
access-list acl_out permit icmp any any
access-list inside_access_in permit tcp any any
access-list inside_access_in permit icmp any any
pager lines 24
logging buffered debugging
mtu outside 1500
mtu inside 1500
ip address outside 68.110.131.245 255.255.255.224
ip address inside 192.168.0.254 255.255.255.0
ip audit info action alarm
ip audit attack action alarm
pdm location 192.168.0.0 255.255.255.0 inside
pdm history enable
arp timeout 14400
nat (inside) 0 0.0.0.0 0.0.0.0 0 0
access-group acl_out in interface outside
access-group inside_access_in in interface inside
route outside 0.0.0.0 0.0.0.0 68.110.131.225 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 sip-disconnect 0:02:00 sip-invite 0:03:00
timeout uauth 0:05:00 absolute
aaa-server TACACS+ protocol tacacs+
aaa-server TACACS+ max-failed-attempts 3
aaa-server TACACS+ deadtime 10
aaa-server RADIUS protocol radius
aaa-server RADIUS max-failed-attempts 3
aaa-server RADIUS deadtime 10
aaa-server LOCAL protocol local
http server enable
http 192.168.0.0 255.255.255.0 inside
no snmp-server location
no snmp-server contact
snmp-server community public
no snmp-server enable traps
floodguard enable
telnet 192.168.0.0 255.255.255.0 inside
telnet timeout 5
ssh timeout 5
console timeout 0
dhcpd address 192.168.0.53-192.168.0.75 inside
dhcpd dns 68.1.18.30 68.1.18.25
dhcpd lease 3600
dhcpd ping_timeout 750
dhcpd auto_config outside
dhcpd enable inside
terminal width 80
Cryptochecksum:7c6f4f6b1434cab485defc4e0fbd4837
: end
[OK]

Thanks in advance!

 
Take off the access lists off the interfaces, there just messing you up.
Then change this
nat (inside) 0 0.0.0.0 0.0.0.0 0 0
to
nat (inside) 1 0.0.0.0 0.0.0.0 0 0

and add
global (outside) 1 interface

Give that a try.


Brent
Systems Engineer / Consultant
CCNP, CCSP
 
WOW! That's AWESOME! Thanks for the fast response and fix to my problem! I wish I would have posted about 12 hours ago :eek:)

I have noticed your input in many of the posts I have been going through and am glad you found my post...Thanks again!

Dennis
 
No Problem. A lot of the people on this forum are great. If one person doesn't find the problem there is a really good chance someone else will step up.

Glad it worked.


Brent
Systems Engineer / Consultant
CCNP, CCSP
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top