路由器配置静态路由
前言:
学习路由功能,为了方便理解
我画了一张图。
准备:
两台路由器,两台PC
PC0:192.168.1.2 255.255.255.0
Route1:端口fa0/0 192.168.1.1 255.255.255.0端口:fa0/1端口 1.1.12.1 255.255.255.0
命令:
enable
config t
int fa0/0
ip add 192.168.1.1 255.255.255.0
no shutdown
exit
int fa0/1
ip add 1.1.12.1 255.255.255.0
no shutdown
Route2:端口fa0/0 1.1.12.2 .255.255.255.0 端口fa0/1:192.168.2.1 255.255.255.0
命令:
enable
config t
int fa0/0
no shutdown
ip add 1.1.12.2 255.255.255.255.0
int fa0/1 192.168.2.1 255.255.255.0
no shutdown
PC1:192.168.2.2 255.255.255.0
正文:
查看路由表的命令:show ip route !这里我已经完成了,否则是没有2.0的IP段
为路由表添加IP段
ip route 指定IP段 子网掩码 发送的端口
例子:
ip route 192.168.2.0 255.255.255.0 fa0/0
当你两台路由器设置好后就能ping通了。
命令:
Route1
ip route 192.168.2.0 255.255.255.0 fa0/1
Route2
ip route 192.168.1.0 255.255.255.0 fa0/0
测试图: