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

VPN and access-list.

Status
Not open for further replies.

haneo

Programmer
Joined
Jan 2, 2002
Messages
274
Location
CA
I must configure a VPN tunnel between a cisco router (ios vpn) and netscreen firewall,
For the Cisco here is the configuration:

I am confused about the access-list in my example do I must use private network rage for source and destination or the public address of the two firewalls. Is my access-list right?



10.12.0.1/16--|CISCO_Router|--172.16.0.1/16--| Internet |--|172.17.0.0/16|--Netscreen--10.11.0.1/16


crypto isakmp policy 11
hash md5
authentication pre-share
group 2
crypto isakmp key [shared key] address 172.17.0.1
!
!
crypto ipsec transform-set VPN esp-des esp-sha-hmac
!
crypto map any_name1 11 ipsec-isakmp
set peer 172.17.0.1
set transform-set any_name
match address 120

int f0
crypto map VPN

access-list 120 permit ip 10.12.0.1 255.255.0.0 10.11.0.0 255.255.0.0


Must i use the ip of the external interface of the two firewalls?

CCNA
 
One point I see straight away is the ACL is incorrect,

it should be
access-list 120 permit ip 10.12.0.0 0.0.255.255 10.11.0.0 0.0.255.255

This list will allow any packets in 10.12.0.0/16 to be encrypted when they are sent to 10.11.0.0/16.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top