- 1、本文档共7页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
路由器基本配置及实例
基本输入命令:
Routerenable \\进入特权模式
Router#configure terminal \\进入全局模式
Router(config)#hostname R3 \\设置主机名
R3(config)#enable secret 123 \\设置特权加密密码(第2级密码)
R3(config)#line console 0 \\进入CONSOLE管理端口
R3(config-line)#password 123 \\设置CONSOLE密码
R3(config-line)#login \\启用密码
R3(config-line)#exit \\退回全局模式
R3(config)#line vty 0 4 \\进入VTY管理端口
R3(config-line)password cisco \\设置VTY密码
R3(config-line)login \\启用密码
R3(config-line)#exit \\退回全局模式
R3(config)#interface fastEthernet 0/0 \\进入端口配置
R3(config-if)#ip address 192.168.1.1 255.255.255.0 \\设置端口IP地址
R3(config-if)#no shutdown \\打开端口
R3(config-if)#exit
R3(config)#no ip domain lookup \\关闭域名查询功能(默认开启)
R3(config)#line console 0
R3(config-line)#exec-timeout 0 \\关闭CONSOLE口超时
R3(config-line)#logging synchronous \\启用日志同步
R3(config)#exit
R3#show running-config \\在特权模式下查看配置文件
R3#copy running-config startup-config \\退到特权模式下
保存配置
Destination filename [startup-config]?
Building configuration...
[OK]
实例:
R3ENABLE
R3#conf
R3#configure
Configuring from terminal, memory, or network [terminal]?
Enter configuration commands, one per line. End with CNTL/Z.
R3(config)#
R3(config)#inter s 1/0
R3(config-if)#ip add 23.1.1.1 255.255.255.0
R3(config-if)#
R3(config-if)#
R3(config-if)#inter s 1/1
R3(config-if)#ip add 34.1.1.1 255.255.255.0
R3(config-if)#no sh
R3(config-if)#
01:00:40: %LINK-3-UPDOWN: Interface Serial1/1, changed state to up
01:00:41: %LINEPROTO-5-UPDOWN: Line protocol on Interface Serial1/1, changed sta
te to up
R3(config-if)#
R3(config-if)#
01:01:11: %LINEPROTO-5-
文档评论(0)