惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

S
Secure Thoughts
罗磊的独立博客
T
The Blog of Author Tim Ferriss
人人都是产品经理
人人都是产品经理
博客园 - 叶小钗
Last Week in AI
Last Week in AI
美团技术团队
Google Online Security Blog
Google Online Security Blog
Application and Cybersecurity Blog
Application and Cybersecurity Blog
D
Docker
G
Google Developers Blog
大猫的无限游戏
大猫的无限游戏
酷 壳 – CoolShell
酷 壳 – CoolShell
小众软件
小众软件
月光博客
月光博客
L
LINUX DO - 最新话题
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
W
WeLiveSecurity
H
Heimdal Security Blog
Vercel News
Vercel News
SecWiki News
SecWiki News
Forbes - Security
Forbes - Security
Blog — PlanetScale
Blog — PlanetScale
Google DeepMind News
Google DeepMind News
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
www.infosecurity-magazine.com
www.infosecurity-magazine.com
TaoSecurity Blog
TaoSecurity Blog
T
Troy Hunt's Blog
A
About on SuperTechFans
C
Check Point Blog
S
Security Affairs
Hacker News - Newest:
Hacker News - Newest: "LLM"
AI
AI
WordPress大学
WordPress大学
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
Help Net Security
Help Net Security
博客园_首页
The Last Watchdog
The Last Watchdog
S
SegmentFault 最新的问题
Hugging Face - Blog
Hugging Face - Blog
Security Archives - TechRepublic
Security Archives - TechRepublic
Engineering at Meta
Engineering at Meta
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
I
Intezer
K
Kaspersky official blog
M
MIT News - Artificial intelligence
J
Java Code Geeks
G
GRAHAM CLULEY
P
Palo Alto Networks Blog

博客园 - 阿良

家庭光纤宽带连接示意图 学习:ups电池放电时间是怎么计算的? 由于没有远程桌面授权服务器可以提供许可证,远程回话被中断--已经解决 DOS下常用网络命令技巧 远程桌面限制用户使用同一个会话 怎么让Windows2012和Windows2008多用户同时远程---经过测试有效 网络管理知识相关学习网站 关于VMware Linux 虚拟机忘记root 密码找回 【交换机】交换机RLDP(环路检测&链路检测)功能介绍及配置说明 在interface vlan下敲no ip proxy-arp什么意思 思科模拟器学习1 OLT、分光器、ONU直接的关系 分光器 PON 原创:千兆光模块和百兆光收发器的兼容问题 原创:两台交换机通过光纤相连,为什么一个交换机的光模块的灯是亮的,另一个交换机的光模块的灯是灭的? 安防工程商必须知道的PoE供电真相 双绞线的知识 单模光纤与多模光纤的区别
锐捷交换机如何配置远程管理地址(telnet)
阿良 · 2019-05-22 · via 博客园 - 阿良

基本命令如下:

hostname(config)#username admin password 123456  ------>telnet 登录账号为admin密码为123456
hostname(config)#username admin privilege 15------>赋予admin账号最高权限hostname(config)#service password-encryption------>为所有密码加密

hostname(config)#line vty 0 35  ------>  进入line模式,进入telnet密码配置模式,0 35表示允许共36个用户同时telnet登入到交换机,VTY表示虚拟(Virtual Teletype Terminal)虚拟终端
hostname(config-line)#login  local   ------> 设置远程登录时,先输入用户名,再输入密码后才能登录。
hostname(config)#line console 0    ------>对console 0 端口进行配置

其它:
(1)创建vlan,将端口划分到vlan

hostname(config)#vlan 11    ------>创建vlan 11
hostname(config)#vlan 12    ------>创建vlan 12
hostname(config)#interface range f0/1-24 
hostname(config-if-range)#switchport access vlan 11  ------>创建将f0/1到f0/24划分到vlan 11

(2)为vlan配置远程登录地址、开启管理地址的默认网关

hostname(config)#interface vlan 12  ------进入vlan 12
hostname(config)# no shutdown------开启vlan 12
hostname(config-if-vlan)#ip address 192.168.12.12 255.255.255.0-----配置vlan 12的IP地址,也就是telnet的远程管理地址
hostname(config)#ip default-gateway 192.168.12.1------开启管理地址的默认网关,这样从别的网段才能远程进去管理,同时注意这个网关必须在三层交换机上已经开启。