要求:++讓三颱電腦互相能ping通++1.先如圖配置與選好路由器和pc,並配置pc相應的ip位址通過配置靜態路由實現
2.給路由器增加介面並開啟,然後進行連線
//以pc1為例
c:\>ping 192.168.80.254
pinging 192.168.80.254 with 32 bytes of data:
reply from 192.168.80.254: bytes=32 time<1ms ttl=255
reply from 192.168.80.254: bytes=32 time=1ms ttl=255
4.給路由器配置介面ip位址
//r1配置
r1(config)#int s0/0/0
r1(config-if)#ip add 172.16.1.1 255.255.255.0
r1(config-if)#do wr
//r2配置
r1(config)#int s0/0/0 //配置r1與r2相連的介面
r1(config-if)#ip add 172.16.1.2 255.255.255.0
r1(config)#int s0/0/1 //配置r2與r3相連的介面
r1(config-if)#ip add 172.16.2.1 255.255.255.0
r1(config-if)#do wr
//r3配置
r1(config)#int s0/0/1 //配置r2與r3相連的介面
r1(config-if)#ip add 172.16.2.2 255.255.255.0
r1(config-if)#do wr
/*注意:
r1與r2之間的s0/0/0介面要在同一網段(172.16.1.0)
r2與r3之間的s0/0/1介面要在同一網段(172.16.2.0)
*/
5.配置靜態路由
/*
ip route 目的網路 掩碼{目的閘道器位址 介面}
*///r1配置
r1(config)#ip route 192.168.90.0 255.255.255.0 172.16.1.2
r1(config)#do wr
//r2配置
r2(config)#ip route 192.168.80.0 255.255.255.0 172.16.1.1
r2(config)#do wr
r2(config)#ip route 192.168.100.0 255.255.255.0 172.16.2.2
r2(config)#do wr
//r3配置
r3(config)#ip route 192.168.90.0 255.255.255.0 172.16.2.1
r3(config)#do wr
注意:
ip route 192.168.80.0 255.255.255.0 172.16.1.1
這句話的意思是:路由器見到了目的網段為192.168.8
0.0的資料報,就將資料報傳送到172.16.1.0網段上。
也就是要想去往192.168.80.0,就要經過172.168.1.0
配置到這pc0可以和pc1互相ping通;
pc2可以和pc1互相互相ping通
最後一步使pc0和pc2ping通
//r1配置
r1(config)#ip route 192.168.100.0 255.255.255.0 172.16.1.2
r1(config)#do wr
//r2配置
r2(config)#ip route 192.168.80.0 255.255.255.0 172.16.2.1
r2(config)#do wr
到這三颱pc就可以互相ping通了
配置靜態路由
使用ruote 命令新增靜態路由 route 在本地 ip 路由表中顯示和修改條目。使用不帶引數的 route 可以顯示幫助。語法 route f p command destination mask netmask gateway metric metric if inte ce 引數 f 清除所...
配置靜態路由
拓撲圖如下 配置靜態路由 1750 routera routera conf routera config int fa0 0 routera config fa0 ip add 20.0.0.1 255.0.0.0 routera config no shut routera config exi...
靜態路由配置
靜態路由配置 配置指令 路由設定 config ip route 目標網段掩碼 下一跳ip位址 例如路由a設定 ip route 192.168.30.0 255.255.255.0 192.168.20.2 路由a設定f0 1 10.0網段 設定閘道器 f0 0介面設定ip位址192.168.20...