Documentation:
1. Document your IKE Phase 1 negotiation criteria (example below)
1. Enable ISAKMP: Router(config)#crypto isakmp enable
2. Create ISAKMP Policy: Router(config)#crypto isakmp policy <1-10000>
4. Configure pre-shared keys: Router(config)#crypto isakmp key <key> address <remote_ip>
Configuring IKE Phase 2:
1. Create transform sets: Router(config)#crypto ipsec transform-set <name> <methods>
3. Create mirrored ACLs defining traffic to be encrypted and the traffic expected to be received encrypted
4. Set up IPSec crypto-map: Router(config)#crypto isakmp map <name> <seq> ipsec-isakmp
1. Document your IKE Phase 1 negotiation criteria (example below)
- Encryption algorithm: AES-128
- Hashing: SHA-1
- Authentication: pre-shared
- Key exchange: Diffie-Hellman Group 2
- Encryption algorithm: esp-aes 128
- Authentication: esp-sha-hmac
1. Enable ISAKMP: Router(config)#crypto isakmp enable
2. Create ISAKMP Policy: Router(config)#crypto isakmp policy <1-10000>
- Router(config)#crypto isakmp policy 100
- Router(config-isakmp)#encryption aes 128
- Router(config-isakmp)#authentication pre-share
- Router(config-isakmp)#group 2
- Router(config-isakmp)#hash sha
4. Configure pre-shared keys: Router(config)#crypto isakmp key <key> address <remote_ip>
Configuring IKE Phase 2:
1. Create transform sets: Router(config)#crypto ipsec transform-set <name> <methods>
- Router(config)#crypto ipsec transform-set JEREMY esp-aes 128 esp-sha-hmac
3. Create mirrored ACLs defining traffic to be encrypted and the traffic expected to be received encrypted
4. Set up IPSec crypto-map: Router(config)#crypto isakmp map <name> <seq> ipsec-isakmp
- Router(config)#crypto map MAP 100 ipsec-isakmp
- Router(config-crypto-map)#match address <acl>
- Router(config-crypto-map)#set peer <remote_ip>
- Router(config-crypto-map)#set pfs <group1/2/5>
- Router(config-crypto-map)#set transform-set <set>
- show crypto isakmp policy
- show crypto ipsec transform-set
- show crypto ipsec sa
- show crypto map
- debug crypto isakmp
- debug crypto ipsec
No comments:
Post a Comment