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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

config on 501

Status
Not open for further replies.

geeksquad

ISP
Dec 13, 2006
13
0
0
CA
Hi guys

Im trying to configure a pix 501 to allow browsing out for the time beeing .

here's my config:
PIX Version 6.3(1)
interface ethernet0 auto
interface ethernet1 100full
nameif ethernet0 outside security0
nameif ethernet1 inside security100
enable password 8Ry2YjIyt7RRXU24 encrypted
passwd 2KFQnbNIdI.2KYOU encrypted
hostname pix
domain-name home.intra
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 dhcp setroute
ip address inside 10.10.10.1 255.255.0.0
ip audit info action alarm
ip audit attack action alarm
pdm location 10.10.10.2 255.255.255.255 inside
pdm location 10.10.10.0 255.255.255.0 inside
pdm logging informational 100
pdm history enable
arp timeout 14400
global (outside) 1 interface
nat (inside) 1 10.10.10.0 255.255.255.0 0 0
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 10.10.10.2 255.255.255.255 inside
no snmp-server location
no snmp-server contact
snmp-server community public
no snmp-server enable traps
floodguard enable
telnet timeout 5
ssh timeout 5
console timeout 0
terminal width 80
Cryptochecksum:b104e979703ab4c2d64bd997e0e306dd
: end

the pix is behind a netgear(192.168.1.1 inside/ 82.xx.xx.xx outside /dhcp enabled) which connects to the internet.the whole purpose is to replace the netgear and the way i see it as soon as i can browse in the current config all i have to do is just swap the cable and take the netgear out

i can ping pix inside interface(10.10.10.1) but not the outside interface(192.168.1.7)...i reckon has to do with access lists?

Any help much appreciated
 
you will need default route fon internet connection
do it as following


route outside 0 0 192.168.1.7 (next hope router)

and about ping the netgear u have to make an access-list as following
access-list 102 permit icmp any any
access-group 102 in interface outside


hope its working with you

moustafa m kaid
ccna
commium group
iraq
 
The setroute statement takes care of the routing so you dont need to add a route.

Inbound ICMP through the PIX is denied by default; outbound ICMP is permitted, but the incoming reply is denied by default. You need to configure access-list to get that to work. But i am not sure you can ping your own interface even though you permit icmp traffic

 
now it works ...i had to add the dns server entries on the local pc.

Thanks a lot guys
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top