谁能具体给我一个cisco 2600路由器的详细实例配置?

2024-12-17 09:49:02
推荐回答(1个)
回答1:

网络的拓扑是这样的:一根入线(外网 10.1.0网段) 先连一个交换机(目的是分出两根线 分流的作用),出来的两根线分别连个路由器(Cisco 2600),路由器设为a,b,每个路由器连一个子网,设为子网A和子网B,A是192.168.0网段,B是192.168.1网段。现在需要配置路由器:
以路由器a为例,上行设为10.1.0.2,下行设为:192.168.0.1
1.一根线,一端连虚拟终端的串行口,一端连路由器的Console口.
2.打开路由器,打开超级终端(附件-通讯-超级终端)
3.观察超级终端,出现#####(正在检测路由器)。。。。。
出现。。。Dialog(yer or no)?yes
.................?yes
full-mutex.....?yes
host name...834-1
secret...834
password...net
virtual password...123
fastethernet0/0
....yes
....yes
....yes
//设上行
ip:10.1.0.2
mask:255.255.255.0
选 2(save)
生效:no shutdown
保存:copy running-config startup-config

834>enable
834#erase startup-config(重新设置路器方法)
//设下行
834-1>enable
password:843
#config t
#interface fastethernet 0/1
#ip address 192.168.0.1 255.255.255.0
834-1(config-if)#no shutdown
#exit
834-1>copy running-config startup-config
[OK]
设完后:把虚拟终端的IP设为:192.168.0.2 255.255.255.0 gate:192.168.0.1
DNS:10.0.0.10
ping 192.168.0.1
ok
ping 10.0.0.2
error
原因:路由器上行 下行 不通
解决:设一条路由
342-1(config-if)#ip default-network
342-1(conifig)#ip router 0.0.0.0 10.1.0.0
不行