1.进入全局配置模式 Router#conf terminal
Router(config)#hostname hostname
2.进入console 口Router(config)#line console 0
Router(config-line)#password password
3.配置特权模式密码 Router(config)#enable password password
4.给所有的密码加密 Router(config)#service password-encryption
5.信息内容$ 配置路由器提示信息 Router(config)banner motd $banner
6.进入接口配置模式 Router(config)#interface f0/1
7.配置接口的IP地址 Router(config-if)#ip address ipaddress netmask
8.下一跳地址 配置默认路由 Router(config)#ip route 0.0.0.0 0.0.0.0
9.目标网段地址 掩码 下一跳地址 Router(config)#ip route
10.查看路由表Router#show ip route
11.查看接口状态 Router#show interface f0/1
12.查看配置 Router#show running-config
13.查看路由器当前时间 Router#show clock
14.恢复出厂配置 Router#erase startup-config
1.配置IP地址
命令:ip address ipaddress netmask
IP分配如下:
PC0 |
192.168.1.1 |
R0 f0/0 |
192.168.1.3 |
PC1 |
192.168.1.2 |
R0 f0/1 |
192.168.3.1 |
PC2 |
192.168.2.1 |
R2 f0/0 |
192.168.3.2 |
PC3 |
192.168.2.2 |
R2 f0/1 |
192.168.4.1 |
|
|
R1 f0/0 |
192.168.4.2 |
|
|
R1 f0/1 |
192.168.2.3 |
2.将R0 跟R1设置成默认路由, 在R2上设置静态路由
命令: R0(config)#ip route 0.0.0.0 0.0.0.0 192.168.3.2
R2(config)#ip route 192.168.1.0 255.255.255.0 192.168.3.1
R2(config)#ip route 192.168.2.0 255.255.255.0 192.168.4.2
R1(config)#ip route 0.0.0.0 0.0.0.0 192.168.4.1
3.测试,设置默认路由和静态路由后,不同网段的PC是否能够通信
单臂路由的配置 (不同vlan之间的相互通信)
1.配置IP地址,三台PC的IP地址分别为192.168.1.1 默认网关为 192.168.1.2
192.168.2.1 192.168.2.2
192.168.3.1 192.168.3.2
2.划分vlan 并将连接三台PC分别划入不同的vlan
3.将交换机连接路由器的接口做成trunk口
命令:interface f0/1 进入接口
Swichport mode trunk
4.在路由器上设置单臂路由
命令:interface f0/0.1 进入子街口
Ip add 192.168.1.2 255.255.255.0
Encapsulation dot1Q 2
5.测试, 通过单臂路由,实现不同vlan的PC实现互相通信
动态路由基本配置
1. 开启RIP程序 Router(config)#router rip
2. 设置版本为2 Router(config-router)#version 2
3. 取消自动汇总 Router(config-route)#no auto-summary
4. 宣告主网络号 Router(config-route)#network network
5. 查看路由表 Router#show ip route
6. 查看路由协议配置 Router#show ip protocol
7. 开启调试命令 Router#debug ip rip
组建RIPv2路由网络
1.设置IP地址
设备 |
IP地址 |
PC0 |
192.168.1.1 |
PC1 |
192.168.2.1 |
PC2 |
192.168.3.1 |
路由1 |
F0/0 192.168.1.2 |
F0/1 192.168.4.1 |
路由2 |
192.168.2.2 |
192.168.4.2 |
路由3 |
192.168.3.2 |
192.168.4.3 |
2.设置RIP版本为2 命令:router rip 开启RIP进程
Version 设置为版本2
宣告主网络号 命令:network network
3.测试