企业网的实现
实验拓扑如上图所示
一、实验环境
1、GNS3仿真环境
使用三层交换机实现Vlan间互访(本实验R2,R3以下的配置)的实现方式请参考:
http://blog.csdn.net/qq_33712555/article/details/52613036
二、实现方式
1、配置R2
2、配置R3
3、配置R4
4、配置R2
5、配置R3
6、ping测试
7、导出配置文件,关闭所有机器
R2配置命令
f 0/2的配置
R2# config terminal
R2(config)# interface f0/2
R2(config-if)# no switchport
R2(config-if)# ip address 10.0.107.1 255.255.255.0
R2(config-if)# exit
R2(config)# eixt
R2# write
R3配置命令
f 0/2的配置
R3# config terminal
R3(config)# interface f0/2
R3(config-if)# no switchport
R3(config-if)# ip address 10.0.108.1 255.255.255.0
R3(config-if)# exit
R3(config)# eixt
R3# write
R4配置命令
f 0/0的配置
R4# config terminal
R4(config)# interface f0/0
R4config-if)# no switchport
R4(config-if)# ip address 10.0.107.2 255.255.255.0
R4(config-if)# exit
R4(config)# eixt
f 0/1的配置
R4# config terminal
R4(config)# interface f0/1
R4(config-if)# no switchport
R4(config-if)# ip address 10.0.108.2 255.255.255.0
R4(config-if)# exit
R4(config)# eixt
R4# write
R2配置命令
R2# config terminal
R2(config)# ip route 10.0.104.0 255.255.255.0 10.0.107.2
R2(config)# ip route 10.0.105.0 255.255.255.0 10.0.107.2
R2(config)# ip route 10.0.106.0 255.255.255.0 10.0.107.2
R2(config)# exit
R2# write
R3配置命令
R3# config terminal
R3(config)# ip route 10.0.104.0 255.255.255.0 10.0.107.2
R3(config)# ip route 10.0.105.0 255.255.255.0 10.0.107.2
R3(config)# ip route 10.0.106.0 255.255.255.0 10.0.107.2
R3(config)# exit
R3# write
ping 测试(以pc15为例)
打开pc15,输入命令ping 10.0.104.17 发现可以连通。
导出配置文件到当前工程目录即可。