10.2.1.9 Lab - Configure A Site-to-Site IPsec VPN Using ISR CLI and ASA 5506-X ASDM - Instructor
10.2.1.9 Lab - Configure A Site-to-Site IPsec VPN Using ISR CLI and ASA 5506-X ASDM - Instructor
Lab - Configure a Site-to-Site IPsec VPN Using ISR CLI and ASA
5506-X ASDM (Instructor Version)
Instructor Note: Red font color or gray highlights indicate text that appears in the instructor copy only.
Topology
© 2015 - 2023 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 1 of 29 www.netacad.com
Lab - Configure a Site-to-Site IPsec VPN Using ISR CLI and ASA 5506-X ASDM
IP Addressing Table
Objectives
Part 1: Configure Basic Device Settings
Cable the network and clear previous device settings, as shown in the topology.
Configure basic settings for routers.
Configure PC host IP settings.
Verify connectivity.
Save the basic running configuration for each router and switch.
Part 2: Access the ASA Console and ASDM
Access the ASA console.
Clear the previous ASA configuration settings.
Bypass Setup mode.
Use the CLI command script to configure the ASA.
Verify HTTP ASDM access.
Part 3: Configure the ISR as a Site-to-Site IPsec VPN Endpoint Using the CLI
Configure basic VPN connection information settings.
Specify IKE policy parameters.
Configure a transform set.
Specify traffic to protect.
Review the summary of the configuration.
Review the site-to-site VPN tunnel configuration.
© 2015 - 2023 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 2 of 29 www.netacad.com
Lab - Configure a Site-to-Site IPsec VPN Using ISR CLI and ASA 5506-X ASDM
Part 4: Configure the ASA as a Site-to-Site IPsec VPN Endpoint Using ASDM
Access ASDM.
Review the ASDM Home screen.
Start the VPN wizard.
Configure peer device identification.
Specify the traffic to protect.
Configure authentication.
Configure miscellaneous settings.
Review the configuration summary and deliver the commands to the ASA.
Verify the ASDM VPN connection profile.
Test the VPN configuration from R3.
Use ASDM monitoring to verify the tunnel.
Background/Scenario
In addition to acting as a remote access VPN concentrator, the ASA can provide site-to-site IPsec VPN
tunneling. The tunnel can be configured between two ASAs or between an ASA and another IPsec VPN-
capable device, such as an ISR, as is the case with this lab.
In this scenario, your company has two locations connected to an ISP. R1 represents a customer-premise
equipment (CPE) device managed by the ISP. R2 represents an intermediate Internet router. R3 connects
users at the remote branch office to the ISP. The ASA is an edge security device that connects the internal
corporate network and DMZ to the ISP while providing NAT services to inside hosts.
Management has asked you to provide a dedicated site-to-site IPsec VPN tunnel between the ISR router at
the remote branch office and the ASA device at the corporate site. This tunnel will protect traffic between the
branch office LAN and the corporate LAN, as it passes through the Internet. The site-to-site VPN does not
require a VPN client on the remote or corporate site host computers. Traffic from either LAN to other Internet
destinations is routed by the ISP and is not protected by the VPN tunnel. The VPN tunnel will pass through
R1 and R2; both routers are not aware of the tunnel’s existence.
In Part 1 of this lab, you will configure the topology and non-ASA devices. In Part 2, you will prepare the ASA
for ASDM access. In Part 3, you will use the CLI to configure the R3 ISR as a site-to-site IPsec VPN endpoint.
In Part 4, you will configure the ASA as a site-to-site IPsec VPN endpoint using the ASDM VPN wizard.
Note: The router commands and output in this lab are from a Cisco 1941 router with Cisco IOS Release
15.4(3)M2 (with a Security Technology Package license). Other routers and Cisco IOS versions can be used.
See the Router Interface Summary Table at the end of this lab to determine which interface identifiers to use
based on the equipment in the lab. Depending on the router model and Cisco IOS version, the commands
available and the output produced might vary from what is shown in this lab.
The ASA used with this lab is a Cisco model 5506-X with an 8-port integrated switch, running OS version
9.10(1), Adaptive Security Device Manager (ASDM) version 7.10(1), and comes with a Base license that
allows a maximum of five VLANs.
Note: Before beginning, ensure that the routers and switches have been erased and have no startup
configurations.
Instructor Note: Instructions for erasing switches and routers are provided in Chapter 0.0.0.0. Instructions for
erasing the ASA, accessing the console, and accessing ASDM are provided in this lab.
© 2015 - 2023 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 3 of 29 www.netacad.com
Lab - Configure a Site-to-Site IPsec VPN Using ISR CLI and ASA 5506-X ASDM
Required Resources
3 Routers (Cisco 1941 with Cisco IOS Release 15.4(3)M2 image with a Security Technology Package
license)
3 Switches (Cisco 2960 with cryptography IOS image for SSH support – Release 15.0(2)SE7 or
comparable) (not required)
1 ASA 5506-X (OS version 9.10(1) and ASDM version 7.10(1) and Base license or comparable)
3 PCs (Windows, SSH Client and Java version compatible with installed ASDM version)
Serial and Ethernet cables, as shown in the topology
Console cables to configure Cisco networking devices
Instructor Notes:
This lab has four main parts. Parts 1 and 2 can be performed separately but must be performed before
parts 3 and 4. Part 2 prepares the ASA for ASDM access. Part 3 configures the R3 ISR as a site-to-site
IPsec VPN endpoint using the CLI. Part 4 configures the opposite end of the tunnel on the ASA using
ASDM. Parts 3 and 4 should be performed sequentially. Each part will use CLI and ASDM as required to
verify the configuration.
The main goal is to configure a site-to-site IPsec VPN between two sites using an ISR at one end of the
tunnel and an ASA at the other end.
The final running configs for all devices are found at the end of the lab.
© 2015 - 2023 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 4 of 29 www.netacad.com
Lab - Configure a Site-to-Site IPsec VPN Using ISR CLI and ASA 5506-X ASDM
exec-timeout 5 0
logging synchronous
exit
line vty 0 4
login local
transport input ssh
exec-timeout 5 0
logging synchronous
exit
interface gigabitethernet 0/0
ip address 209.165.200.225 255.255.255.248
no shut
exit
interface serial 0/0/0
ip address 10.1.1.1 255.255.255.252
clock rate 2000000
no shut
exit
ip route 0.0.0.0 0.0.0.0 Serial0/0/0
crypto key generate rsa general-keys modulus 1024
© 2015 - 2023 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 5 of 29 www.netacad.com
Lab - Configure a Site-to-Site IPsec VPN Using ISR CLI and ASA 5506-X ASDM
© 2015 - 2023 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 6 of 29 www.netacad.com
Lab - Configure a Site-to-Site IPsec VPN Using ISR CLI and ASA 5506-X ASDM
© 2015 - 2023 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 7 of 29 www.netacad.com
Lab - Configure a Site-to-Site IPsec VPN Using ISR CLI and ASA 5506-X ASDM
Part 3: Configure the ISR as a Site-to-Site IPsec VPN Endpoint Using the
CLI
In Part 3 of this lab, you will configure R3 as an IPsec VPN endpoint for the tunnel between R3 and the ASA.
R1 and R2 are unaware of the tunnel.
© 2015 - 2023 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 8 of 29 www.netacad.com
Lab - Configure a Site-to-Site IPsec VPN Using ISR CLI and ASA 5506-X ASDM
© 2015 - 2023 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 9 of 29 www.netacad.com
Lab - Configure a Site-to-Site IPsec VPN Using ISR CLI and ASA 5506-X ASDM
Note: Older versions of Cisco IOS do not support AES 256 encryption and SHA as a hash algorithm.
Substitute whatever encryption and hashing algorithm your router supports. Ensure that the same
changes are made on R3 in order to be in sync.
R3(config)# crypto isakmp policy 10
R3(config-isakmp)# authentication pre-share
R3(config-isakmp)# encryption 3des
R3(config-isakmp)# hash sha
R3(config-isakmp)# group 2
R3(config-isakmp)# end
b. Verify the IKE policy with the show crypto isakmp policy command.
R3# show crypto isakmp policy
Global IKE policy
Protection suite of priority 10
encryption algorithm: Three key triple DES
hash algorithm: Secure Hash Standard
authentication method: Pre-Shared Key
Diffie-Hellman group: #2 (1024 bit)
lifetime: 86400 seconds, no volume limit
© 2015 - 2023 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 10 of 29 www.netacad.com
Lab - Configure a Site-to-Site IPsec VPN Using ISR CLI and ASA 5506-X ASDM
© 2015 - 2023 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 11 of 29 www.netacad.com
Lab - Configure a Site-to-Site IPsec VPN Using ISR CLI and ASA 5506-X ASDM
Yes. IPsec does evaluate whether access lists are mirrored. IPsec does not form a security association if
the peers do not have mirrored access lists to select interesting traffic.
© 2015 - 2023 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 12 of 29 www.netacad.com
Lab - Configure a Site-to-Site IPsec VPN Using ISR CLI and ASA 5506-X ASDM
Note: If one of the choices is Install Java Web Start, you will need to input
https://192.168.1.1/admin/public/startup.jnlp in a browser if you do not want to install the Launcher.
b. After the ASDM Launcher starts, log in as user admin01 with password admin01pass.
c. Exit the Startup Wizard if it starts.
© 2015 - 2023 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 13 of 29 www.netacad.com
Lab - Configure a Site-to-Site IPsec VPN Using ISR CLI and ASA 5506-X ASDM
Note: If the ASA does not respond, you may need to close the window and continue to the next step. If
prompted to authenticate, log in again as admin01 with the password admin01pass.
Step 8: Review the configuration summary and deliver the commands to the ASA.
a. Verify that the information configured is correct. You can click Back to make changes, or click Cancel
and restart the VPN wizard (recommended).
b. Click Finish to complete the process and deliver the commands to the ASA.
Note: If prompted to authenticate, log in again as admin01 with the password admin01pass.
© 2015 - 2023 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 14 of 29 www.netacad.com
Lab - Configure a Site-to-Site IPsec VPN Using ISR CLI and ASA 5506-X ASDM
© 2015 - 2023 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 15 of 29 www.netacad.com
Lab - Configure a Site-to-Site IPsec VPN Using ISR CLI and ASA 5506-X ASDM
e. Click Crypto Statistics under VPN Statistics. You should see values for the number of packets
encrypted and decrypted, security association (SA) requests, etc.
Reflection
Describe a situation where a site-to-site IPsec VPN would be preferable over other VPN options.
_______________________________________________________________________________________
_______________________________________________________________________________________
_______________________________________________________________________________________
_______________________________________________________________________________________
_______________________________________________________________________________________
_______________________________________________________________________________________
_______________________________________________________________________________________
When a large number of hosts exist at a remote office and traffic between the office and a central site needs
to be protected. One disadvantage of the site-to-site VPN is that traffic on the remote network (connecting
host) is not protected. Only the traffic between the site-to-site tunnel endpoints is protected.
Router Model Ethernet Interface #1 Ethernet Interface #2 Serial Interface #1 Serial Interface #2
1800 Fast Ethernet 0/0 Fast Ethernet 0/1 Serial 0/0/0 (S0/0/0) Serial 0/0/1 (S0/0/1)
(F0/0) (F0/1)
1900 Gigabit Ethernet 0/0 Gigabit Ethernet 0/1 Serial 0/0/0 (S0/0/0) Serial 0/0/1 (S0/0/1)
(G0/0) (G0/1)
2801 Fast Ethernet 0/0 Fast Ethernet 0/1 Serial 0/1/0 (S0/1/0) Serial 0/1/1 (S0/1/1)
(F0/0) (F0/1)
2811 Fast Ethernet 0/0 Fast Ethernet 0/1 Serial 0/0/0 (S0/0/0) Serial 0/0/1 (S0/0/1)
(F0/0) (F0/1)
2900 Gigabit Ethernet 0/0 Gigabit Ethernet 0/1 Serial 0/0/0 (S0/0/0) Serial 0/0/1 (S0/0/1)
(G0/0) (G0/1)
Note: To find out how the router is configured, look at the interfaces to identify the type of router and how many
interfaces the router has. There is no way to effectively list all the combinations of configurations for each router
class. This table includes identifiers for the possible combinations of Ethernet and Serial interfaces in the device.
The table does not include any other type of interface, even though a specific router may contain one. An
example of this might be an ISDN BRI interface. The string in parenthesis is the legal abbreviation that can be
used in Cisco IOS commands to represent the interface.
Device Configs
© 2015 - 2023 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 16 of 29 www.netacad.com
Lab - Configure a Site-to-Site IPsec VPN Using ISR CLI and ASA 5506-X ASDM
:
: Hardware: ASA5506, 4096 MB RAM, CPU Atom C2000 series 1250 MHz, 1 CPU (4 cores)
:
ASA Version 9.10(1)
!
hostname CCNAS-ASA
domain-name ccnasecurity.com
enable password ***** pbkdf2
names
no mac-address auto
!
interface GigabitEthernet1/1
nameif outside
security-level 0
ip address 209.165.200.226 255.255.255.248
!
interface GigabitEthernet1/2
nameif inside
security-level 100
ip address 192.168.1.1 255.255.255.0
!
interface GigabitEthernet1/3
nameif dmz
security-level 70
ip address 192.168.2.1 255.255.255.0
!
interface GigabitEthernet1/4
shutdown
no nameif
no security-level
no ip address
!
interface GigabitEthernet1/5
shutdown
no nameif
no security-level
no ip address
!
interface GigabitEthernet1/6
shutdown
no nameif
no security-level
no ip address
!
interface GigabitEthernet1/7
shutdown
no nameif
no security-level
© 2015 - 2023 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 17 of 29 www.netacad.com
Lab - Configure a Site-to-Site IPsec VPN Using ISR CLI and ASA 5506-X ASDM
no ip address
!
interface GigabitEthernet1/8
shutdown
no nameif
no security-level
no ip address
!
interface Management1/1
management-only
shutdown
no nameif
no security-level
no ip address
!
ftp mode passive
dns server-group DefaultDNS
domain-name ccnasecurity.com
object network inside-net
subnet 192.168.1.0 255.255.255.0
object network dmz-server
host 192.168.2.3
object network NETWORK_OBJ_172.16.3.0_24
subnet 172.16.3.0 255.255.255.0
object network NETWORK_OBJ_192.168.1.0_24
subnet 192.168.1.0 255.255.255.0
access-list OUTSIDE-DMZ extended permit ip any host 192.168.2.3
access-list outside_cryptomap extended permit ip 192.168.1.0 255.255.255.0
172.16.3.0 255.255.255.0
pager lines 24
mtu inside 1500
mtu outside 1500
mtu dmz 1500
icmp unreachable rate-limit 1 burst-size 1
no asdm history enable
arp timeout 14400
no arp permit-nonconnected
arp rate-limit 16384
nat (inside,outside) source static NETWORK_OBJ_192.168.1.0_24
NETWORK_OBJ_192.168.1.0_24 destination static NETWORK_OBJ_172.16.3.0_24
NETWORK_OBJ_172.16.3.0_24 no-proxy-arp route-lookup
!
object network inside-net
nat (inside,outside) dynamic interface
object network dmz-server
nat (dmz,outside) static 209.165.200.227
access-group OUTSIDE-DMZ in interface outside
route outside 0.0.0.0 0.0.0.0 209.165.200.225 1
timeout xlate 3:00:00
© 2015 - 2023 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 18 of 29 www.netacad.com
Lab - Configure a Site-to-Site IPsec VPN Using ISR CLI and ASA 5506-X ASDM
© 2015 - 2023 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 19 of 29 www.netacad.com
Lab - Configure a Site-to-Site IPsec VPN Using ISR CLI and ASA 5506-X ASDM
© 2015 - 2023 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 20 of 29 www.netacad.com
Lab - Configure a Site-to-Site IPsec VPN Using ISR CLI and ASA 5506-X ASDM
integrity sha
group 5 2
prf sha
lifetime seconds 86400
crypto ikev2 enable outside
crypto ikev1 enable outside
crypto ikev1 policy 10
authentication pre-share
encryption aes-256
hash sha
group 2
lifetime 86400
crypto ikev1 policy 20
authentication rsa-sig
encryption aes-256
hash sha
group 2
lifetime 86400
crypto ikev1 policy 40
authentication pre-share
encryption aes-192
hash sha
group 2
lifetime 86400
crypto ikev1 policy 50
authentication rsa-sig
encryption aes-192
hash sha
group 2
lifetime 86400
crypto ikev1 policy 70
authentication pre-share
encryption aes
hash sha
group 2
lifetime 86400
crypto ikev1 policy 80
authentication rsa-sig
encryption aes
hash sha
group 2
lifetime 86400
crypto ikev1 policy 100
authentication pre-share
encryption 3des
hash sha
group 2
lifetime 86400
crypto ikev1 policy 110
© 2015 - 2023 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 21 of 29 www.netacad.com
Lab - Configure a Site-to-Site IPsec VPN Using ISR CLI and ASA 5506-X ASDM
authentication rsa-sig
encryption 3des
hash sha
group 2
lifetime 86400
crypto ikev1 policy 130
authentication pre-share
encryption des
hash sha
group 2
lifetime 86400
crypto ikev1 policy 140
authentication rsa-sig
encryption des
hash sha
group 2
lifetime 86400
telnet timeout 5
ssh stricthostkeycheck
ssh 192.168.1.0 255.255.255.0 inside
ssh timeout 10
ssh version 2
ssh key-exchange group dh-group1-sha1
console timeout 0
threat-detection basic-threat
threat-detection statistics access-list
no threat-detection statistics tcp-intercept
group-policy GroupPolicy_10.2.2.1 internal
group-policy GroupPolicy_10.2.2.1 attributes
vpn-tunnel-protocol ikev1 ikev2
dynamic-access-policy-record DfltAccessPolicy
username admin01 password ***** pbkdf2
tunnel-group 10.2.2.1 type ipsec-l2l
tunnel-group 10.2.2.1 general-attributes
default-group-policy GroupPolicy_10.2.2.1
tunnel-group 10.2.2.1 ipsec-attributes
ikev1 pre-shared-key *****
ikev2 remote-authentication pre-shared-key *****
ikev2 local-authentication pre-shared-key *****
!
class-map inspection_default
match default-inspection-traffic
!
!
policy-map type inspect dns preset_dns_map
parameters
message-length maximum client auto
message-length maximum 512
© 2015 - 2023 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 22 of 29 www.netacad.com
Lab - Configure a Site-to-Site IPsec VPN Using ISR CLI and ASA 5506-X ASDM
no tcp-inspection
policy-map global_policy
class inspection_default
inspect ftp
inspect h323 h225
inspect h323 ras
inspect ip-options
inspect netbios
inspect rsh
inspect rtsp
inspect skinny
inspect esmtp
inspect sqlnet
inspect sunrpc
inspect tftp
inspect sip
inspect xdmcp
inspect dns preset_dns_map
inspect icmp
policy-map type inspect dns migrated_dns_map_2
parameters
message-length maximum client auto
message-length maximum 512
no tcp-inspection
policy-map type inspect dns migrated_dns_map_1
parameters
message-length maximum client auto
message-length maximum 512
no tcp-inspection
!
service-policy global_policy global
prompt hostname context
no call-home reporting anonymous
call-home
profile CiscoTAC-1
no active
destination address http
https://tools.cisco.com/its/service/oddce/services/DDCEService
destination address email [email protected]
destination transport-method http
subscribe-to-alert-group diagnostic
subscribe-to-alert-group environment
subscribe-to-alert-group inventory periodic monthly
subscribe-to-alert-group configuration periodic monthly
subscribe-to-alert-group telemetry periodic daily
Cryptochecksum:1074c3a8cd1c2fac7b700449f04085d3
: end
© 2015 - 2023 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 23 of 29 www.netacad.com
Lab - Configure a Site-to-Site IPsec VPN Using ISR CLI and ASA 5506-X ASDM
Router R1
Building configuration...
© 2015 - 2023 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 24 of 29 www.netacad.com
Lab - Configure a Site-to-Site IPsec VPN Using ISR CLI and ASA 5506-X ASDM
!
interface Serial0/0/0
ip address 10.1.1.1 255.255.255.252
clock rate 2000000
!
interface Serial0/0/1
no ip address
shutdown
!
ip forward-protocol nd
!
no ip http server
no ip http secure-server
!
ip route 0.0.0.0 0.0.0.0 Serial0/0/0
!
control-plane
!
line con 0
exec-timeout 5 0
logging synchronous
login local
line aux 0
line 2
no activation-character
no exec
transport preferred none
transport output pad telnet rlogin lapb-ta mop udptn v120 ssh
stopbits 1
line vty 0 4
exec-timeout 5 0
logging synchronous
login local
transport input ssh
!
scheduler allocate 20000 1000
!
end
Router R2
R2# show run
Building configuration...
© 2015 - 2023 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 25 of 29 www.netacad.com
Lab - Configure a Site-to-Site IPsec VPN Using ISR CLI and ASA 5506-X ASDM
!
hostname R2
!
boot-start-marker
boot-end-marker
!
security passwords min-length 10
enable secret 9 $9$Nb4BPAMsmT24y.$4bn2kyZCwulndKiaU1453lzF4n3ge95hfoFIKrucvpI
!
no aaa new-model
memory-size iomem 15
!
ip cef
no ipv6 cef
!
multilink bundle-name authenticated
!
cts logging verbose
!
username admin01 secret 9
$9$6PSI5.sujsrgN.$LFz4TeeqS/1FtxvK23Le8jxUAY9sjeedVmyF/PA9sPo
!
redundancy
!
interface Embedded-Service-Engine0/0
no ip address
interface Embedded-Service-Engine0/0
no ip address
shutdown
!
interface GigabitEthernet0/0
no ip address
shutdown
duplex auto
speed auto
!
interface GigabitEthernet0/1
no ip address
shutdown
duplex auto
speed auto
!
interface Serial0/0/0
ip address 10.1.1.2 255.255.255.252
!
interface Serial0/0/1
ip address 10.2.2.2 255.255.255.252
clock rate 2000000
!
© 2015 - 2023 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 26 of 29 www.netacad.com
Lab - Configure a Site-to-Site IPsec VPN Using ISR CLI and ASA 5506-X ASDM
ip forward-protocol nd
!
no ip http server
no ip http secure-server
!
ip route 172.16.3.0 255.255.255.0 Serial0/0/1
ip route 209.165.200.224 255.255.255.248 Serial0/0/0
!
control-plane
!
line con 0
exec-timeout 5 0
logging synchronous
login local
line aux 0
line 2
no activation-character
no exec
transport preferred none
transport output pad telnet rlogin lapb-ta mop udptn v120 ssh
stopbits 1
line vty 0 4
exec-timeout 5 0
logging synchronous
login local
transport input telnet
!
scheduler allocate 20000 1000
!
end
Router R3
R3# show run
Building configuration...
© 2015 - 2023 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 27 of 29 www.netacad.com
Lab - Configure a Site-to-Site IPsec VPN Using ISR CLI and ASA 5506-X ASDM
!
no aaa new-model
memory-size iomem 15
!
ip domain name ccnasecurity.com
ip cef
no ipv6 cef
!
multilink bundle-name authenticated
!
cts logging verbose
!
vtp domain TSHOOT
vtp mode transparent
username admin01 secret 9
$9$3gQ5keGlFNmNx.$YmVC/lGkYSErJRHSxRZ13xek9HBYHOASaKmQjYeHx36
!
redundancy
!
crypto isakmp policy 10
encr 3des
authentication pre-share
group 2
crypto isakmp key SECRET-KEY address 209.165.200.226
!
crypto ipsec transform-set ESP-TUNNEL esp-3des esp-sha-hmac
mode tunnel
!
crypto map S2S-MAP 10 ipsec-isakmp
set peer 209.165.200.226
set transform-set ESP-TUNNEL
match address VPN-ACL
!
interface Embedded-Service-Engine0/0
no ip address
shutdown
!
interface GigabitEthernet0/0
no ip address
shutdown
duplex auto
speed auto
!
interface GigabitEthernet0/1
ip address 172.16.3.1 255.255.255.0
duplex auto
speed auto
!
interface Serial0/0/0
© 2015 - 2023 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 28 of 29 www.netacad.com
Lab - Configure a Site-to-Site IPsec VPN Using ISR CLI and ASA 5506-X ASDM
no ip address
shutdown
clock rate 125000
!
interface Serial0/0/1
ip address 10.2.2.1 255.255.255.252
crypto map S2S-MAP
!
ip forward-protocol nd
!
no ip http server
no ip http secure-server
!
ip route 0.0.0.0 0.0.0.0 Serial0/0/1
!
ip access-list extended VPN-ACL
permit ip 172.16.3.0 0.0.0.255 192.168.1.0 0.0.0.255
!
control-plane
!
line con 0
exec-timeout 5 0
logging synchronous
login local
line aux 0
line 2
no activation-character
no exec
transport preferred none
transport output pad telnet rlogin lapb-ta mop udptn v120 ssh
stopbits 1
line vty 0 4
exec-timeout 5 0
logging synchronous
login local
transport input ssh
!
scheduler allocate 20000 1000
end
Switches S1, S2 and S3 – Use default configs, except for host name
© 2015 - 2023 Cisco and/or its affiliates. All rights reserved. Cisco Public Page 29 of 29 www.netacad.com