如何才能访问二级路由器下的电脑如何实现二级路由器下面的电脑互相访问
可配置静态路由策略实现,具体以例说明:
方法/步骤如下:
找一台电脑,win7就行,分别登录路由A,B。
-
设置计算机A的IP为192.168.1.2子网掩码为255.255.255.0网关为192.168.1.1
-
设置计算机B的IP为192.168.2.2子网掩码为255.255.255.0网关为192.168.2.1
-
给路由A的fastEthernet 0/0端口配置IP为192.168.1.1子网掩码为255.255.255.0,由于路由默认的端口是关闭的,所以在给路由端口配置好IP以后,要注意用no shutdown命令把端口开启。
如下是配置路由A端口fastEthernet 0/0的所有命令:
Continuewith configuration dialog? [yes/no]: no
Router#configure terminal
Router(config)#interfacefastEthernet 0/0
Router(config-if)#noshutdown
-
给路由A的fastEthernet 1/0端口配置IP为192.168.3.1子网掩码为255.255.255.0,如下是配置路由A端口fastEthernet1/0的所有命令
Router(config-if)#exit
Router(config)#interfacefastEthernet 1/0
Router(config-if)#ipaddress 192.168.3.1 255.255.255.0
Router(config-if)#noshutdown
%link-5-CHANGED:Interface FastEthernet1/0, changed state to up
Router(config-if)#exit
-
给路由B的fastEthernet 1/0端口配置IP为192.168.3.2子网掩码为255.255.255.0,如下是配置路由B端口fastEthernet1/0的所有命令
Continuewith configuration dialog? [yes/no]: no
Router>enable
Router#configure terminal
Enterconfiguration commands, one per line.End with CNTL/Z.
Router(config)#interfacefastEthernet 0/0
Router(config-if)#ipaddress 192.168.3.2 255.255.255.0
Router(config-if)#noshutdown
-
给路由B的fastEthernet 0/0端口配置IP为192.168.2.1子网掩码为255.255.255.0,如下是配置路由A端口fastEthernet1/0的所有命令
Router(config-if)#exit
Router(config)#interface fastEthernet 1/0
Router(config-if)#ip address 192.168.2.1 255.255.255.0
Router(config-if)#no shutdown
%link-5-CHANGED: Interface FastEthernet1/0, changed state to up
Router(config-if)#exit
-
给路由B设置静态跳转,若遇到访问计算机A这个网段的数据包,给他规定了往路由A的1/0端口,跳转,再在跳转后到达的路由查询路由表,查询计算机A的这个网段再转发数据包。
具体命令如下:
Router(config)#iproute 192.168.1.0 255.255.255.0 192.168.3.1
-
在路由A也设置一个跳转,要不数据发送出去了,找不到回来就路,那么就没返回信息了,具体命令如下:
Router(config)#iproute 192.168.2.0 255.255.255.0 192.168.3.2
-
用ping命令测试全网是否连通了!如果前面的步骤你都没操作错的话,那么现在的测试,你会得到结果。
这个要看你的路由是怎么设置的A:如果路由不是当网桥用方法(试下)网上邻居右键→属性→本地连接右键→属性→TCP/IP属性→高级在出来的对话窗中,在IP和网关中添加一个连在一级路由电脑的IP和网关,然后用PING命令测一 下看能不能PING通刚才添加的IP,如果不通,那就到一级路由的那台电脑上照同样的办法添加一下你的电脑IP。
(注意:如果添加不了,那就得关闭你电脑上的DHCP服务,在关闭前,你一定要知道你电脑的正确IP的DNS,不然你电脑是上不了网的。
)这样后你的电脑就可以访问另外一个网断并可以共享B:可以将你的二级路由当网桥来使用
三、两个二级路由下的pc如何实现互访如果只要PC1访问CP2的话,分别在三台路由器上边加静态路由就可以了
0.1的路由器上配置ip route 192.168.3.0 255.255.255.0 1.1的lan口1
1.1的路由器上配置 ip route 192.168.0.0 255.255.255.0 0.1的wan口
ip route 192.168.3.0 255.255.255.0 3.1的wan口
3.1的路由器上配置 ip route 192.168.0.0 255.255.255.0 1.1的lan口2
当然前提是你个个直连电路之间首先都是通的。