实验拓扑图:
PC0
IP: 192.168.1.2
Submask: 255.255.255.0
Gateway: 192.168.1.1
PC1
IP: 192.168.2.2
Submask: 255.255.255.0
Gateway: 192.168.2.1
配置过程:
R2
en
conf t
hostname R2
int fa 1/0
no shut
ip address 192.168.1.1 255.255.255.0
exit
int serial 2/0
ip address 192.168.3.1 255.255.255.0
clock rate 64000(必须配置时钟才可通信)
no shut
end
R3
en
conf t
hostname R3
int fa 1/0
ip address 192.168.2.1 255.255.255.0
no shut
exit
int serial 2/0
ip address 192.168.3.2 255.255.255.0
no shut
end
R2
en
conf t
ip route 192.168.2.0 255.255.255.0 192.168.3.2
end
show ip route
R3
en
conf t
ip route 192.168.1.0 255.255.255.0 192.168.3.1
end
show ip route
测试结果:
PC0 Ping PC1
若将路由器R2端口fa1/0的ip地址设置为192.168.1.3
测试结果:
PC0 Ping PC1
分析:
网关是局域网各个主机所共用的,也即路由器地址,默认网关一定是路由器的ip地址,因为局域网中所有主机信息的网络出口就是路由的那个端口。路由器的ip地址(主机默认网关)和所有主机的ip地址在同一个网段,但是不能冲突。
本文出自 “DOSOM” 博客,谢绝转载!
原文地址:http://8656934.blog.51cto.com/8646934/1745122