码迷,mamicode.com
首页 > 其他好文 > 详细

搭建基于OSPF、ASA的企业网络拓扑,典型三项外围网

时间:2019-06-25 11:44:16      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:默认路由   功能   图片   src   router   shu   outer   name   com   

拓扑图如下:
技术图片
配置如下:

  • 根据拓扑图配置各路由器接口IP地址
    R1(config)#in f 0/0
    R1(config-if)#ip add 192.168.1.1 255.255.255.0
    R1(config-if)#no shu
    技术图片
    R2(config)#in f 0/0
    R2(config-if)#ip add 192.168.1.2 255.255.255.0
    R2(config-if)#no shu
    R2(config-if)#exit
    R2(config)#in f 1/0
    R2(config-if)#ip add 192.168.2.1 255.255.255.0
    R2(config-if)#no shu
    技术图片
    R3(config)#in f 1/0
    R3(config-if)#ip add 192.168.2.2 255.255.255.0
    R3(config-if)#no shu
    R3(config-if)#exit
    R3(config)#in f 0/0
    R3(config-if)#ip add 192.168.3.1 255.255.255.0
    R3(config-if)#no shu
    技术图片
    R4(config)#in f 0/0
    R4(config-if)#ip add 192.168.3.2 255.255.255.0
    R4(config-if)#no shu
    R4(config-if)#exit
    R4(config)#in f 1/0
    R4(config-if)#ip add 192.168.4.1 255.255.255.0
    R4(config-if)#no shu
    R4(config-if)#exit
    技术图片
  • 根据拓扑图配置典型的三项外围网
    ASA(config)# in et 0/0
    ASA(config-if)# nameif inside
    INFO: Security level for "inside" set to 100 by default.
    ASA(config-if)# ip add 192.168.4.254 255.255.255.0
    ASA(config-if)# no shu
    ASA(config-if)# exit
    ASA(config)# in et 0/1
    ASA(config-if)# nameif outside
    INFO: Security level for "outside" set to 0 by default.
    ASA(config-if)# ip add 192.168.100.254 255.255.255.0
    ASA(config-if)# no shu
    ASA(config-if)# exit
    ASA(config)# in et 0/2
    ASA(config-if)# nameif dmz
    INFO: Security level for "dmz" set to 0 by default.
    ASA(config-if)# security-level 50
    ASA(config-if)# ip add 192.168.200.254 255.255.255.0
    ASA(config-if)# no shu
    ASA(config-if)# exit
    技术图片
  • PC1模拟客户端,关闭路由功能,配置网关
    PC1(config)#no ip routing
    PC1(config)#in f 0/0
    PC1(config-if)#ip add 192.168.100.10 255.255.255.0
    PC1(config-if)#no shu
    PC1(config-if)#exit
    PC1(config)#ip default-gateway 192.168.100.254
    技术图片
  • 模拟WEB服务器,关闭路由功能配置网关
    WEB(config)#no ip routing
    WEB(config)#in f 0/0
    WEB(config-if)#ip add 192.168.200.10 255.255.255.0
    WEB(config-if)#no shu
    WEB(config-if)#exit
    WEB(config)#ip default-gateway 192.168.200.254
    技术图片
  • R1-R4配置OSPF宣告指定的OSPF区域
    R1(config)#router ospf 1
    R1(config-router)#network 192.168.1.0 0.0.0.255 area 2
    R2(config)#router ospf 1
    R2(config-router)#network 192.168.1.0 0.0.0.255 area 2
    R2(config-router)#network 192.168.2.0 0.0.0.255 area 0
    R3(config)#router ospf 1
    R3(config-router)#network 192.168.2.0 0.0.0.255 area 0
    R3(config-router)#network 192.168.3.0 0.0.0.255 area 1
    R4(config)#router ospf 1
    R4(config-router)#network 192.168.3.0 0.0.0.255 area 1

  • R4配置默认路由和PC1、DMZ区域的服务器通信使用
    R4(config)#ip route 0.0.0.0 0.0.0.0 192.168.4.254

  • ASA配置默认路由,访问OSPF内部网络
    ASA(config)# route inside 0.0.0.0 0.0.0.0 192.168.4.1

  • R4配置路由重分发全网互通
    R4(config)#router ospf 1
    R4(config-router)#redistribute connected subnets
    R4(config-router)#default-information originate
    技术图片

  • DMZ服务器模拟web和telnet将服务器发布到Outside指定的IP地址上,使用PC访问测试
    WEB(config)#line vty 0 4
    WEB(config-line)#password pwd@123
    WEB(config-line)#login
    WEB(config-line)#exit
    WEB(config)#enable password pwd@123
    ASA(config)# static (dmz,outside) tcp 192.168.100.11 23 192.168.200.10 23
    ASA(config)# access-list out-to-dmz permit ip any any
    ASA(config)# access-group out-to-dmz in int outside
    ASA(config)# static (dmz,outside) tcp 192.168.100.12 80 192.168.200.10 80
    技术图片
    技术图片

搭建基于OSPF、ASA的企业网络拓扑,典型三项外围网

标签:默认路由   功能   图片   src   router   shu   outer   name   com   

原文地址:https://blog.51cto.com/14156658/2413014

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!