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

PIX 520 - Second inbound subnet and IPSec VPN

Status
Not open for further replies.

ProXXio

Technical User
Jan 13, 2011
4
0
0
NL
With some great help of unclerico on this forum I have succesfully running a Cisco PIX 520 where I can connect to with the Cisco VPN Client. Now I like to setup a new internal subnet where some slected user can connect to. The new internal subnet is in an other range than I allready use.

Do somebody know how to setup this?

This is my configuration now:

Code:
PIX Version 6.3(5)145
interface ethernet0 auto
interface ethernet1 auto
nameif ethernet0 outside security0
nameif ethernet1 inside security100
hostname pix
domain-name domain.net
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 http 2222
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 smtp 2525
fixup protocol sqlnet 1521
fixup protocol tftp 69
names
object-group network public
  network-object 0.0.0.0 0.0.0.0
access-list myacl_in permit icmp any any
access-list myacl_in permit ip object-group public host x.x.x.x
access-list myacl_in permit ip object-group public host x.x.x.x
access-list VPNGate_splitTunnelAcl permit ip interface inside any
access-list VPNGate_splitTunnelAcl permit ip 10.15.11.0 255.255.255.0 any
access-list VPNGate_splitTunnelAcl permit ip any any
access-list inside_outbound_nat0_acl permit ip 10.15.10.0 255.255.255.0 10.15.11.0 255.255.255.0
access-list inside_outbound_nat0_acl permit ip any 10.15.11.0 255.255.255.0
access-list outside_cryptomap_dyn_20 permit ip any 10.15.11.0 255.255.255.0
pager lines 24
logging console warnings
logging monitor warnings
logging buffered warnings
mtu outside 1500
mtu inside 1500
mtu intf2 1500
mtu intf3 1500
mtu intf4 1500
mtu intf5 1500
ip address outside x.x.x.x 255.255.255.224
ip address inside 10.15.10.1 255.255.255.0
no ip address intf2
no ip address intf3
no ip address intf4
no ip address intf5
ip audit info action alarm
ip audit attack action alarm
ip local pool VPNPool 10.15.11.1-10.15.11.254
no failover
failover timeout 0:00:00
failover poll 15
no failover ip address outside
no failover ip address inside
no failover ip address intf2
no failover ip address intf3
no failover ip address intf4
no failover ip address intf5
pdm history enable
arp timeout 14400
global (outside) 1 interface
nat (inside) 0 access-list inside_outbound_nat0_acl
nat (inside) 1 10.15.10.0 255.255.255.0 0 0
static (inside,outside) x.x.x.x 10.15.10.134 netmask 255.255.255.255 0 0
static (inside,outside) x.x.x.x 10.15.10.158 netmask 255.255.255.255 0 0
access-group myacl_in in interface outside
route outside 0.0.0.0 0.0.0.0 x.x.x.x 1
timeout xlate 0:30: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 0.0.0.0 0.0.0.0 outside
no snmp-server location
no snmp-server contact
snmp-server community public
no snmp-server enable traps
floodguard enable
sysopt connection permit-ipsec
crypto ipsec transform-set ESP-3DES-MD5 esp-3des esp-md5-hmac
crypto dynamic-map outside_dyn_map 20 match address outside_cryptomap_dyn_20
crypto dynamic-map outside_dyn_map 20 set transform-set ESP-3DES-MD5
crypto map outside_map 65535 ipsec-isakmp dynamic outside_dyn_map
crypto map outside_map client authentication LOCAL
crypto map outside_map interface outside
isakmp enable outside
isakmp policy 20 authentication pre-share
isakmp policy 20 encryption 3des
isakmp policy 20 hash md5
isakmp policy 20 group 2
isakmp policy 20 lifetime 86400
vpngroup VPNGate address-pool VPNPool
vpngroup VPNGate dns-server 8.8.8.8
vpngroup VPNGate default-domain domain.net
vpngroup VPNGate split-tunnel VPNGate_splitTunnelAcl
vpngroup VPNGate idle-time 1800
vpngroup VPNGate password ********
telnet timeout 5
ssh 0.0.0.0 0.0.0.0 outside
ssh timeout 5
console timeout 0
username xxxxx password xxxxx encrypted privilege 2
username xxxxx password xxxxx encrypted privilege 2
terminal width 80
Cryptochecksum:f4c9f2877915efd975d7abe181356d93

On this moment we use as internal range 10.15.10.0/24 and VPN users will get a IP from the 10.15.11.0/24 range.

For the user it's wishful to use 10.15.12.0/28 as internal range with 10.15.12.1 as gateway and 10.15.12.15 as broadcast. It need to be possible that the user can reach this range with an IPSec VPN account from external locations.

Do somebody know how I can create this situation?

Any help on this subject is much appreciated. Thanks in advance!!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top