谁有s6520交换机配置ipsecVPN成功的案例,给分享一下吧。多谢!
两台s5620交换机,中间是Internet网
(0)
最佳答案
在Switch A和Switch B之间建立一条IPsec隧道,对Switch A与Switch B之间的数据流进行安全保护。具体要求如下:
· 安全协议采用ESP协议。
· 加密算法采用AES-CBC-192,认证算法采用HMAC-SHA1。
· IKE协商方式建立IPsec SA。
图1-8 保护IPv4报文的IPsec配置组网图
# 配置Vlan-interface1接口的IP地址。
[SwitchA] interface vlan-interface 1
[SwitchA-Vlan-interface1] ip address 2.2.2.1 255.255.255.0
[SwitchA-Vlan-interface1] quit
# 配置一个访问控制列表,定义由Switch A去Switch B的数据流。
[SwitchA-acl-adv-3101] rule 0 permit ip source 2.2.2.1 0 destination 2.2.3.1 0
[SwitchA-acl-adv-3101] quit
# 创IPsec建安全提议tran1。
[SwitchA] ipsec transform-set tran1
# 配置安全协议对IP报文的封装形式为隧道模式。
[SwitchA-ipsec-transform-set-tran1] encapsulation-mode tunnel
# 配置采用的安全协议为ESP。
[SwitchA-ipsec-transform-set-tran1] protocol esp
# 配置ESP协议采用的加密算法为AES-CBC-192,认证算法为HMAC-SHA1。
[SwitchA-ipsec-transform-set-tran1] esp encryption-algorithm aes-cbc-192
[SwitchA-ipsec-transform-set-tran1] esp authentication-algorithm sha1
[SwitchA-ipsec-transform-set-tran1] quit
# 创建并配置IKE keychain,名称为keychain1。
[SwitchA] ike keychain keychain1
# 配置与IP地址为2.2.3.1的对端使用的预共享密钥为明文12345zxcvb!@#$%ZXCVB。
[SwitchA-ike-keychain-keychain1] quit
# 创建并配置IKE profile,名称为profile1。
[SwitchA] ike profile profile1
[SwitchA-ike-profile-profile1] keychain keychain1
[SwitchA-ike-profile-profile1] match remote identity address 2.2.3.1 255.255.255.0
[SwitchA-ike-profile-profile1] quit
# 创建一条IKE协商方式的IPsec安全策略,名称为map1,序列号为10。
[SwitchA] ipsec policy map1 10 isakmp
# 指定引用ACL 3101。
[SwitchA-ipsec-policy-isakmp-map1-10] security acl 3101
# 指定引用的安全提议为tran1。
[SwitchA-ipsec-policy-isakmp-map1-10] transform-set tran1
# 指定IPsec隧道的本端IP地址为2.2.2.1,对端IP地址为2.2.3.1。
[SwitchA-ipsec-policy-isakmp-map1-10] local-address 2.2.2.1
[SwitchA-ipsec-policy-isakmp-map1-10] remote-address 2.2.3.1
# 指定引用的IKE profile为profile1。
[SwitchA-ipsec-policy-isakmp-map1-10] ike-profile profile1
[SwitchA-ipsec-policy-isakmp-map1-10] quit
# 在Vlan-interface1接口上应用安全策略组。
[SwitchA] interface vlan-interface 1
[SwitchA-Vlan-interface1] ipsec apply policy map1
# 配置Vlan-interface1接口的IP地址。
[SwitchB] interface vlan-interface 1
[SwitchB-Vlan-interface1] ip address 2.2.3.1 255.255.255.0
[SwitchB-Vlan-interface1] quit
# 配置一个访问控制列表,定义由Switch B去Switch A的数据流。
[SwitchB-acl-adv-3101] rule 0 permit ip source 2.2.3.1 0 destination 2.2.2.1 0
[SwitchB-acl-adv-3101] quit
# 创建IPsec安全提议tran1。
[SwitchB] ipsec transform-set tran1
# 配置安全协议对IP报文的封装形式为隧道模式。
[SwitchB-ipsec-transform-set-tran1] encapsulation-mode tunnel
# 配置采用的安全协议为ESP。
[SwitchB-ipsec-transform-set-tran1] protocol esp
# 配置ESP协议采用的加密算法为AES-CBC-192,认证算法为HMAC-SHA1。
[SwitchB-ipsec-transform-set-tran1] esp encryption-algorithm aes-cbc-192
[SwitchB-ipsec-transform-set-tran1] esp authentication-algorithm sha1
[SwitchB-ipsec-transform-set-tran1] quit
# 创建并配置IKE keychain,名称为keychain1。
[SwitchB] ike keychain keychain1
# 配置与IP地址为2.2.2.1的对端使用的预共享密钥为明文12345zxcvb!@#$%ZXCVB。
[SwitchB-ike-keychain-keychain1] quit
# 创建并配置IKE profile,名称为profile1。
[SwitchB] ike profile profile1
[SwitchB-ike-profile-profile1] keychain keychain1
[SwitchB-ike-profile-profile1] match remote identity address 2.2.2.1 255.255.255.0
[SwitchB-ike-profile-profile1] quit
# 创建一条IKE协商方式的安全策略,名称为use1,序列号为10。
[SwitchB] ipsec policy use1 10 isakmp
# 指定引用ACL 3101。
[SwitchB-ipsec-policy-isakmp-use1-10] security acl 3101
# 指定引用的IPsec安全提议为tran1。
[SwitchB-ipsec-policy-isakmp-use1-10] transform-set tran1
# 指定IPsec隧道的本端IP地址为2.2.3.1,对端IP地址为2.2.2.1。
[SwitchB-ipsec-policy-isakmp-use1-10] local-address 2.2.3.1
[SwitchB-ipsec-policy-isakmp-use1-10] remote-address 2.2.2.1
# 指定引用的IKE对等体为profile1。
[SwitchB-ipsec-policy-isakmp-use1-10] ike-profile profile1
[SwitchB-ipsec-policy-isakmp-use1-10] quit
# 在Vlan-interface1接口上应用安全策略组。
[SwitchB] interface vlan-interface 1
[SwitchB-Vlan-interface1] ipsec apply policy use1
以上配置完成后,Switch A和Switch B之间如果有端到端的报文发送或接收,将触发IKE进行IPsec SA的协商。IKE成功协商出IPsec SA后,Switch A和Switch B之间数据流的传输将受到IPsec SA的保护。
(1)
暂无评论
交换机支持IPSec功能,但仅对设备自身发出的报文做封装保护,不能对交换机收到的业务报文做封装。
若有需要针对业务做封装,需要使用路由器、防火墙等设备配置IPSec VPN 。
(0)
暂无评论
您好,请知:
配置思路都是一样的。
可以参考下官网的配置举例:
在Switch A和Switch B之间建立一条IPsec隧道,对Switch A与Switch B之间的数据流进行安全保护。具体要求如下:
· 安全协议采用ESP协议。
· 加密算法采用AES-CBC-192,认证算法采用HMAC-SHA1。
· IKE协商方式建立IPsec SA。
图1-8 保护IPv4报文的IPsec配置组网图
# 配置Vlan-interface1接口的IP地址。
[SwitchA] interface vlan-interface 1
[SwitchA-Vlan-interface1] ip address 2.2.2.1 255.255.255.0
[SwitchA-Vlan-interface1] quit
# 配置一个访问控制列表,定义由Switch A去Switch B的数据流。
[SwitchA-acl-adv-3101] rule 0 permit ip source 2.2.2.1 0 destination 2.2.3.1 0
[SwitchA-acl-adv-3101] quit
# 创IPsec建安全提议tran1。
[SwitchA] ipsec transform-set tran1
# 配置安全协议对IP报文的封装形式为隧道模式。
[SwitchA-ipsec-transform-set-tran1] encapsulation-mode tunnel
# 配置采用的安全协议为ESP。
[SwitchA-ipsec-transform-set-tran1] protocol esp
# 配置ESP协议采用的加密算法为AES-CBC-192,认证算法为HMAC-SHA1。
[SwitchA-ipsec-transform-set-tran1] esp encryption-algorithm aes-cbc-192
[SwitchA-ipsec-transform-set-tran1] esp authentication-algorithm sha1
[SwitchA-ipsec-transform-set-tran1] quit
# 创建并配置IKE keychain,名称为keychain1。
[SwitchA] ike keychain keychain1
# 配置与IP地址为2.2.3.1的对端使用的预共享密钥为明文12345zxcvb!@#$%ZXCVB。
[SwitchA-ike-keychain-keychain1] quit
# 创建并配置IKE profile,名称为profile1。
[SwitchA] ike profile profile1
[SwitchA-ike-profile-profile1] keychain keychain1
[SwitchA-ike-profile-profile1] match remote identity address 2.2.3.1 255.255.255.0
[SwitchA-ike-profile-profile1] quit
# 创建一条IKE协商方式的IPsec安全策略,名称为map1,序列号为10。
[SwitchA] ipsec policy map1 10 isakmp
# 指定引用ACL 3101。
[SwitchA-ipsec-policy-isakmp-map1-10] security acl 3101
# 指定引用的安全提议为tran1。
[SwitchA-ipsec-policy-isakmp-map1-10] transform-set tran1
# 指定IPsec隧道的本端IP地址为2.2.2.1,对端IP地址为2.2.3.1。
[SwitchA-ipsec-policy-isakmp-map1-10] local-address 2.2.2.1
[SwitchA-ipsec-policy-isakmp-map1-10] remote-address 2.2.3.1
# 指定引用的IKE profile为profile1。
[SwitchA-ipsec-policy-isakmp-map1-10] ike-profile profile1
[SwitchA-ipsec-policy-isakmp-map1-10] quit
# 在Vlan-interface1接口上应用安全策略组。
[SwitchA] interface vlan-interface 1
[SwitchA-Vlan-interface1] ipsec apply policy map1
# 配置Vlan-interface1接口的IP地址。
[SwitchB] interface vlan-interface 1
[SwitchB-Vlan-interface1] ip address 2.2.3.1 255.255.255.0
[SwitchB-Vlan-interface1] quit
# 配置一个访问控制列表,定义由Switch B去Switch A的数据流。
[SwitchB-acl-adv-3101] rule 0 permit ip source 2.2.3.1 0 destination 2.2.2.1 0
[SwitchB-acl-adv-3101] quit
# 创建IPsec安全提议tran1。
[SwitchB] ipsec transform-set tran1
# 配置安全协议对IP报文的封装形式为隧道模式。
[SwitchB-ipsec-transform-set-tran1] encapsulation-mode tunnel
# 配置采用的安全协议为ESP。
[SwitchB-ipsec-transform-set-tran1] protocol esp
# 配置ESP协议采用的加密算法为AES-CBC-192,认证算法为HMAC-SHA1。
[SwitchB-ipsec-transform-set-tran1] esp encryption-algorithm aes-cbc-192
[SwitchB-ipsec-transform-set-tran1] esp authentication-algorithm sha1
[SwitchB-ipsec-transform-set-tran1] quit
# 创建并配置IKE keychain,名称为keychain1。
[SwitchB] ike keychain keychain1
# 配置与IP地址为2.2.2.1的对端使用的预共享密钥为明文12345zxcvb!@#$%ZXCVB。
[SwitchB-ike-keychain-keychain1] quit
# 创建并配置IKE profile,名称为profile1。
[SwitchB] ike profile profile1
[SwitchB-ike-profile-profile1] keychain keychain1
[SwitchB-ike-profile-profile1] match remote identity address 2.2.2.1 255.255.255.0
[SwitchB-ike-profile-profile1] quit
# 创建一条IKE协商方式的安全策略,名称为use1,序列号为10。
[SwitchB] ipsec policy use1 10 isakmp
# 指定引用ACL 3101。
[SwitchB-ipsec-policy-isakmp-use1-10] security acl 3101
# 指定引用的IPsec安全提议为tran1。
[SwitchB-ipsec-policy-isakmp-use1-10] transform-set tran1
# 指定IPsec隧道的本端IP地址为2.2.3.1,对端IP地址为2.2.2.1。
[SwitchB-ipsec-policy-isakmp-use1-10] local-address 2.2.3.1
[SwitchB-ipsec-policy-isakmp-use1-10] remote-address 2.2.2.1
# 指定引用的IKE对等体为profile1。
[SwitchB-ipsec-policy-isakmp-use1-10] ike-profile profile1
[SwitchB-ipsec-policy-isakmp-use1-10] quit
# 在Vlan-interface1接口上应用安全策略组。
[SwitchB] interface vlan-interface 1
[SwitchB-Vlan-interface1] ipsec apply policy use1
(1)
暂无评论
亲~登录后才可以操作哦!
确定你的邮箱还未认证,请认证邮箱或绑定手机后进行当前操作
举报
×
侵犯我的权益
×
侵犯了我企业的权益
×
抄袭了我的内容
×
原文链接或出处
诽谤我
×
对根叔社区有害的内容
×
不规范转载
×
举报说明
暂无评论