好像有点领悟,但我还是不知道具体怎么做啊,比如在路由器输入什么命令啊,或在两步电脑里要怎么做,我也不会做路由表,你能把命令输出来吗,因为我真的不懂谢谢
追答等于两个IP段互相指向对方的IP作为网关,设定参数,打勾后,再重启路由就生较了.
详细啊,这样说,我还是不知道具体怎么做啊,我按照你的说法去做了,但灯还是红色的,请把具体做法和命令写给我好吗
追答路由器的端口名发出来
追问不是f0/0 和f0/1 么,它只有这两个端口啊
追答路由器:
en
conf t
line con 0
no exec-t
logg sy
exit
no ip do lo
interface f0/0
ip add 192.168.1.1 255.255.255.0
no shut
interface f0/1
ip add 192.168.2.1 255.255.255.0
no shut
do show ip interface brief
查看一下这两个端口是否都开启了(UP)
打盘魔兽先,等下回来试试,再告诉我电脑怎么设好么,还有line con 0 和logg sy no ip do lo这几个命令看不懂,有什么作用的呢?
追答logging synchronous(在控制台启用同步记录功能)
line console 0 进入控制台
no ip domain-lookup:告诉Router不要对它不知道的字符串做DNS解析,否则当你敲错命令的时候,它就会傻找。
电脑上的IP设置:接F0/0的电脑IP设为192.168.1.2 255.255.255.0 网关192.168.1.1 DNS设为你们本地的DNS服务器地址,另一台类似
我用双绞线就是你看到的上面图用的线,怎么配置都不行,但用交叉线就连通了,问题是不是出在这里呢
本回答被提问者采纳线用错了;2.路由两端口配置IP,F0/0:192.168.1.1 255.255.255.0 F0/1 192.168.2.1 255.255.255.0
3.两PC上配置IP PC1:192.168.1.2 255.255.255.0 网关是192.168.1.1 PC2:192.168.2.2 255.255.255.0 网关是192.168.2.1
Router>enable
Router#config terminal
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#interfac f0/0
Router(config-if)#ip address 192.168.1.1 255.255.255.0
Router(config-if)#no shutdown
Router(config-if)#
%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up
Router(config-if)#do wr
Building configuration...
[OK]
Router(config-if)#interface f0/1
Router(config-if)#ip address 192.168.2.1 255.255.255.0
Router(config-if)#no shutdown
Router(config-if)#
%LINK-5-CHANGED: Interface FastEthernet0/1, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to up
Router(config-if)#do wr
Building configuration...
[OK]