通过Telnet访问网络设备

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

1、实验目的

通过本实验可以掌握:

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

2、实验拓扑

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地址(略)

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,。

相关推荐
WTT00118 分钟前
2024楚慧杯WP
大数据·运维·网络·安全·web安全·ctf
杨德杰41 分钟前
QT网络(一):主机信息查询
网络·qt
007php0071 小时前
Go语言zero项目部署后启动失败问题分析与解决
java·服务器·网络·python·golang·php·ai编程
yang_shengy1 小时前
【JavaEE】网络(6)
服务器·网络·http·https
zquwei2 小时前
SpringCloudGateway+Nacos注册与转发Netty+WebSocket
java·网络·分布式·后端·websocket·网络协议·spring
Aimin20223 小时前
路由器做WPAD、VPN、透明代理中之间一个
网络
群联云防护小杜3 小时前
如何给负载均衡平台做好安全防御
运维·服务器·网络·网络协议·安全·负载均衡
爱码小白3 小时前
网络编程(王铭东老师)笔记
服务器·网络·笔记
蜜獾云4 小时前
linux firewalld 命令详解
linux·运维·服务器·网络·windows·网络安全·firewalld
柒烨带你飞4 小时前
路由器转发数据报的封装过程
网络·智能路由器