欢迎来到三一办公! | 帮助中心 三一办公31ppt.com(应用文档模板下载平台)
三一办公
全部分类
  • 办公文档>
  • PPT模板>
  • 建筑/施工/环境>
  • 毕业设计>
  • 工程图纸>
  • 教育教学>
  • 素材源码>
  • 生活休闲>
  • 临时分类>
  • ImageVerifierCode 换一换
    首页 三一办公 > 资源分类 > DOCX文档下载  

    ASA防火墙上配置IPSEC VPN和SSL VPN.docx

    • 资源ID:3152876       资源大小:37.52KB        全文页数:6页
    • 资源格式: DOCX        下载积分:6.99金币
    快捷下载 游客一键下载
    会员登录下载
    三方登录下载: 微信开放平台登录 QQ登录  
    下载资源需要6.99金币
    邮箱/手机:
    温馨提示:
    用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)
    支付方式: 支付宝    微信支付   
    验证码:   换一换

    加入VIP免费专享
     
    账号:
    密码:
    验证码:   换一换
      忘记密码?
        
    友情提示
    2、PDF文件下载后,可能会被浏览器默认打开,此种情况可以点击浏览器菜单,保存网页到桌面,就可以正常下载了。
    3、本站不支持迅雷下载,请使用电脑自带的IE浏览器,或者360浏览器、谷歌浏览器下载即可。
    4、本站资源下载后的文档和图纸-无水印,预览文档经过压缩,下载后原文更清晰。
    5、试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。

    ASA防火墙上配置IPSEC VPN和SSL VPN.docx

    ASA防火墙上配置IPSEC VPN和SSL VPNASA防火墙上配置IPSEC VPN和SSL VPN 一:实验拓扑: 二:实验要求: 1:PC1属于上海分公司内网主机,PC2属于总公司主机.要求上海分公司的用户直接可以喝总公司的PC2通信.(Site-to-Site IPSEC VPN实现) 2:公网上用户可以访问总公司的OA服务器PC2.(SSL VPN实现) 三:配置过程: 1:基本配置: ASA1(config)# int e0/1 ASA1(config-if)# nameif inside INFO: Security level for "inside" set to 100 by default. ASA1(config-if)# ip add 172.16.1.254 255.255.255.0 ASA1(config-if)# no sh ASA1(config-if)# int e0/0 ASA1(config-if)# nameif outside INFO: Security level for "outside" set to 0 by default. ASA1(config-if)# ip add 12.0.0.1 255.255.255.0 ASA1(config-if)# no sh ASA1(config-if)# ASA1# ping 172.16.1.1 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 172.16.1.1, timeout is 2 seconds: ! Success rate is 100 percent (5/5), round-trip min/avg/max = 10/344/1670 ms R1(config)#int f0/0 R1(config-if)#ip add 12.0.0.2 255.255.255.0 R1(config-if)#no sh R1(config-if)#int f1/0 R1(config-if)#ip add 23.0.0.2 255.255.255.0 R1(config-if)#no sh R1(config-if)#int f2/0 R1(config-if)#ip add 1.1.1.254 255.255.255.0 R1(config-if)#no sh ASA2(config)# int e0/0 ASA2(config-if)# nameif outside INFO: Security level for "outside" set to 0 by default. ASA2(config-if)# ip add 23.0.0.3 255.255.255.0 ASA2(config-if)# no sh ASA2(config-if)# int e0/1 ASA2(config-if)# nameif inside INFO: Security level for "inside" set to 100 by default. ASA2(config-if)# ip add 192.168.1.254 255.255.255.0 ASA2(config-if)# no sh 配置路由,NAT,ACL ASA1(config)# route outside 0 0 12.0.0.2 ASA1(config)# nat-control ASA1(config)# nat (inside) 1 0 0 ASA1(config)# global (outside) 1 interface INFO: outside interface address added to PAT pool ASA1(config)# access-list haha permit icmp any any ASA1(config)# access-group haha in interface outside ASA2(config)# route outside 0 0 23.0.0.2 ASA2(config)# nat-con ASA2(config)# nat-control ASA2(config)# nat (inside) 1 0 0 ASA2(config)# global (outside) 1 interface INFO: outside interface address added to PAT pool ASA2(config)# access-list haha permit icmp any any ASA2(config)# access-group haha in interface outside 私网上公网没问题,但两个私网无法互通 2:配置Site-to-Site VPN ASA1(config)# access-list no-nat permit ip 172.16.1.0 255.255.255.0 192.168.1.0 255.255.255.0 ASA1(config)# nat (inside) 0 access-list no-nat ASA2(config)# access-list no-nat permit ip 192.168.1.0 255.255.255.0 172.16.1.0 255.255.255.0 ASA2(config)# nat (inside) 1 access-list no-nat ASA1(config)# crypto isakmp enable outside ASA1(config-isakmp-policy)# authentication pre-share ASA1(config-isakmp-policy)# encryption des ASA1(config-isakmp-policy)# hash md5 ASA1(config-isakmp-policy)# group 2 ASA1(config-isakmp-policy)# exit ASA1(config)# isakmp key cisco address 23.0.0.3 ASA1(config)# crypto ipsec transform-set mytrans esp-des esp-md ASA1(config)# crypto ipsec transform-set mytrans esp-des esp-md5-hmac ASA1(config)# crypto map mymap 10 set peer 23.0.0.3 ASA1(config)# crypto map mymap 10 set transform-set mytrans ASA1(config)# crypto map mymap 10 match address no-nat ASA1(config)# crypto map mymap interface outside ASA2(config)# crypto isakmp enable outside ASA2(config-isakmp-policy)# authentication pre-share ASA2(config-isakmp-policy)# encryption des ASA2(config-isakmp-policy)# hash md5 ASA2(config-isakmp-policy)# group 2 ASA2(config-isakmp-policy)# exit ASA2(config)# isakmp key cisco address 12.0.0.1 ASA2(config)# crypto ipsec transform-set mytrans esp-des esp-md ASA2(config)# crypto ipsec transform-set mytrans esp-des esp-md5-hmac ASA2(config)# crypto map mymap 10 set peer 12.0.0.1 ASA2(config)# crypto map mymap 10 set transform-set mytrans ASA2(config)# crypto map mymap 10 match address no-nat ASA2(config)# crypto map mymap interface outside Site-to-Site IPSEC 配置完成. ASA2(config)# webvpn ASA2(config-webvpn)# enable outside INFO: WebVPN and DTLS are enabled on 'outside'. ASA2(config-webvpn)# svc image disk0:/sslclient-win-1.1.3.173.pkg ASA2(config-webvpn)# svc enable ASA2(config-webvpn)# exit ASA2(config)# username cisco password cisco ASA2(config)# ip local pool vpn 192.168.100.1-192.168.100.200 ASA2(config)# access-list 100 permit ip 192.168.1.0 255.255.255.0 any ASA2(config)# group-policy my10 internal ASA2(config)# group-policy my10 attributes ASA2(config-group-policy)# vpn-tunnel-protocol webvpn svc ASA2(config-group-policy)# split-tunnel-policy tunnelspecified ASA2(config-group-policy)# split-tunnel-network-list value 100 ASA2(config-group-policy)# webvpn ASA2(config-group-webvpn)# svc ask enable ASA2(config-group-webvpn)# exit ASA2(config-group-policy)# exit ASA2(config)# tunnel-group jishu type webvpn ASA2(config)# tunnel-group jishu general-attributes ASA2(config-tunnel-general)# address-pool vpn ASA2(config-tunnel-general)# default-group-policy my10 ASA2(config-tunnel-general)# webvpn ASA2(config-webvpn)# tunnel-group-list enable ASA2(config-webvpn)# tunnel-group jishu webvpn-attributes ASA2(config-tunnel-webvpn)# group-alias 2t39 SSL VPN配置完毕. access-list sslvpn extended permit ip 192.168.1.0 255.255.255.0 192.168.100.0 255.255.255.0 nat (inside) 0 access-list sslvpn

    注意事项

    本文(ASA防火墙上配置IPSEC VPN和SSL VPN.docx)为本站会员(小飞机)主动上传,三一办公仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知三一办公(点击联系客服),我们立即给予删除!

    温馨提示:如果因为网速或其他原因下载失败请重新下载,重复下载不扣分。




    备案号:宁ICP备20000045号-2

    经营许可证:宁B2-20210002

    宁公网安备 64010402000987号

    三一办公
    收起
    展开