您现在的位置: 精品资料网 >> 行业分类 >> IT行业 >> 资料信息

论校园网设备配置的操作步骤(doc 16页)

所属分类:
IT行业
文件大小:
117 KB
下载地址:
相关资料:
校园网,设备配置,操作步骤
论校园网设备配置的操作步骤(doc 16页)内容简介
论校园网设备配置的操作步骤内容提要:
路由器A的配置:
1.配置路由器主机名
Red-Giant>enable                   (注:从用户模式进入特权模式)
Red-Giant#configure terminal        (注:从特权模式进入全局配置模式)
Red-Giant(config)#hostname A        (注:将主机名配置为“A”)
A(config)#
2.配置路由器远程登陆密码
A(config)# line vty 0 4           (注:进入路由器vty0至vty4虚拟终端线路模式)
A(config-line)#login
A(config-line)#password star    (注:将路由器远程登陆口令设置为“star”)
3.配置路由器特权模式口令
A(config)#enable password star(明文方式进入)
或:A(config)#enable secret star(加密方式进入)
(注:将路由器特权模式口令配置为“star”)
4.为路由器各接口分配IP地址
A(config)#interface fastethernet 0       注:进入路由器fastethernet 0的接口配置模式
A(config-if)#ip address 172.16.1.1 255.255.255.0
注:设置路由器fastethernet 0的IP地址为172.16.1.1,对应的子网掩码为255.255.255.0
A(config-if)#no shut(注意要打开端口,不要忘记操作)

..............................