Advertisement

10.01.2007 at 08:58AM PDT, ID: 22864029
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

6.8

How to allow Internet traffic back through end user tunnels on Cisco ASA

Asked by Sma11T0wnITGuy in Cisco PIX Firewall, Virtual Private Networking (VPN), IPSec Security Protocol

Tags: , , ,

Hello,

I'm installing a Cisco ASA 5510 and I'd like to disallow split tunneling (make all traffic go through the IPSec VPN tunnel when connected), but let traffic from the Internet get back to the clients from our network.  I'm having a tough time finding a procedure or sample config on Cisco's site or on here so far.  Could anyone offer some suggestions?  Here's my config:

show run
: Saved
:
ASA Version 7.2(3)
!
hostname firewall
domain-name lsisolutions.com
enable password [removed] encrypted
names
dns-guard
!
interface Ethernet0/0
 description Internet Interface
 speed 10
 duplex half
 nameif Outside
 security-level 0
 ip address 64.80.10.94 255.255.255.252
!
interface Ethernet0/1
 description Inside LAN Interface
 nameif Inside
 security-level 100
 ip address 192.168.1.1 255.255.255.0
!
interface Ethernet0/2
description DMZ Interface for future use.
 shutdown
 nameif DMZ
 security-level 5
 ip address 10.0.0.1 255.255.255.0
!
interface Ethernet0/3
 shutdown
 no nameif
 no security-level
 no ip address
!
interface Management0/0
 nameif management
 security-level 100
 ip address 192.168.101.1 255.255.255.0
 management-only
!
passwd [removed] encrypted
boot system disk0:/asa723-k8.bin
ftp mode passive
clock timezone EST -5
clock summer-time EDT recurring
dns server-group DefaultDNS
domain-name lsisolutions.com
access-list Inside_nat0_outbound extended permit ip 192.168.1.0 255.255.255.0 192.168.2.0 255.255.255.0
access-list Outside-Inward extended permit tcp any interface Outside eq smtp
pager lines 24
logging enable
logging timestamp
logging list vpnUser level notifications class vpnc
logging list vpnIPSec level notifications class vpn
logging list sysMsgs level notifications class sys
logging list sessionInfo level notifications class session
logging list idsMsgs level notifications class ids
logging buffer-size 16384
logging buffered sessionInfo
logging trap debugging
logging asdm informational
logging host Inside 192.168.1.7
logging permit-hostdown
logging class auth trap emergencies
mtu Outside 1500
mtu Inside 1500
mtu DMZ 1500
mtu management 1500
ip local pool LSI-VPN-IP-POOL 192.168.2.1-192.168.2.254 mask 255.255.255.0
ip verify reverse-path interface Outside
ip verify reverse-path interface Inside
ip verify reverse-path interface DMZ
icmp unreachable rate-limit 1 burst-size 1
asdm image disk0:/asdm-523.bin
no asdm history enable
arp timeout 14400
global (Outside) 1 interface
nat (Inside) 0 access-list Inside_nat0_outbound
nat (Inside) 1 0.0.0.0 0.0.0.0
nat (management) 0 access-list management_nat0_outbound
static (Inside,Outside) tcp interface smtp 192.168.1.6 smtp netmask 255.255.255.255
access-group Outside-Inward in interface Outside
route Outside 0.0.0.0 0.0.0.0 64.80.10.93 1
timeout xlate 3:00:00
timeout conn 1:00:00 half-closed 0:10:00 udp 0:02:00 icmp 0:00:02
timeout sunrpc 0:10:00 h323 0:05:00 h225 1:00:00 mgcp 0:05:00 mgcp-pat 0:05:00
timeout sip 0:30:00 sip_media 0:02:00 sip-invite 0:03:00 sip-disconnect 0:02:00
timeout uauth 0:05:00 absolute
aaa-server InternalAuth protocol radius
aaa-server InternalAuth host 192.168.1.7
 key [removed]
aaa authentication enable console LOCAL
aaa authentication serial console LOCAL
aaa authentication http console InternalAuth LOCAL
aaa authentication ssh console InternalAuth LOCAL
aaa authorization command LOCAL
aaa local authentication attempts max-fail 10
http server enable
http 192.168.1.0 255.255.255.0 Inside
http 192.168.101.0 255.255.255.0 management
no snmp-server location
no snmp-server contact
snmp-server enable traps snmp authentication linkup linkdown coldstart
crypto ipsec transform-set ESP-3DES-SHA esp-3des esp-sha-hmac
crypto dynamic-map Outside_dyn_map 40 set pfs
crypto dynamic-map Outside_dyn_map 40 set transform-set ESP-3DES-SHA
crypto map Outside_map 65535 ipsec-isakmp dynamic Outside_dyn_map
crypto map Outside_map interface Outside
crypto ca trustpoint lsiadc01
 revocation-check crl none
 enrollment terminal
 subject-name CN=firewall.lsisolutions.com,O=lsisolutions.com,C=US,St=New York,L=Victor
 crl configure
crypto isakmp identity hostname
crypto isakmp enable Outside
crypto isakmp policy 30
 authentication pre-share
 encryption 3des
 hash sha
 group 2
 lifetime 86400
crypto isakmp disconnect-notify
telnet timeout 5
ssh scopy enable
ssh 192.168.1.0 255.255.255.0 Inside
ssh timeout 60
ssh version 2
console timeout 0
management-access Inside
!
class-map inspection_default
 match default-inspection-traffic
!
!
policy-map type inspect dns migrated_dns_map_1
 parameters
  message-length maximum 512
policy-map global_policy
 class inspection_default
  inspect dns migrated_dns_map_1
  inspect ftp
  inspect h323 h225
  inspect h323 ras
  inspect rsh
  inspect rtsp
  inspect esmtp
  inspect sqlnet
  inspect skinny
  inspect sunrpc
  inspect xdmcp
  inspect sip
  inspect netbios
  inspect tftp
  inspect http
!
service-policy global_policy global
ntp server 128.59.59.177 source Outside prefer
ntp server 66.250.45.2 source Outside
group-policy LSI-VPN1 internal
group-policy LSI-VPN1 attributes
 wins-server value 192.168.1.7
 dns-server value 192.168.1.7 192.168.1.6
 vpn-tunnel-protocol IPSec
 default-domain value lsisolutions.com
username tleroy password scPelfzzu4YpdnwV encrypted privilege 15
tunnel-group LSI-VPN1 type ipsec-ra
tunnel-group LSI-VPN1 general-attributes
 address-pool LSI-VPN-IP-POOL
 authentication-server-group InternalAuth
 default-group-policy LSI-VPN1
tunnel-group LSI-VPN1 ipsec-attributes
 pre-shared-key *
privilege cmd level 3 mode exec command perfmon
privilege cmd level 3 mode exec command ping
privilege cmd level 3 mode exec command who
privilege cmd level 3 mode exec command logging
privilege cmd level 3 mode exec command failover
privilege cmd level 3 mode exec command vpn-sessiondb
privilege show level 5 mode exec command running-config
privilege show level 3 mode exec command reload
privilege show level 3 mode exec command mode
privilege show level 3 mode exec command firewall
privilege show level 3 mode exec command interface
privilege show level 3 mode exec command clock
privilege show level 3 mode exec command dns-hosts
privilege show level 3 mode exec command access-list
privilege show level 3 mode exec command logging
privilege show level 3 mode exec command ip
privilege show level 3 mode exec command failover
privilege show level 3 mode exec command asdm
privilege show level 3 mode exec command arp
privilege show level 3 mode exec command route
privilege show level 3 mode exec command ospf
privilege show level 3 mode exec command aaa-server
privilege show level 3 mode exec command aaa
privilege show level 3 mode exec command crypto
privilege show level 3 mode exec command vpn-sessiondb
privilege show level 3 mode exec command ssh
privilege show level 3 mode exec command dhcpd
privilege show level 3 mode exec command vpn
privilege show level 3 mode exec command blocks
privilege show level 3 mode exec command uauth
privilege show level 3 mode configure command interface
privilege show level 3 mode configure command clock
privilege show level 3 mode configure command access-list
privilege show level 3 mode configure command logging
privilege show level 3 mode configure command ip
privilege show level 3 mode configure command failover
privilege show level 5 mode configure command asdm
privilege show level 3 mode configure command arp
privilege show level 3 mode configure command route
privilege show level 3 mode configure command aaa-server
privilege show level 3 mode configure command aaa
privilege show level 3 mode configure command crypto
privilege show level 3 mode configure command vpn-sessiondb
privilege show level 3 mode configure command ssh
privilege show level 3 mode configure command dhcpd
privilege show level 5 mode configure command privilege
privilege clear level 3 mode exec command dns-hosts
privilege clear level 3 mode exec command logging
privilege clear level 3 mode exec command arp
privilege clear level 3 mode exec command aaa-server
privilege clear level 3 mode exec command crypto
privilege cmd level 3 mode configure command failover
privilege clear level 3 mode configure command logging
privilege clear level 3 mode configure command arp
privilege clear level 3 mode configure command crypto
privilege clear level 3 mode configure command aaa-server
prompt hostname context
Cryptochecksum:d162474dc3de4349ec0f69cf0bb3efa1
: end
firewall#    

The reason I want to set it up this way is that I have a 192.168.1.0/24 LAN which conflicts with many home users' default networks.  I have to walk them through fixing their home networks until I can get us onto a new scheme which requires changing all of my static IP's.  Please share your thoughts on whether disallowing split tunneling but allowing Interent traffic back to the user via the IPSec tunnel will work in resolving the 192.168.1.0 subnet issue.  It also seems more secure than split tunneling.

Thanks!Start Free Trial
[+][-]10.01.2007 at 09:21AM PDT, ID: 19991784

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]10.01.2007 at 09:29AM PDT, ID: 19991841

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]10.01.2007 at 11:05AM PDT, ID: 19992595

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: Cisco PIX Firewall, Virtual Private Networking (VPN), IPSec Security Protocol
Tags: Cisco, ASA, 5510, Version 7.2(3)
Sign Up Now!
Solution Provided By: theeter
Participating Experts: 2
Solution Grade: A
 
 
[+][-]10.01.2007 at 02:20PM PDT, ID: 19994321

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]10.02.2007 at 06:09AM PDT, ID: 19998174

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]10.02.2007 at 07:03AM PDT, ID: 19998641

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]10.02.2007 at 07:05AM PDT, ID: 19998662

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]10.02.2007 at 07:17AM PDT, ID: 19998760

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]10.02.2007 at 07:32AM PDT, ID: 19998901

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]10.03.2007 at 06:01AM PDT, ID: 20006068

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20080716-EE-VQP-32 / EE_QW_2_20070628