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

推荐订阅源

W
WeLiveSecurity
T
The Exploit Database - CXSecurity.com
C
CXSECURITY Database RSS Feed - CXSecurity.com
S
Security @ Cisco Blogs
T
Threat Research - Cisco Blogs
TaoSecurity Blog
TaoSecurity Blog
Recent Commits to openclaw:main
Recent Commits to openclaw:main
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
腾讯CDC
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
T
The Blog of Author Tim Ferriss
Microsoft Azure Blog
Microsoft Azure Blog
罗磊的独立博客
F
Full Disclosure
博客园 - 【当耐特】
C
CERT Recently Published Vulnerability Notes
Engineering at Meta
Engineering at Meta
Application and Cybersecurity Blog
Application and Cybersecurity Blog
T
Threatpost
I
Intezer
V2EX - 技术
V2EX - 技术
H
Hackread – Cybersecurity News, Data Breaches, AI and More
The Hacker News
The Hacker News
小众软件
小众软件
Google DeepMind News
Google DeepMind News
T
Tailwind CSS Blog
D
Darknet – Hacking Tools, Hacker News & Cyber Security
B
Blog RSS Feed
Microsoft Security Blog
Microsoft Security Blog
N
News | PayPal Newsroom
MyScale Blog
MyScale Blog
AI
AI
Vercel News
Vercel News
Spread Privacy
Spread Privacy
美团技术团队
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
The GitHub Blog
The GitHub Blog
V
Vulnerabilities – Threatpost
Schneier on Security
Schneier on Security
Cyberwarzone
Cyberwarzone
G
GRAHAM CLULEY
Help Net Security
Help Net Security
Hacker News: Ask HN
Hacker News: Ask HN
Google DeepMind News
Google DeepMind News
MongoDB | Blog
MongoDB | Blog
L
LINUX DO - 热门话题
U
Unit 42
L
LangChain Blog
Recent Announcements
Recent Announcements

博客园 - 阿良

家庭光纤宽带连接示意图 学习: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------开启管理地址的默认网关,这样从别的网段才能远程进去管理,同时注意这个网关必须在三层交换机上已经开启。