欢迎来到淘文阁 - 分享文档赚钱的网站! | 帮助中心 好文档才是您的得力助手!
淘文阁 - 分享文档赚钱的网站
全部分类
  • 研究报告>
  • 管理文献>
  • 标准材料>
  • 技术资料>
  • 教育专区>
  • 应用文书>
  • 生活休闲>
  • 考试试题>
  • pptx模板>
  • 工商注册>
  • 期刊短文>
  • 图片设计>
  • ImageVerifierCode 换一换

    2022年2022年路由器交换机基本配 .pdf

    • 资源ID:32514022       资源大小:36.49KB        全文页数:4页
    • 资源格式: PDF        下载积分:4.3金币
    快捷下载 游客一键下载
    会员登录下载
    微信登录下载
    三方登录下载: 微信开放平台登录   QQ登录  
    二维码
    微信扫一扫登录
    下载资源需要4.3金币
    邮箱/手机:
    温馨提示:
    快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。
    如填写123,账号就是123,密码也是123。
    支付方式: 支付宝    微信支付   
    验证码:   换一换

     
    账号:
    密码:
    验证码:   换一换
      忘记密码?
        
    友情提示
    2、PDF文件下载后,可能会被浏览器默认打开,此种情况可以点击浏览器菜单,保存网页到桌面,就可以正常下载了。
    3、本站不支持迅雷下载,请使用电脑自带的IE浏览器,或者360浏览器、谷歌浏览器下载即可。
    4、本站资源下载后的文档和图纸-无水印,预览文档经过压缩,下载后原文更清晰。
    5、试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。

    2022年2022年路由器交换机基本配 .pdf

    一、配置路由器密码1、console password RouterenRouter#conf t Enter configuration commands, one per line. End with CNTL/Z. Router(config)#line console 0 Router(config-line)#login (该项为登陆检测, 不要忘记)Router(config-line)#password ciscoRouter(config-line)#exit Router(config)#exit %SYS-5-CONFIG_I: Configured from console by console Router#exit 执行这条命令后显示如下Router con0 is now available Press RETURN to get started. 再回车显示User Access V erification Password: (此处需要输入密码: cisco )Router 2、设置虚拟终端密码(Virtual Terminal Password )Routeren Router#conf t Enter configuration commands, one per line. End with CNTL/Z. Router(config)#line vty 0 4 Router(config-line)#login (该项为登陆检测, 不要忘记)% Login disabled on line 66, until password is set % Login disabled on line 67, until password is set % Login disabled on line 68, until password is set % Login disabled on line 69, until password is set % Login disabled on line 70, until password is set Router(config-line)#password sanjoseRouter(config-line)# 3、设置 Enable passwrod 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 1 页,共 4 页 - - - - - - - - - Routeren Router#conf t Enter configuration commands, one per line. End with CNTL/Z. Router(config)#enable password 123 (全局模式下执行该命令)Router(config)#Z (ctrl+z)%SYS-5-CONFIG_I: Configured from console by console Router#exit (退出)Router con0 is now available Press RETURN to get started. Routeren Password: (此处需要输入密码: sanjose )Router#4、设置 Enable secretRouteren Router#conf tEnter configuration commands, one per line. End with CNTL/Z. Router(config)#enable secret sanfranRouter(config)# Enable password和 enable secret的区别:Enable password ,密码以明文形式显示;enable secret,密码以密文形式显示。在两者同时存在的情况下,enable secret起作用。5、 删除密码Router(config)#no login (登陆不检测)Router(config)#no enable password (或 secret )在计算机中利用 telnet 进行远程登录,必须要先在路由器中设置console密码和vty 密码,之后再 PC 中输入 telnet 192.168.0.1,如下:PCtelnet 192.168.0.1 Trying 192.168.0.1 . User Access V erification Password: 输入 console密码Password: 输入 vty 密码进入路由器后Routeren Password: 输入 enable password ,如果设置了enable secret则输入 enable secret密码。Router# 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 2 页,共 4 页 - - - - - - - - - 二、配置端口 IP 地址Routeren Router#conf t Enter configuration commands, one per line. End with CNTL/Z. Router(config)#int fa0/0 Router(config-if)# ip address 192.168.0.1 255.255.255.0 Router(config-if)# no shutdown (该项为激活端口,不要忘记)%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)# 三、存储配置文件Routeren Router#copy run start (在特权模式下)Destination filename startup-config? Building configuration. OK 四、更改名字RouterenRouter#conf t Enter configuration commands, one per line. End with CNTL/Z. Router(config)#hostname r1 r1(config)# 五、端口描述r1enr1#conf t r1(config)#int fa0/0r1(config-if)# description miaoshuxinxi (对 fa0/0 的端口描述进行设置)r1(config-if)# exit r1(config)#exitr1#show run (可先在特权模式下用show run 命令查看端口的描述信息,配置完后再用该命令查看端口的描述信息)Building configuration. 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 3 页,共 4 页 - - - - - - - - - Current configuration : 399 bytes version 12.4 no service password-encryption hostname r1 ! ip ssh version 1 ! interface FastEthernet0/0 description miaoshuxinxi (此处为设定的描述内容 ) ip address 192.168.0.1 255.255.255.0 duplex auto speed auto 六、显示登录信息r1enr1#conf t Enter configuration commands, one per line. End with CNTL/Z. r1(config)#banner motd # zai ci xian shi deng lu hou xian shi de xin xi! # (显示登录后的信息, 以#开始,以 # 结束)r1(config)#exit%SYS-5-CONFIG_I: Configured from console by console r1#copy run start (特权模式下执行该命令)Destination filename startup-config? Building configuration. OK r1#exitr1 con0 is now available Press RETURN to get started. zai ci xian shi deng lu hou xian shi de xin xi! r1 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 4 页,共 4 页 - - - - - - - - -

    注意事项

    本文(2022年2022年路由器交换机基本配 .pdf)为本站会员(C****o)主动上传,淘文阁 - 分享文档赚钱的网站仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知淘文阁 - 分享文档赚钱的网站(点击联系客服),我们立即给予删除!

    温馨提示:如果因为网速或其他原因下载失败请重新下载,重复下载不扣分。




    关于淘文阁 - 版权申诉 - 用户使用规则 - 积分规则 - 联系我们

    本站为文档C TO C交易模式,本站只提供存储空间、用户上传的文档直接被用户下载,本站只是中间服务平台,本站所有文档下载所得的收益归上传人(含作者)所有。本站仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。若文档所含内容侵犯了您的版权或隐私,请立即通知淘文阁网,我们立即给予删除!客服QQ:136780468 微信:18945177775 电话:18904686070

    工信部备案号:黑ICP备15003705号 © 2020-2023 www.taowenge.com 淘文阁 

    收起
    展开