第9天:路由器的配置
实验01:浮动路由
实验目标:实现主机之间的连通
实验环境:在Cisco模拟器上开启四台PC机和两台交换机和两台台路由器,实现之间的连通。并且在路由器上添加浮动路由。
实验拓扑图:
实验步骤:
- 配置IP地址
- PC 0 IP地址和网关地址
PC1IP地址为192.168.1.2网关地址为192.168.1.254
- PC13P地址
PC4IP地址为192.168.3.2网关地址为192.168.3.254
二.路由器配置
1. 配置路由器1IP地址
R1:interfacefastEthernet 0/0
ip address192.168.1.254 255.255.255.0
no shutdown
- 配置路由器2ip地址
R2:interfacefastEthernet 0/0
ip address 192.168.3.254255.255.255.0
no shutdown
- 配置路由器R1 1/0端口
interfacefastEthernet 1/0
ip address 192.168.2.1 255.255.255.0
noshutdown
- 配置路由器R2 1/0端口
interfacefastEthernet 1/0
ip address 192.168.2.2 255.255.255.0
no shutdown
- 配置路由器R1 1/0端口与R2 R21/0互连
ip route192.168.3.0 255.255.255.0 192.168.2.2
- 配置路由器R2 1/0端口与R2 R1 1/0互连
ip route192.168.1.0 255.255.255.0 192.168.2.1
三. 配置浮动路由
1. 安装模块
2. 配置路由器R10/1端口
interfacefastEthernet 0/1
ip address192.168.4.1 255.255.255.0
no shutdown
3. 配置路由器R2 0/1端口
interfacefastEthernet 0/1
ip address192.168.4.2 255.255.255.0
no shutdown
3.配置路由器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 R1 1/0互连
ip route 192.168.1.0 255.255.255.0 192.168.4.21 4
结构验证:
- 两个端口之间连通
- 关掉端口0/1
R1
R2
问题和经验:
路由器的配置