一、动态路由概述
动态路由是路由器能够自动地建立自己的路由表,并且能够根据实际情况的变化适时地进行调整。;如果没有动态路由,那么目的地址在路由表中没有匹配表项的包将被丢弃。
二、网络拓扑
三、实训功能
1-网络设备基本配置;
2-根据拓扑图规划VLAN,并将接口分配到指定的VLAN中;
4-根据拓扑图实现RIP的配置
四、配置步骤
第一步:配置所以终端设备的IP地址、子网掩码和网关;配置所以网络设备接口的IP地址和子网掩码;
1、配置所有PC机的IP地址、子网掩码和网关;
2、配置所有网络设备的设备名;
(1)SW1的配置
Switch>enable //进入特权模式
Switch#conf t //进入全局配置模式
Switch(config)#hostsw1 //改变设备的主机名
(2)SW2的配置
Switch>enable //进入特权模式
Switch#conf t //进入全局配置模式
Switch(config)#hostsw2 //改变设备的主机名
(3)SW3的配置
Switch>enable //进入特权模式
Switch#conf t //进入全局配置模式
Switch(config)#hostsw3 //改变设备的主机名
(4)R1的配置
Router>en //进入特权模式
Router#config t //进入全局配置模式
Router(config)#hostR1 //改变设备的主机名
(5)R2的配置
Router>en //进入特权模式
Router#config t //进入全局配置模式
Router(config)#hostR2 //改变设备的主机名
(6)R3的配置
Router>en //进入特权模式
Router#config t //进入全局配置模式
Router(config)#hostR3 //改变设备的主机名
(1)sw1上VLAN的创建及端口的划分
sw1(config)#vlan 10 //创建VLAN 10
sw1(config-vlan)#name v10 //改变VLAN10的名称为 v10
sw1(config-vlan)#vlan 11 //创建VLAN 11
sw1(config-vlan)#namev11 //改变VLAN11的名称为 v11
(2)sw2上VLAN的创建及端口的划分
Sw2(config)#vlan 12 //创建VLAN 12
Sw2(config-vlan)#name v12 //改变VLAN12的名称为 v12
Sw2(config-vlan)#vlan 13 //创建VLAN 13
Sw2(config-vlan)#namev13 //改变VLAN13的名称为 v13
(3)sw3上VLAN的创建及端口的划分
Sw3(config)#vlan 14 //创建VLAN 14
Sw3(config-vlan)#name v14 //改变VLAN14的名称为 v14
Sw3(config-vlan)#vlan 15 //创建VLAN 15
Sw3(config-vlan)#namev15//改变VLAN15的名称为 v15
(4)sw1上接口的分配情况
sw1(config-vlan)#int f0/2 //进入接口
sw1(config-if)#switchport mode access //设置接口的工作模式为接入模式
sw1(config-if)#switchport access vlan10 //将接口分配给指定的VLAN
sw1(config-if)#int f0/3 //进入接口
sw1(config-if)#switchport mode access //设置接口的工作模式为接入模式
sw1(config-if)#switchportaccess vlan 11 //将接口分配给指定的VLAN
(5)sw2上接口的分配情况
Sw2(config-vlan)#int f0/2 //进入接口
Sw2(config-if)#switchport mode access //设置接口的工作模式为接入模式
Sw2(config-if)#switchport access vlan 13//将接口分配给指定的VLAN
Sw2(config-if)#int f0/3 //进入接口
Sw2(config-if)#switchport mode access //设置接口的工作模式为接入模式
Sw2(config-if)#switchportaccess vlan 12 //将接口分配给指定的VLAN
(6)sw3上接口的分配情况
Sw3(config-vlan)#int f0/2 //进入接口
Sw3(config-if)#switchport mode access //设置接口的工作模式为接入模式
Sw3(config-if)#switchport access vlan 15//将接口分配给指定的VLAN
Sw3(config-if)#int f0/3 //进入接口
Sw3(config-if)#switchport mode access //设置接口的工作模式为接入模式
Sw3(config-if)#switchportaccess vlan 14 //将接口分配给指定的VLAN
(1)SW1上的配置
sw1(config-if)#int f0/1 //进入接口
sw1(config-if)#switchportmode trunk //配置接口的工作模式为链路模式
(2)SW2上的配置
sw1(config-if)#int f0/1 //进入接口
sw1(config-if)#switchportmode trunk //配置接口的工作模式为链路模式
(3)SW3上的配置
sw1(config-if)#int f0/1 //进入接口
sw1(config-if)#switchportmode trunk //配置接口的工作模式为链路模式
(1)R1的配置
R1(config)#int f1/0.10 //进入子接口
R1(config-subif)#encapsulation dot1Q 10//封装该接口工作VLAN是VLAN 10
R1(config-subif)#ip address192.168.10.254 255.255.255.0 //配置接口的IP地址
R1(config-subif)#int f1/0.11 //进入子接口
R1(config-subif)#encapsulation dot1Q 11//封装该接口工作VLAN是VLAN 11
R1(config-subif)#ip address192.168.11.254 255.255.255.0 //配置接口的IP地址
R1(config-subif)#int f1/0 //进入主接口
R1(config-if)#noshut //打开主接口
(2)R2的配置
R2(config)#int f0/1.12 //进入子接口
R2(config-subif)#encapsulation dot1Q 12//封装该接口工作VLAN是VLAN 12
R2(config-subif)#ip address 192.168.12.254255.255.255.0 //配置接口的IP地址
R2(config-subif)#int f0/1.13 //进入子接口
R2(config-subif)#encapsulation dot1Q 13//封装该接口工作VLAN是VLAN 13
R2(config-subif)#ip address 192.168.13.254255.255.255.0 //配置接口的IP地址
R2(config-subif)#int f0/1//进入主接口
R2(config-if)#noshut //打开主接口
(3)R3的配置
R3(config)#int f0/1.14 //进入子接口
R3(config-subif)#encapsulation dot1Q 14//封装该接口工作VLAN是VLAN 14
R3(config-subif)#ip address 192.168.14.254255.255.255.0 //配置接口的IP地址
R3(config-subif)#int f0/1.15 //进入子接口
R3(config-subif)#encapsulation dot1Q 15//封装该接口工作VLAN是VLAN 15
R3(config-subif)#ip address 192.168.15.254255.255.255.0 //配置接口的IP地址
R3(config-subif)#int f0/1//进入主接口
R3(config-if)#noshut //打开主接口
(1)R1的配置
R1(config-if)#intf0/0 //进入接口
R1(config-if)#ipaddress 192.168.21.1 255.255.255.252 //配置接口的IP地址
R1(config-if)#noshut //打开接口
R1(config-if)#intf0/1 //进入接口
R1(config-if)#ipaddress 192.168.31.1 255.255.255.252 //配置接口的IP地址
R1(config-if)#noshut //打开接口
(2)R2的配置
R2(config-if)#intf0/0 //进入接口
R2(config-if)#ipaddress 192.168.21.2 255.255.255.252 //配置接口的IP地址
R2(config-if)#no shut //打开接口
R2(config-if)#int f1/0//进入主接口
R2(config-if)#ip address 192.168.23.1255.255.255.252 //配置接口的IP地址
R2(config-if)#noshutdown //打开接口
(2)R3的配置
R3(config-if)#intf0/0 //进入接口
R3(config-if)#ipaddress 192.168.31.2 255.255.255.252 //配置接口的IP地址
R3(config-if)#noshut //打开接口
R3(config-if)#intf1/0 //进入接口
R3(config-if)#ipaddress 192.168.23.2 255.255.255.252 //配置接口的IP地址
R3(config-if)#noshut //打开接口
7、配置RIP动态路由
(1)R1上的路由配置
R1(config)#route rip //进入RIP路由协议
R1(config-router)#version 2 //配置RIP的版本
R1(config-router)#no auto-summary //关闭自动汇总功能
R1(config-router)#network 192.168.10.0//公布直连网段
R1(config-router)#network 192.168.11.0//公布直连网段
R1(config-router)#network 192.168.21.0//公布直连网段
R1(config-router)#network 192.168.31.0//公布直连网段
R1(config-router)#dow //保存配置
(2)R2上的路由配置
R2(config)#route rip //进入RIP路由协议
R2(config-router)#version 2 //配置RIP的版本
R2(config-router)#no auto-summary //关闭自动汇总功能
R2(config-router)#network 192.168.12.0//公布直连网段
R2(config-router)#network 192.168.13.0//公布直连网段
R2(config-router)#network 192.168.21.0//公布直连网段
R2(config-router)#network 192.168.33.0//公布直连网段
R2(config-router)#dow //保存配置
(3)R3上的路由配置
R3(config)#route rip //进入RIP路由协议
R3(config-router)#version 2 //配置RIP的版本
R3(config-router)#no auto-summary //关闭自动汇总功能
R3(config-router)#network 192.168.14.0//公布直连网段
R3(config-router)#network 192.168.15.0//公布直连网段
R3(config-router)#network 192.168.23.0//公布直连网段
R3(config-router)#network 192.168.31.0//公布直连网段
R3(config-router)#dow //保存配置