1.3 防火墙通过TELNET登录设备

news/2024/11/17 19:04:37/

防火墙通过TELNET登录设备

在这里插入图片描述

需求:使远程管理员能够通过telnet方式登录到设备上进行管理

序号任务任务说明备注
1物理连接
2登录设备
3配置设备telnet设备默认不支持telnet功能,必须开启telnet功能,以及用于远程登录设备的账号密码等。重点
4测试telnet功能如图

配置设备telnet

  • 1.开启telnet
  • 2.配置登录接口
    • 2.1配置接口的IP地址用于登录
    • 2.2配置接口的访问控制功能(可选,防火墙业务口需要此步骤)
    • 2.3配置接口加入安全区域(可选,防火墙业务口需要此步骤)
  • 3.配置管理员信息
    • 3.1配置VTY管理员认证方式为AAA
    • 3.2配置telnet管理员
    • 3.3为管理员绑定角色(可选,仅防火墙支持)
  • 4.登录设备
步骤对应代码
2.配置登录接口2.1配置接口的IP地址用于登录
2.2配置接口的访问控制功能(可选,防火墙业务口需要此步骤)
2.3配置接口加入安全区域(可选,防火墙业务口需要此步骤)
2.1配置接口的IP地址用于登录<USG6000V1>system-view
Enter system view, return user view with Ctrl+Z.

[USG6000V1]telnet server enable
Info: The Telnet server has been enabled.

[USG6000V1]interface g0/0/0

[USG6000V1-GigabitEthernet0/0/0]ip address 192.168.100.100 24
Error: The address already exists.
2.2配置接口的访问控制功能(可选,防火墙业务口需要此步骤)[USG6000V1-GigabitEthernet0/0/0]service-manage enable

[USG6000V1-GigabitEthernet0/0/0]service-manage telnet permit

[USG6000V1-GigabitEthernet0/0/0]service-manage https permit

[USG6000V1-GigabitEthernet0/0/0]quit
2.3配置接口加入安全区域(可选,防火墙业务口需要此步骤)[USG6000V1]firewall zone trust

[USG6000V1-zone-trust]add interface GigabitEthernet 0/0/0
Error: The interface has been added to trust security zone.

[USG6000V1-zone-trust]quit
3.配置管理员信息3.1配置VTY管理员认证方式为AAA
3.2配置telnet管理员
3.3为管理员绑定角色(可选,仅防火墙支持)
3.1配置VTY管理员认证方式为AAA[USG6000V1]user-interface vty 0 4

[USG6000V1-ui-vty0-4]authentication-mode aaa
Warning: The level of the user-interface(s) will be the default level of AAA use
rs, please check whether it is correct.

[USG6000V1-ui-vty0-4]protocol inbound telnet

[USG6000V1-ui-vty0-4]user privilege level 3

[USG6000V1-ui-vty0-4]quit
3.2配置telnet管理员[USG6000V1]aaa

[USG6000V1-aaa]manager-user telnetuser

[USG6000V1-aaa-manager-user-telnetuser]password cipher Admin@1234
Info: You are advised to config on man-machine mode.

[USG6000V1-aaa-manager-user-telnetuser]service-type telnet
Warning: The user access modes include Telnet or FTP, so security risks exist.

[USG6000V1-aaa-manager-user-telnetuser]level 3
Warning: The user binds a role, it’s not allowed to change its level

[USG6000V1-aaa-manager-user-telnetuser]quit

3.3为管理员绑定角色(可选,仅防火墙支持)[USG6000V1-aaa]bind manager-user telnetuser role system-admin

[USG6000V1-aaa]quit
<USG6000V1>system-view 
Enter system view, return user view with Ctrl+Z.[USG6000V1]telnet server enable 
Info: The Telnet server has been enabled.[USG6000V1]interface g0/0/0[USG6000V1-GigabitEthernet0/0/0]ip address 192.168.100.100 24
Error: The address already exists.[USG6000V1-GigabitEthernet0/0/0]service-manage enable [USG6000V1-GigabitEthernet0/0/0]service-manage telnet permit [USG6000V1-GigabitEthernet0/0/0]service-manage https permit [USG6000V1-GigabitEthernet0/0/0]quit[USG6000V1]firewall zone trust [USG6000V1-zone-trust]add interface GigabitEthernet 0/0/0Error: The interface has been added to trust security zone. [USG6000V1-zone-trust]quit[USG6000V1]user-interface vty 0 4[USG6000V1-ui-vty0-4]authentication-mode aaa
Warning: The level of the user-interface(s) will be the default level of AAA use
rs, please check whether it is correct.[USG6000V1-ui-vty0-4]protocol inbound telnet [USG6000V1-ui-vty0-4]user privilege level 3[USG6000V1-ui-vty0-4]quit[USG6000V1]aaa[USG6000V1-aaa]manager-user telnetuser[USG6000V1-aaa-manager-user-telnetuser]password cipher Admin@1234
Info: You are advised to config on man-machine mode.[USG6000V1-aaa-manager-user-telnetuser]service-type telnet 
Warning: The user access modes include Telnet or FTP, so security risks exist.[USG6000V1-aaa-manager-user-telnetuser]level 3Warning: The user binds a role, it's not allowed to change its level[USG6000V1-aaa-manager-user-telnetuser]quit[USG6000V1-aaa]bind manager-user telnetuser role system-admin [USG6000V1-aaa]quit[USG6000V1]quit<USG6000V1>save
The current configuration will be written to hda1:/vrpcfg.cfg.
Are you sure to continue?[Y/N]Y
Now saving the current configuration to the slot 0.
Apr 28 2023 08:22:42 USG6000V1 %%01CFM/4/SAVE(s)[0]:The user chose Y when decidi
ng whether to save the configuration to the device.
Save the configuration successfully.

测试

在这里插入图片描述

在这里插入图片描述

1.3通过telnet登录设备拓扑(网络安全设备小白从零开始)


http://www.ppmy.cn/news/53154.html

相关文章

实例分割算法BlendMask

实例分割算法BlendMask 论文地址&#xff1a;https://arxiv.org/abs/2001.00309 github代码&#xff1a;https://github.com/aim-uofa/AdelaiDet 我的个人空间&#xff1a;我的个人空间 密集实例分割 ​ 密集实例分割主要分为自上而下top-down与自下而上bottom-up两类方法…

SQL Server 数据查询

文章目录 前言首先在SQL Server 2008 中新建一个数据库chaxun.在库中建三个表,结构如下表所示,并且录入数据.1.2.(1)在KC表中查询学分低于三分的课程信息&#xff0c;并按课程号升序排列(2)在XS_KC表中按学号分组汇总学生的平均分&#xff0c;并按平均分的降序排列(3)在XS_KC表…

第二届SWCTF部分WP

1、misc &#xff08;1&#xff09;Misc1 下载附件&#xff0c;压缩包里面有两张jpg图片 解压后习惯性的放进kali里面分析一下&#xff0c;没有隐藏文件 放到Stegsolve里分析&#xff0c;因为是两张一样的图片&#xff0c;combiner也没啥发现 分别对两张图片单独分析也没有发…

小家电遇冷,苏泊尔、九阳、小熊电器求变

最近几年&#xff0c;受懒人经济、消费者居家时间变长、“一人食”潮流兴起等多方因素的共同影响&#xff0c;小家电行业迅速崛起&#xff0c;并一度在整体萎靡的家电市场中实现了逆势增长&#xff0c;成为了一颗耀眼的新星。得益于此&#xff0c;小家电行业也迎来了一波“上市…

【PaddleNLP-kie】关键信息抽取2:UIE模型做图片信息提取全流程

文章目录 本文参考UIE理论部分step0、UIEX原始模型使用网页体验本机安装使用环境安装使用docker的环境安装快速开始 step1、UIEX模型微调&#xff08;小样本学习&#xff09;数据标注&#xff08;label_studio&#xff09;导出数据转换微调训练&#xff1a;评估&#xff1a;定制…

mysql新建,更新,删除表语句

1.建表语句 一般最简单的建表语句可包含下面4个部分&#xff0c;create_definition 包含列的定义&#xff0c;索引定义等&#xff0c;table_options 包含一些选项如engine 是innodb还是myISAM等&#xff0c;CHARACTER指定字符集等选项&#xff0c;partition_options 是涉及到表…

minigpt4搭建过程记录,简单体验图文识别乐趣

引言 从3月开始&#xff0c;aigc进入了疯狂的开端&#xff0c;正如4月12日无界 AI直播 在《探索 AIGC 与人类合作的无限可能》中关于梳理的时间线一样&#xff0c;aigc的各种产品如雨后春笋般进入了不可逆的态势&#xff0c;里面有句话很形象&#xff0c;人间一日&#xff0c;…

软件保护器:Themida 3.1.14 Crack

先进的Windows软件保护系统 版本&#xff1a;3.1 版本&#xff1a;3.1.4.0 日期&#xff1a;2022 年 11 月 10 日 概述 在创建应用程序时&#xff0c;Compiler 会将应用程序源代码编译成多个由机器语言代码构成的目标文件。然后将目标文件链接在一起以创建最终的可执行文件。 与…