Advertisement

05.21.2008 at 10:31AM PDT, ID: 23421776
[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!

9.1

Cisco VPN working, but needs internet access and hairpinning

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

Tags: , ,

I've been working on setting up a VPN for the laptop users at our company. The VPN works, except for 2 things:

1) Users need to be able to access the internet. I don't want to enable split-tunneling; I want them to access the internet from our connection, not their own.

2) We have a network set up for our conference rooms (Ethernet0/2, dmz, 10.10.10.0/24). I'd like users to be able to VPN back into our "inside" network from this subnet.

I've been searching the internet for a few days and also picking the brain of a Cisco guy at one of our consulting firms, but can't come up with anything. Anyone have a working config of this that they can share?Start Free Trial
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:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
interface Ethernet0/0
 nameif outside
 security-level 0
 ip address [hidden]
 
interface Ethernet0/1
 nameif inside
 security-level 100
 ip address 192.168.0.1 255.255.248.0
 
interface Ethernet0/2
 nameif dmz
 security-level 50
 ip address 10.10.10.1 255.255.255.0
 
same-security-traffic permit inter-interface
same-security-traffic permit intra-interface
access-list outside_20_cryptomap extended permit ip 192.168.0.0 255.255.248.0 192.168.10.0 255.255.255.0
access-list inside_nat0_outbound extended permit ip 192.168.0.0 255.255.248.0 192.168.10.0 255.255.255.0
access-list inside_nat0_outbound extended permit ip any 10.0.0.4 255.255.255.254
access-list inside_nat0_outbound extended permit ip 192.168.0.0 255.255.248.0 192.168.0.0 255.255.248.0
 
icmp unreachable rate-limit 1 burst-size 1
global (outside) 1 interface
nat (inside) 0 access-list inside_nat0_outbound
nat (inside) 1 0.0.0.0 0.0.0.0
nat (dmz) 1 0.0.0.0 0.0.0.0
access-group inbound in interface outside
route outside 0.0.0.0 0.0.0.0 [hidden] 255
 
aaa-server DOMAIN protocol radius
aaa-server DOMAIN host 192.168.1.64
 timeout 5
 key 12345678911234567892123456789312
 radius-common-pw 12345678911234567892123456789312
 
group-policy DefaultRAGroup internal
group-policy DefaultRAGroup attributes
 wins-server value 192.168.1.61 192.168.1.62
 dns-server value 192.168.1.61 192.168.1.62
 vpn-tunnel-protocol l2tp-ipsec
 default-domain value DOMAIN
 
group-policy Laptops internal
group-policy Laptops attributes
 wins-server value 192.168.1.61 192.168.1.62
 dns-server value 192.168.1.61 192.168.1.62
 vpn-tunnel-protocol IPSec
 default-domain value DOMAIN
 
crypto ipsec transform-set ESP-AES-256-SHA esp-aes-256 esp-sha-hmac
crypto ipsec transform-set ESP-3DES-SHA esp-3des esp-sha-hmac
crypto ipsec transform-set TRANS_ESP_3DES_SHA esp-3des esp-sha-hmac
crypto ipsec transform-set TRANS_ESP_3DES_SHA mode transport
 
crypto dynamic-map outside_dyn_map 20 set pfs
crypto dynamic-map outside_dyn_map 20 set transform-set ESP-3DES-SHA
crypto dynamic-map outside_dyn_map 40 set pfs
crypto dynamic-map outside_dyn_map 40 set transform-set TRANS_ESP_3DES_SHA
 
crypto map outside_map 20 match address outside_20_cryptomap
crypto map outside_map 20 set pfs
crypto map outside_map 20 set peer [hidden]
crypto map outside_map 20 set transform-set ESP-AES-256-SHA
crypto map outside_map 65535 ipsec-isakmp dynamic outside_dyn_map
crypto map outside_map interface outside
 
crypto isakmp enable outside
crypto isakmp policy 10
 authentication pre-share
 encryption aes-256
 hash sha
 group 5
 lifetime 86400
crypto isakmp policy 30
 authentication crack
 encryption 3des
 hash sha
 group 2
 lifetime 86400
crypto isakmp policy 50
 authentication pre-share
 encryption 3des
 hash sha
 group 2
 lifetime 86400
crypto isakmp nat-traversal  3600
 
tunnel-group DefaultRAGroup general-attributes
 authentication-server-group DOMAIN
 dhcp-server 192.168.1.61
tunnel-group DefaultRAGroup ipsec-attributes
 pre-shared-key *
tunnel-group DefaultRAGroup ppp-attributes
 no authentication chap
 no authentication ms-chap-v1
 authentication ms-chap-v2
 
tunnel-group [hidden] type ipsec-l2l
tunnel-group [hidden] ipsec-attributes
 pre-shared-key *
 
tunnel-group [hidden] type ipsec-l2l
tunnel-group [hidden] ipsec-attributes
 pre-shared-key *
 
tunnel-group Laptops type ipsec-ra
tunnel-group Laptops general-attributes
 authentication-server-group DOMAIN
 default-group-policy Laptops
 dhcp-server 192.168.1.61
tunnel-group Laptops ipsec-attributes
 pre-shared-key *
 
no vpn-addr-assign aaa
no vpn-addr-assign local
[+][-]05.21.2008 at 11:18AM PDT, ID: 21617579

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 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]05.21.2008 at 01:31PM PDT, ID: 21618795

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 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]05.21.2008 at 02:00PM PDT, ID: 21619007

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 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]05.21.2008 at 03:35PM PDT, ID: 21619599

View this solution now by starting your 30-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: Virtual Private Networking (VPN), IPSec Security Protocol, Cisco PIX Firewall
Tags: Cisco, ASA, 5510
Sign Up Now!
Solution Provided By: mapilch
Participating Experts: 2
Solution Grade: A
 
 
[+][-]05.23.2008 at 06:48PM PDT, ID: 21637295

Assisted solutions are selected by the member who asked the question as a comment that contributed to their question's solution.

Start your 30-day free trial to view this Assisted Solution or ask the Experts your question.

 
[+][-]06.13.2008 at 07:35AM PDT, ID: 21779312

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 30-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20081112-EE-VQP-44 / EE_QW_2_20070628