实验目标:
熟练掌握绘制路由器的的拓扑结构并使用命令连通,实现与外部网络的连接和满足internet上网的需求。
实验环境:
在Cisco模拟器上开启四台PC机和两台交换机和两台台路由器,实现之间的连通。并且在路由器上添加浮动路由。路由器地址
R1:192.168.1.254
F0/1:192.168.4.1
F1/0:192.168.2.1
R2:192.168.3.254
F0/1:192.168.4.2
F1/0:192.168.2.2
网络拓扑:
实验步骤:
一: 配置IP地址
Pc0IP地址和网关地址
pc4的地址
二.路由器配置
1. 配置路由器1IP地址
R1:interface fastEthernet 0/0 进入路由器的0/0端口
ip address 192.168.1.254 255.255.255.0
no shutdown 开启端口
R2:interface fastEthernet 0/0
ip address192.168.3.254 255.255.255.0
no shutdown
2. 配置路由器R1 1/0端口
interface fastEthernet 1/0
ip address 192.168.2.1 255.255.255.0
no shutdown
3. 配置路由器R1 1/0端口与R2 R2 1/0互连
4.配置路由器R2 1/0端口与R2 R1 1/0互连
三: 配置浮动路由
1. 安装模块
2. 配置路由器R10/1端口
interface fastEthernet 0/1
ip address 192.168.4.1255.255.255.0
no shutdown
3. 配置路由器R2 0/1端口
interface fastEthernet 0/1
ip address 192.168.4.2 255.255.255.0
no shutdown
4.配置路由器R1 1/0端口与R2 R1 1/0互连
ip route 192.168.3.0 255.255.255.0 192.168.4.2 4
5.配置路由器R2 1/0端口与R2 R11/0互连
ip route 192.168.1.0 255.255.255.0 192.168.4.1 4
结构验证:
两个端口之间连通:
关掉端口0/1
R1
R2
配置浮动路由