注:该文章最终归属权为博客:等不到释怀
!!!未经允许请勿转载!!!
目录
前言介绍
该网络运用到的技术主要有vlan划分、eth-trunk捆绑、MSTP、VRRP、OSPF、NAT、DHCP中继、路由引入、默认路由、ISP、防火墙、无线WLAN规划等等,非常适合适用于校园、企业和园区网络的小伙伴使用,还可适用于毕设,课设,园区网络的实现等等场景!
一、设计思路
计算机网络系统以目前国际流行的TCP/IP为基础,采用OSI体系结构遵循国际标准,整个网络系统采用星型网络拓扑架构。
一般校园网网络楼宇内信息点比较集中,涉及众多的楼宇部门办公室。网络整体采用路由方式,汇聚终结广播,交换式的以太网络就不会应为网络设备对资源的争用而影响网络整体的效率和传输速度,从而大大提高整个网络的性能,降低网络发生阻塞的概率。
在本方案中,网络系统按系统结构以及功能规划为:局域网和广域网两个部分。
广域网主要由各种功能的路由器、出口设备、应用服务器、网络安全设备等组成。
局域网按网络层次分为:核心层、汇聚层,接入层
二、设计图
这个就是所搭建的设计图,查看设备代码可用dis cu进行配置代码的查看。
三、IP地址及VLAN的划分
四、配置步骤(跟着一步一步走)
1、vlan划分
SW1:
sys
un in en
sys SW1
vlan batch 2 to 30
interface Ethernet0/0/1
port link-type trunk
port trunk allow-pass vlan 2 to 4094
interface Ethernet0/0/2
port link-type access
port default vlan 10
stp edged-port enable
interface Ethernet0/0/3
port link-type access
port default vlan 10
stp edged-port enable
interface GigabitEthernet0/0/1
port link-type trunk
port trunk allow-pass vlan 2 to 4094
interface GigabitEthernet0/0/2
port link-type trunk
port trunk allow-pass vlan 2 to 4094
--------------------------------
SW2:
sys
un in en
sys SW2
vlan batch 2 to 30
interface Ethernet0/0/1
port link-type access
port default vlan 11
stp edged-port enable
interface Ethernet0/0/2
port link-type access
port default vlan 11
stp edged-port enable
interface GigabitEthernet0/0/1
port link-type trunk
port trunk allow-pass vlan 2 to 4094
interface GigabitEthernet0/0/2
port link-type trunk
port trunk allow-pass vlan 2 to 4094
-----------------------------
SW3:
sys
un in en
sys SW3
vlan batch 2 to 30
interface Ethernet0/0/1
port link-type access
port default vlan 12
stp edged-port enable
interface Ethernet0/0/2
port link-type trunk
port trunk allow-pass vlan 2 to 4094
interface GigabitEthernet0/0/1
port link-type trunk
port trunk allow-pass vlan 2 to 4094
interface GigabitEthernet0/0/2
port link-type trunk
port trunk allow-pass vlan 2 to 4094
------------------------------
SW4:
sys
un in en
sys SW4
vlan batch 2 to 30
interface Ethernet0/0/1
port link-type access
port default vlan 13
stp edged-port enable
interface Ethernet0/0/2
port link-type access
port default vlan 13
stp edged-port enable
interface GigabitEthernet0/0/1
port link-t