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

Not passong packets?

Status
Not open for further replies.

progc

IS-IT--Management
Mar 28, 2005
81
US
For some reason I am not passing packets from inside to outside.
This is a pppoe authentication with ATT.
I DO get an IP and can ping from the outside interface with success but not the inside.

Here is my config:

ktlamr-pix(config)# sh conf
: Saved
: Written by enable_15 at 14:47:58.143 UTC Tue Jun 5 2007
PIX Version 6.3(1)
interface ethernet0 auto
interface ethernet1 100full
nameif ethernet0 outside security0
nameif ethernet1 inside security100
enable password 2341234213423 encrypted
passwd 23412341234 encrypted
hostname ktlamr-pix
domain-name asdjapsid
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
access-list outside_access_in permit icmp any any echo-reply
access-list outside_access_in permit icmp any any source-quench
access-list outside_access_in permit icmp any any unreachable
access-list outside_access_in permit icmp any any time-exceeded
pager lines 24
mtu outside 1500
mtu inside 1500
ip address outside pppoe setroute
ip address inside 10.10.60.1 255.255.255.0
ip audit info action alarm
ip audit attack action alarm
pdm history enable
arp timeout 14400
global (outside) 1 interface
nat (inside) 0 0.0.0.0 0.0.0.0 0 0
access-group outside_access_in in interface outside
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 0.0.0.0 0.0.0.0 inside
http 10.10.60.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 timeout 5
ssh timeout 5
console timeout 0
vpdn group pppoe_group request dialout pppoe
vpdn group pppoe_group localname #@$@#$@
vpdn group pppoe_group ppp authentication pap
vpdn username 32452345 password ********
dhcpd address 10.10.60.100-10.10.60.131 inside
dhcpd dns 208.67.222.222 208.67.220.220
dhcpd wins 10.10.60.1
dhcpd lease 3600
dhcpd ping_timeout 750
dhcpd auto_config outside
dhcpd enable inside
terminal width 80

Here is the ping from the ATT "remote ip address"

ktlamr-pix(config)# ping 71.141.91.254
71.141.91.254 response received -- 10ms
71.141.91.254 response received -- 0ms
71.141.91.254 response received -- 0ms
ktlamr-pix(config)# ping inside 71.141.91.254
71.141.91.254 NO response received -- 1000ms
71.141.91.254 NO response received -- 1000ms
71.141.91.254 NO response received -- 1000ms
ktlamr-pix(config)#

I'm sure I've just forgotten something stupid.


Thanks!
 
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

nat (interface) 0 is reserved for no natting of IPs.


Brent
Systems Engineer / Consultant
CCNP, CCSP
 
Brent,

I did that and it's still no good.

This is a pppoe connection and I'm not sure that the route is getting built properly.

Thanks!
 
You definitely needed those statements. Check the routing table to see if it is getting the IP address and route info.


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

Part and Inventory Search

Sponsor

Back
Top