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

拓扑图如下:
搭建基于OSPF、ASA的企业网络拓扑,典型三项外围网
配置如下:

  • 根据拓扑图配置各路由器接口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
    搭建基于OSPF、ASA的企业网络拓扑,典型三项外围网
    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
    搭建基于OSPF、ASA的企业网络拓扑,典型三项外围网
    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
    搭建基于OSPF、ASA的企业网络拓扑,典型三项外围网
    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
    搭建基于OSPF、ASA的企业网络拓扑,典型三项外围网
  • 根据拓扑图配置典型的三项外围网
    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
    搭建基于OSPF、ASA的企业网络拓扑,典型三项外围网
  • 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
    搭建基于OSPF、ASA的企业网络拓扑,典型三项外围网
  • 模拟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
    搭建基于OSPF、ASA的企业网络拓扑,典型三项外围网
  • 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
    搭建基于OSPF、ASA的企业网络拓扑,典型三项外围网

  • 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的企业网络拓扑,典型三项外围网
    搭建基于OSPF、ASA的企业网络拓扑,典型三项外围网
随着中小型企业的高速发展,对网络处理和传输性能提出了新的要求。由于点接入路由器和终端接入设备年代较久,性能和扩展能力都出现了瓶颈,严重影响点业务的发展和客户服务质量。为此本论文设计了一个中小型企业网络工程,从而解决了由于设备性能低下出现瓶颈的问题,而且提高了企业网络工程的扩展能力。 本论文首先讨论了中小企业的背景、意义、应用现状以及研究与开发现状,然后对OSPF协议、DHCP协议、VLAN的划分、静态路由以及数据流控制等相关技术理论作了简单的论述,其次结合工程项目,论述了企业网络的需求分析、整体设计,其中包括对IP地质的划分,网络拓扑图等做了分析和描述。接下来,论文着重讨论了基于OSPF协议的网络工程的设计和实现,详细地论述了各个协议的运用和实现方法。最后,对整个网络进行了测试。 关键词:网络工程;协议;性能;扩展 ABSTRACT With the rapid development of small and medium enterprises, this network processing and network transmission performance and scalability of terminal smooth raised new demands. As the network access routers and terminal access device's longer, performance and scalability bottlenecks have appeared, it affect the network business development and customer service. To this end this paper, an application of existing small and medium enterprises in network engineering, to solve the poor performance bottleneck because the equipment problems, and improve the ability of the corporate network expansion project. This paper first discusses the background of small and medium networks, meaning, application status, and research and development status, Then on the OSPF protocol, DHCP protocol, VLAN classification, static routing and data flow control and other related technology theory briefly discussed, Secondly, combined with the project, specifically addressing the needs of the corporate network analysis, overall design, including the division of IP addresses, network topology maps were analyzed and described. Next, the paper focused on the OSPF protocol-based network engineering design and implementation. Discussed in detail in the paper the use of various agreements and implementation methods. Finally, test the entire network. Keywords: Network engineering; protocol; performance; expansion
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值