当前位置:   article > 正文

IPsec简单实验-IKE协商_ike-proposal 5什么意思

ike-proposal 5什么意思

底层

  1. RA:
  2. interface GigabitEthernet0/0/0
  3. ip address 192.168.1.254 255.255.255.0
  4. #
  5. interface GigabitEthernet0/0/1
  6. ip address 1.1.1.1 255.255.255.0
  7. ip route-static 0.0.0.0 0.0.0.0 1.1.1.100
  1. RB:
  2. interface GigabitEthernet0/0/0
  3. ip address 2.1.1.1 255.255.255.0
  4. #
  5. interface GigabitEthernet0/0/1
  6. ip address 192.168.2.254 255.255.255.0
  7. ip route-static 0.0.0.0 0.0.0.0 2.1.1.100
  1. INTERNET:
  2. vlan batch 10 20
  3. interface Vlanif10
  4. ip address 1.1.1.100 255.255.255.0
  5. #
  6. interface Vlanif20
  7. ip address 2.1.1.100 255.255.255.0
  8. #
  9. interface GigabitEthernet0/0/1
  10. port link-type access
  11. port default vlan 10
  12. #
  13. interface GigabitEthernet0/0/2
  14. port link-type access
  15. port default vlan 20

IKE自动协商

  1. RA:
  2. 设置感兴趣流
  3. acl 3001
  4. rule permit ip sour 192.168.1.0 0.0.0.255 des 192.168.2.0 0.0.0.255
  5. 设置ipsec安全提议
  6. ipsec proposal TRAN
  7. esp au sha2-256
  8. esp en aes-128
  9. q
  10. 设置IKE安全提议
  11. ike proposal 5
  12. enc aes-cbc-128
  13. au md5
  14. dh groupl4
  15. q
  16. 设置对等体,根据上方配置,配置预共享密钥和对端ID
  17. ike peer PER v1
  18. pre-shared-key cipher huawei@123
  19. ike-proposal 5
  20. remote-address 2.1.1.1
  21. 设置IKE动态协商方式安全策略
  22. ipsec policy MAP 10 isakmp
  23. ike-peer PER
  24. proposal TRAN
  25. security acl 3001
  26. q
  27. 端口引用
  28. int g0/0/1
  29. ipsec policy MAP
  30. q
  1. RB:
  2. 设置感兴趣流
  3. acl 3001
  4. rule permit ip sour 192.168.2.0 0.0.0.255 des 192.168.1.0 0.0.0.255
  5. 设置ipsec安全提议
  6. ipsec proposal TRAN
  7. esp au sha2-256
  8. esp en aes-128
  9. q
  10. 设置IKE安全提议
  11. ike proposal 5
  12. enc aes-cbc-128
  13. au md5
  14. dh groupl4
  15. q
  16. 设置对等体,根据上方配置,配置预共享密钥和对端ID
  17. ike peer PER v1
  18. pre-shared-key cipher huawei@123
  19. ike-proposal 5
  20. remote-address 1.1.1.1
  21. 设置IKE动态协商方式安全策略
  22. ipsec policy MAP 10 isakmp
  23. ike-peer PER
  24. proposal TRAN
  25. security acl 3001
  26. q
  27. 端口引用
  28. int g0/0/1
  29. ipsec policy MAP
  30. q

测试结果

 

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

闽ICP备14008679号