Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   Cisco (http://www.velocityreviews.com/forums/f27-cisco.html)
-   -   Routing / Access List PIX issue (http://www.velocityreviews.com/forums/t549986-routing-access-list-pix-issue.html)

paul_tomlin@hotmail.com 11-07-2007 07:41 AM

Routing / Access List PIX issue
 
got a nice complicated routing / access list problem , or at least i
think it is!

we've got an MPLS circuit which is routed from our main internal
network through gateway 10.100.18.254, all MPLS sites can see each
other, the problem comes when i try to access them remotely using the
vpn, anything on the 10-100.18.0 network with the PIX as the default
gateway i can access remotely, anything with 10.100.18.254 and the
remote sites, cannot be pinged remotely, i'm not sure if this is a
routing issue, i've added in route statements for the remote networks,
but can't obviously add one for the local network, maybe someone could
advise?


PIX Version 6.3(5)
interface ethernet0 auto
interface ethernet1 auto
nameif ethernet0 outside security0
nameif ethernet1 inside security100
hostname pixfirewall
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
no fixup protocol smtp 25
fixup protocol sqlnet 1521
fixup protocol tftp 69
names
access-list 100 permit ip 10.100.18.0 255.255.255.0 192.168.100.0
255.255.255.0
access-list 100 permit ip 10.100.18.0 255.255.255.0 10.100.20.0
255.255.255.0
access-list 100 permit ip 10.100.18.0 255.255.255.0 10.100.34.0
255.255.255.0
access-list 100 permit ip 10.100.18.0 255.255.255.0 10.100.50.0
255.255.255.0
pager lines 24
mtu outside 1500
mtu inside 1500
ip address outside xxx.xxx.xxx.131 255.255.255.240
ip address inside 10.100.18.252 255.255.255.0
ip audit info action alarm
ip audit attack action alarm
ip local pool vpn 192.168.100.1-192.168.100.25
no failover
failover timeout 0:00:00
failover poll 15
no failover ip address outside
no failover ip address inside
pdm location 192.168.100.0 255.255.255.0 outside
pdm logging informational 100
pdm history enable
arp timeout 14400
global (outside) 1 interface
nat (inside) 0 access-list 100
nat (inside) 1 0.0.0.0 0.0.0.0 0 0
route outside 0.0.0.0 0.0.0.0 xxx.xxx.xxx.129 1
route inside 10.100.20.0 255.255.255.0 10.100.18.254 1
route inside 10.100.34.0 255.255.255.0 10.100.18.254 1
route inside 10.100.50.0 255.255.255.0 10.100.18.254 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 10.100.18.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
sysopt connection permit-ipsec
sysopt connection permit-pptp
isakmp nat-traversal 20
telnet 0.0.0.0 0.0.0.0 inside
telnet timeout 5
ssh 0.0.0.0 0.0.0.0 outside
ssh timeout 5
console timeout 0
vpdn group 1 accept dialin pptp
vpdn group 1 ppp authentication pap
vpdn group 1 ppp authentication chap
vpdn group 1 ppp authentication mschap
vpdn group 1 ppp encryption mppe 40
vpdn group 1 client configuration address local vpn
vpdn group 1 pptp echo 60
vpdn group 1 client authentication local
vpdn username administrator password ********
terminal width 80


Merv 11-07-2007 10:01 AM

Re: Routing / Access List PIX issue
 

The PIX knows how to reach anything on 10.100.18.0/24 because it is a
directly connected network (i.e it is configured on the PIX's inside
interface)



The following route statements indicate that only 3 network 10 subnets
will be routed to 10.100.18.254 and anything else will be routed using
the default route (i.e it will be forward to the "Internet" where it
will be dropped

route outside 0.0.0.0 0.0.0.0 xxx.xxx.xxx.129 1
route inside 10.100.20.0 255.255.255.0 10.100.18.254 1
route inside 10.100.34.0 255.255.255.0 10.100.18.254 1
route inside 10.100.50.0 255.255.255.0 10.100.18.254 1


Perhaps a route for all of network 10 will suffice:

route outside 0.0.0.0 0.0.0.0 xxx.xxx.xxx.129 1
route inside 10.0.0.0 255.0.0.0 10.100.18.254 1







mcaissie 11-07-2007 04:58 PM

Re: Routing / Access List PIX issue
 
You need to no nat all traffic between the remote users and the mpls
subnets.
So you would have to add the following lines in your acl 100

access-list 100 permit ip 10.100.20.0 255.255.255.0 192.168.100.0
255.255.255.0
access-list 100 permit ip 10.100.34.0 255.255.255.0 192.168.100.0
255.255.255.0
access-list 100 permit ip 10.100.50.0 255.255.255.0 192.168.100.0
255.255.255.0

Also the mpls sites must have a route for 192.168.100.0 pointing at your
inside PIX.


<paul_tomlin@hotmail.com> wrote in message
news:1194421260.326810.131350@22g2000hsm.googlegro ups.com...
> got a nice complicated routing / access list problem , or at least i
> think it is!
>
> we've got an MPLS circuit which is routed from our main internal
> network through gateway 10.100.18.254, all MPLS sites can see each
> other, the problem comes when i try to access them remotely using the
> vpn, anything on the 10-100.18.0 network with the PIX as the default
> gateway i can access remotely, anything with 10.100.18.254 and the
> remote sites, cannot be pinged remotely, i'm not sure if this is a
> routing issue, i've added in route statements for the remote networks,
> but can't obviously add one for the local network, maybe someone could
> advise?
>
>
> PIX Version 6.3(5)
> interface ethernet0 auto
> interface ethernet1 auto
> nameif ethernet0 outside security0
> nameif ethernet1 inside security100
> hostname pixfirewall
> 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
> no fixup protocol smtp 25
> fixup protocol sqlnet 1521
> fixup protocol tftp 69
> names
> access-list 100 permit ip 10.100.18.0 255.255.255.0 192.168.100.0
> 255.255.255.0
> access-list 100 permit ip 10.100.18.0 255.255.255.0 10.100.20.0
> 255.255.255.0
> access-list 100 permit ip 10.100.18.0 255.255.255.0 10.100.34.0
> 255.255.255.0
> access-list 100 permit ip 10.100.18.0 255.255.255.0 10.100.50.0
> 255.255.255.0
> pager lines 24
> mtu outside 1500
> mtu inside 1500
> ip address outside xxx.xxx.xxx.131 255.255.255.240
> ip address inside 10.100.18.252 255.255.255.0
> ip audit info action alarm
> ip audit attack action alarm
> ip local pool vpn 192.168.100.1-192.168.100.25
> no failover
> failover timeout 0:00:00
> failover poll 15
> no failover ip address outside
> no failover ip address inside
> pdm location 192.168.100.0 255.255.255.0 outside
> pdm logging informational 100
> pdm history enable
> arp timeout 14400
> global (outside) 1 interface
> nat (inside) 0 access-list 100
> nat (inside) 1 0.0.0.0 0.0.0.0 0 0
> route outside 0.0.0.0 0.0.0.0 xxx.xxx.xxx.129 1
> route inside 10.100.20.0 255.255.255.0 10.100.18.254 1
> route inside 10.100.34.0 255.255.255.0 10.100.18.254 1
> route inside 10.100.50.0 255.255.255.0 10.100.18.254 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 10.100.18.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
> sysopt connection permit-ipsec
> sysopt connection permit-pptp
> isakmp nat-traversal 20
> telnet 0.0.0.0 0.0.0.0 inside
> telnet timeout 5
> ssh 0.0.0.0 0.0.0.0 outside
> ssh timeout 5
> console timeout 0
> vpdn group 1 accept dialin pptp
> vpdn group 1 ppp authentication pap
> vpdn group 1 ppp authentication chap
> vpdn group 1 ppp authentication mschap
> vpdn group 1 ppp encryption mppe 40
> vpdn group 1 client configuration address local vpn
> vpdn group 1 pptp echo 60
> vpdn group 1 client authentication local
> vpdn username administrator password ********
> terminal width 80
>




paul_tomlin@hotmail.com 11-09-2007 07:40 AM

Re: Routing / Access List PIX issue
 
Thank you both the No-Nat was the fix

thanks again for all your support

Paul

On 7 Nov, 16:58, "mcaissie" <mcais...@nospam.sympatico.ca> wrote:
> You need to no nat all traffic between the remote users and the mpls
> subnets.
> So you would have to add the following lines in your acl 100
>
> access-list 100 permit ip 10.100.20.0 255.255.255.0 192.168.100.0
> 255.255.255.0
> access-list 100 permit ip 10.100.34.0 255.255.255.0 192.168.100.0
> 255.255.255.0
> access-list 100 permit ip 10.100.50.0 255.255.255.0 192.168.100.0
> 255.255.255.0
>
> Also the mpls sites must have a route for 192.168.100.0 pointing at your
> inside PIX.
>
> <paul_tom...@hotmail.com> wrote in message
>
> news:1194421260.326810.131350@22g2000hsm.googlegro ups.com...
>
>
>
> > got a nice complicated routing / access list problem , or at least i
> > think it is!

>
> > we've got an MPLS circuit which is routed from our main internal
> > network through gateway 10.100.18.254, all MPLS sites can see each
> > other, the problem comes when i try to access them remotely using the
> > vpn, anything on the 10-100.18.0 network with the PIX as the default
> > gateway i can access remotely, anything with 10.100.18.254 and the
> > remote sites, cannot be pinged remotely, i'm not sure if this is a
> > routing issue, i've added in route statements for the remote networks,
> > but can't obviously add one for the local network, maybe someone could
> > advise?

>
> > PIX Version 6.3(5)
> > interface ethernet0 auto
> > interface ethernet1 auto
> > nameif ethernet0 outside security0
> > nameif ethernet1 inside security100
> > hostname pixfirewall
> > 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
> > no fixup protocol smtp 25
> > fixup protocol sqlnet 1521
> > fixup protocol tftp 69
> > names
> > access-list 100 permit ip 10.100.18.0 255.255.255.0 192.168.100.0
> > 255.255.255.0
> > access-list 100 permit ip 10.100.18.0 255.255.255.0 10.100.20.0
> > 255.255.255.0
> > access-list 100 permit ip 10.100.18.0 255.255.255.0 10.100.34.0
> > 255.255.255.0
> > access-list 100 permit ip 10.100.18.0 255.255.255.0 10.100.50.0
> > 255.255.255.0
> > pager lines 24
> > mtu outside 1500
> > mtu inside 1500
> > ip address outside xxx.xxx.xxx.131 255.255.255.240
> > ip address inside 10.100.18.252 255.255.255.0
> > ip audit info action alarm
> > ip audit attack action alarm
> > ip local pool vpn 192.168.100.1-192.168.100.25
> > no failover
> > failover timeout 0:00:00
> > failover poll 15
> > no failover ip address outside
> > no failover ip address inside
> > pdm location 192.168.100.0 255.255.255.0 outside
> > pdm logging informational 100
> > pdm history enable
> > arp timeout 14400
> > global (outside) 1 interface
> > nat (inside) 0 access-list 100
> > nat (inside) 1 0.0.0.0 0.0.0.0 0 0
> > route outside 0.0.0.0 0.0.0.0 xxx.xxx.xxx.129 1
> > route inside 10.100.20.0 255.255.255.0 10.100.18.254 1
> > route inside 10.100.34.0 255.255.255.0 10.100.18.254 1
> > route inside 10.100.50.0 255.255.255.0 10.100.18.254 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 10.100.18.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
> > sysopt connection permit-ipsec
> > sysopt connection permit-pptp
> > isakmp nat-traversal 20
> > telnet 0.0.0.0 0.0.0.0 inside
> > telnet timeout 5
> > ssh 0.0.0.0 0.0.0.0 outside
> > ssh timeout 5
> > console timeout 0
> > vpdn group 1 accept dialin pptp
> > vpdn group 1 ppp authentication pap
> > vpdn group 1 ppp authentication chap
> > vpdn group 1 ppp authentication mschap
> > vpdn group 1 ppp encryption mppe 40
> > vpdn group 1 client configuration address local vpn
> > vpdn group 1 pptp echo 60
> > vpdn group 1 client authentication local
> > vpdn username administrator password ********
> > terminal width 80- Hide quoted text -

>
> - Show quoted text -





All times are GMT. The time now is 07:15 PM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57