要通过 Telnet 访问网络设备,需要通过Console端口对网络设备进行基本配置,例如,IP地址、子网掩码、用户名和登录密码等。本实验以路由器为例,交换机远程管理只是接口名字不同而已,路由器用物理接口,交换机用SVI接口进行管理。

1、实验目的

通过本实验可以掌握:

  • 路由器的CLI工作模式。
  • 通过配置路由器的以太网接口的IP地址及开启接口的方法。
  • 配置Telnet访问相关的信息以及创建用户名和密码的方法
  • SecureCRT软件的使用方法

2、实验拓扑

通过Telnet访问网络设备-LMLPHP

3、实验步骤

3.1、配置路由器的以太网接口IP地址

Router>enable              //进入特权模式
Router#conf t              //进入全局模式
Router(config)#hostname R1                    //修改主机名
R1(config)#interface gigabitEthernet 0/0      //进入以太网接口Gig0/0
R1(config-if)#ip address 192.168.1.254 255.255.255.0     //配置IP地址
R1(config-if)#no shutdown                                //打开接口
R1(config-if)#exit                                       //退出接口

3.2、配置Telnet协议使用的账号密码,设置特权密码。

R1(config)#username zhangsan privilege 15 password cisco123  
//配置账号zhangsan管理级别为15密码为cisco123
R1(config)#username lisi privilege 1 password cisco456
//配置账号李四管理级别为1秘密为cisco456
R1(config)#enable password cisco123
//配置特权模式密码为cisco123

R1(config)#line vty 0 4                 //进入远程线路0 4
R1(config-line)#login local             //调用本地账户密码
R1(config-line)#transport input telnet  //调用Telnet协议
R1(config-line)#exit                    //退出线路

3.3、验证计算机配置IP地址(略)

通过Telnet访问网络设备-LMLPHP

通过Telnet访问网络设备-LMLPHP

通过Telnet访问网络设备-LMLPHP

通过Telnet访问网络设备-LMLPHP

3.4、交换机的配置方法

交换机属于二层设备,不能在以太网接口上配置IP地址,需要在SVI接口上配置。

Switch>enable 
Switch#conf t
Switch(config)#hostname S1
S1(config)#interface vlan 1         //配置SVI接口
S1(config-if)#ip address 192.168.1.253 255.255.255.0   //配置账号密码
S1(config-if)#no shutdown 
S1(config-if)#exit

S1(config)#username zhangsan privilege 15 password cisco   //配置telnet使用的账号密码
S1(config)#enable password cisco123                        //配置特权密码
S1(config)#line vty 0 4                                    //进入线路0 4
S1(config-line)#login local                                //调用本地账户
S1(config-line)#transport input telnet                     //调用Telnet协议
S1(config-line)#exit

3.5、交换机远程Telnet的验证同路由器,可以参考步骤3.3,。

04-03 08:56