首页 > 代码库 > 路由器配置Telnet

路由器配置Telnet

  1. 实验目的:在交换机上配置Telnet。

  2. 实验原理:在两台路由器上配置VLAN和IP,用双绞线把两台路由器的端口连接起来,配置VLAN和IP,最后可以在这两台路由器上中的任何一台上登录上另一台路由器。

  3. 实验仪器:路由器两台

  4. 实验方法及步骤:

    Router>enable                    ...................................进入路由器的特权模式

    Router#configure terminal            ................................进入路由器的全局配置模式

    Enter configuration commands, one per line.  End with CNTL/Z.

    Router(config)#interface f0/0         ...............................进入路由器的f0/0端口

    Router(config-if)#ip address 192.168.1.1 255.255.255.0   ...配置路由器f0/0端口的Ip地址

    Router(config-if)#no shutdown             .......................启用f0/0端口

    %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)#end          ..............................退出配置模式

    Router#

    %SYS-5-CONFIG_I: Configured from console by console

    Router#configure terminal               

    Enter configuration commands, one per line.  End with CNTL/Z.

    Router(config)#line vty 0 4        ...................进入路由器的VTY虚拟终端

    Router(config-line)#password homechen

    Router(config-line)#login     .....................以上两行配置VTY(即telent)的密码

    Router(config-line)#exit

    Router(config)#enable password homechen   ..............配置进入路由器特权模式的密码

    Router(config)#end

  5. 实验记录:

技术分享

技术分享

技术分享

6.实验结果:Telnet适合网络覆盖面积大的路由与交换。

路由器配置Telnet