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

Inside cannot get out...

Status
Not open for further replies.

blueadept

IS-IT--Management
Sep 16, 2003
5
US
Hi,
I work for a non-profit that provides mental health services for troubled children. I am currently trying to install a pix
515e in our network. This is how it is currently hooked up:
DSL Modem -> Pix Eth0, Pix Eth1(serving DHCP) -> LAN. I have had experience with programming Cisco 2500 routers, but that was nearly 4 years ago... so I'm basically a newb.. any help will be greatly appreciated! Here's our config:

campusFirewall# show run
: Saved
:
PIX Version 6.3(3)
interface ethernet0 auto
interface ethernet1 auto
interface ethernet2 auto shutdown
nameif ethernet0 outside security0
nameif ethernet1 inside security100
nameif ethernet2 intf2 security4
enable password ######### encrypted
passwd ######### encrypted
hostname campusFirewall
domain-name lincoln.org
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
pager lines 24
logging on
logging buffered debugging
mtu outside 1500
mtu inside 1500
mtu intf2 1500
ip address outside 64.xxx.xxx.186 255.255.255.248
ip address inside 10.10.10.1 255.0.0.0
no ip address intf2
ip audit info action alarm
ip audit attack action alarm
pdm location 192.168.1.0 255.255.255.0 inside
pdm location 10.0.0.0 255.0.0.0 outside
pdm location 0.0.0.0 255.0.0.0 outside
pdm location 10.10.10.10 255.255.255.255 inside
pdm location 10.10.10.0 255.255.255.0 inside
pdm logging warnings 100
pdm history enable
arp timeout 14400
nat (inside) 1 10.10.10.0 255.255.255.0 0 0
nat (inside) 1 0.0.0.0 0.0.0.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.0.0.0 255.0.0.0 outside
http 10.0.0.0 255.0.0.0 inside
no snmp-server location
no snmp-server contact
snmp-server community public
no snmp-server enable traps
floodguard enable
telnet 10.0.0.0 255.0.0.0 inside
telnet timeout 5
ssh timeout 5
console timeout 0
dhcpd address 10.10.10.101-10.10.10.253 inside
dhcpd dns 206.xxx.xxx.12 206.xxx.xxx.12
dhcpd lease 3600
dhcpd ping_timeout 750
dhcpd enable inside
terminal width 80
Cryptochecksum:#########
: end
campusFirewall#
 
I'm a newb also, but I think you need a route statment to get the inside traffic to the outside

route outside 10.10.10.1 255.0.0.0 64.xxx.xxx.186 1

HTH
 
ajinc is correct.

You need a route statement to tell the PIX where to send the traffic to.

route outside 0.0.0.0 0.0.0.0 <router IP Address> 1

the double 0.0.0.0 means that the PIX should route ALL traffic to the router.

Computer/Network Technician
CCNA
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top