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!

How do you get site-to-site VPN from inside and dmz1?

Status
Not open for further replies.

captaintuba

Technical User
Oct 28, 2003
18
0
0
GB
I've been able to get a site-to-site VPN set up OK.
Each inside network can see the other inside network.
(H.Q. to ISP)

We have just added a dmz at our HQ site for web site staging and testing.

Now I need to allow one of the servers on the DMZ to connect to the ISP network using the VPN.

Is it just a questions of:
1. adding another line on the crypto map match address ACL
2. adding another line to the NO-NAT acl
3. telling the ISP to allow in traffic from our DMZ subnet, or better still to restrict it to one node.

1.
current acl
Code:
access-list 90 permit ip ins.ide.net.0 255.255.255.0 host ISP.ISP.ISP.170

proposed extra acl
Code:
access-list 90 permit ip dmz.dmz.dmz.0 255.255.255.0 host ISP.ISP.ISP.170

Code:
crypto map ISP 20 match address 90

2. proposed extra line
Code:
access-list NO-NAT-ACL permit ip dmz.dmz.dmz.0 255.255.255.0 host ISP.ISP.ISP.170

Code:
nat (inside) 0 access-list NO-NAT-ACL

thanks C.T.
 
looks like you've figure it out yourself :) Since it is only a server on the DMZ I would use hots dmz.dmz.dmz.dmz on both ACLs instead. And don't forget to issue a clear xlate after you configure the two ACL entries.
 
Thanks Mut,[thumbsup2]
I've already got the dmz.dmz.dmz.dmz version of code ready to go. I have to do this at 06:00 tomorrow before the early shift get in :-(
Thanks for the
Code:
clear xlate
reminder too.
C.T.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top