当前位置:   article > 正文

思科cisoc 路由器IKEv2配置ipsec tunnel口隧道_思科路由器ikev2建立tunnel隧道

思科路由器ikev2建立tunnel隧道

环境拓扑图

R1配置

接口配置

  1. R1#configure terminal
  2. R1(config)#interface ethernet 1/0
  3. R1(config-if)#no shutdown
  4. R1(config-if)#ip address 30.1.1.2 255.255.255.0
  5. R1(config-if)#exit
  6. R1(config)#interface ethernet 1/1
  7. R1(config-if)#no shutdown
  8. R1(config-if)#ip address 172.16.1.193 255.255.255.0
  9. R1(config-if)#exit

IPSec配置

  1. # ike密钥配置
  2. R1(config)#crypto ikev2 keyring ike_key # 生成ike密钥名称
  3. R1(config-ikev2-keyring)#peer 20.1.1.1 # 对端IP
  4. R1(config-ikev2-keyring-peer)#address 20.1.1.1 # 添加对端IP
  5. R1(config-ikev2-keyring-peer)#pre-shared-key 123456 # 配置预共享密钥
  6. R1(config-ikev2-keyring-peer)#exit
  7. R1(config-ikev2-keyring)#exit
  8. # IKEv2一阶段配置
  9. R1(config)#crypto ikev2 profile ike_pro # 生成ike概要名称
  10. R1(config-ikev2-profile)#match identity remote address 20.1.1.1 255.255.255.255 # 配置对端ike IP地址
  11. R1(config-ikev2-profile)#authentication remote pre-share # 设置对端认证方式为预共享密钥
  12. R1(config-ikev2-profile)#authentication local pre-share # 设置本端认证方式为预共享密钥
  13. R1(config-ikev2-profile)#keyring local ike_key # 关联预共享密钥配置
  14. R1(config-ikev2-profile)#exit
  15. # IKEv2二阶段配置
  16. R1(config)#crypto ipsec profile ipsec_pro # 配置IPSec名称并进入配置
  17. R1(ipsec-profile)#set ikev2-profile ike_pro # 关联ike配置
  18. R1(ipsec-profile)#set pfs group2 # 设置pfs为2
  19. R1(ipsec-profile)#exit
  20. # tunnel口配置
  21. R1(config)#interface tunnel 0 # 进入tunnel口
  22. R1(config-if)#ip address 30.30.30.2 255.255.255.0 # 关闭tunnel口IP
  23. R1(config-if)#tunnel source ethernet 1/0 # 配置本端为接口
  24. R1(config-if)#tunnel destination 20.1.1.1 # 配置对端为IP
  25. R1(config-if)#tunnel protection ipsec profile ipsec_pro # 关联IPSec配置
  26. R1(config-if)#exit

路由配置

  1. R1(config)#ip route 20.1.1.0 255.255.255.0 30.1.1.1
  2. R1(config)#ip route 10.1.1.0 255.255.255.0 tunnel 0 # 配置路由进入tunnel口

R2配置

接口配置

  1. R2#configure ter
  2. R2(config)#interface ethernet 1/0
  3. R2(config-if)#ip address 30.1.1.1 255.255.255.0
  4. R2(config-if)#no shutdown
  5. R2(config-if)#exit
  6. R2(config)#interface ethernet 1/1
  7. R2(config-if)#ip address 20.1.1.2 255.255.255.0
  8. R2(config-if)#no shutdown

R3配置

接口配置

  1. R3#configure terminal
  2. R3(config)#interface ethernet 1/1
  3. R3(config-if)#no shutdown
  4. R3(config-if)#ip address 20.1.1.1 255.255.255.0
  5. R3(config-if)#exit
  6. R3(config)#interface ethernet 1/0
  7. R3(config-if)#no shutdown
  8. R3(config-if)#ip address 10.1.1.2 255.255.255.0
  9. R3(config-if)#exit

IPSec配置

  1. # ike密钥配置
  2. R3(config)#crypto ikev2 keyring ike_key # 生成ike密钥名称
  3. R3(config-ikev2-keyring)#peer 30.1.1.2 # 对端IP
  4. R3(config-ikev2-keyring-peer)#address 30.1.1.2 # 添加对端IP
  5. R3(config-ikev2-keyring-peer)#pre-shared-key 123456 # 配置预共享密钥
  6. R3(config-ikev2-keyring-peer)#exit
  7. R3(config-ikev2-keyring)#exit
  8. # IKEv2一阶段配置
  9. R3(config)#crypto ikev2 profile ike_pro # 生成ike概要名称
  10. R3(config-ikev2-profile)#match identity remote address 30.1.1.2 255.255.255.255 # 配置对端ike IP地址
  11. R3(config-ikev2-profile)#authentication remote pre-share # 设置对端认证方式为预共享密钥
  12. R3(config-ikev2-profile)#authentication local pre-share # 设置本端认证方式为预共享密钥
  13. R3(config-ikev2-profile)#keyring local ike_key # 关联预共享密钥配置
  14. R3(config-ikev2-profile)#exit
  15. # IKEv2二阶段配置
  16. R3(config)#crypto ipsec profile ipsec_pro # 配置IPSec名称并进入配置
  17. R3(ipsec-profile)#set ikev2-profile ike_pro # 关联ike配置
  18. R3(ipsec-profile)#set pfs group2 # 设置pfs为2
  19. R3(ipsec-profile)#exit
  20. # tunnel口配置
  21. R3(config)#interface tunnel 0 # 进入tunnel口
  22. R3(config-if)#ip address 30.30.30.1 255.255.255.0 # 关闭tunnel口IP
  23. R3(config-if)#tunnel source ethernet 1/1 # 配置本端为接口
  24. R3(config-if)#tunnel destination 30.1.1.2 # 配置对端为IP
  25. R3(config-if)#tunnel protection ipsec profile ipsec_pro # 关联IPSec配置
  26. R3(config-if)#exit

路由配置

  1. R3(config)#ip route 30.1.1.0 255.255.255.0 20.1.1.2
  2. R3(config)#ip route 172.16.1.0 255.255.255.0 tunnel 0 # 配置路由进入tunnel口
  3. R3(config)#end

R4配置

接口配置

  1. R4#conf terminal
  2. R4(config)#interface ethernet 1/0
  3. R4(config-if)#ip address 10.1.1.1 255.255.255.0
  4. R4(config-if)#no shutdown
  5. R4(config-if)#exit

路由配置

  1. R4(config)#ip route 0.0.0.0 0.0.0.0 10.1.1.2
  2. R4(config)#end

结果截图

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/176540
推荐阅读
相关标签
  

闽ICP备14008679号