总结
总体来说,如果你想转行从事程序员的工作,Java开发一定可以作为你的第一选择。但是不管你选择什么编程语言,提升自己的硬件实力才是拿高薪的唯一手段。
如果你以这份学习路线来学习,你会有一个比较系统化的知识网络,也不至于把知识学习得很零散。我个人是完全不建议刚开始就看《Java编程思想》、《Java核心技术》这些书籍,看完你肯定会放弃学习。建议可以看一些视频来学习,当自己能上手再买这些书看又是非常有收获的事了。
cisco :
enable #进入特权模式
exit #一级一级退出
end #直接退出特权
HuaWei:
system-view #进入系统 视图
system-view
system-view
Enter system view, return user view with Ctrl+Z.
[Huawei]
[Huawei]quit #一级一级退出
returen #直接退出用户视图
cisco:
write #保存
R1#wr
Building configuration…
[OK]
erase:清除配置
R1#erase startup-config
huawei:
save :保存
save
……y
deltete :删除配置
<Hua_R1>delete vrpcfg.zip
cisco:
hostname
R1(config)#hostname R1
huawei:
sysname
[Huawei]sysname Hua_R1
sysname Hua_R1
[Hua_R1]
cisco:
R1(config-if)#ip address 192.168.1.1 255.255.255.0
R1(config-if)#no shutdown #激活接口
R1(config-if)#exit
R1(config)#
注意 :华为不需要激活,默认激活
cisco 里面以 no 开头(删除关闭)
huawei:里面以undo开头(删除,关闭)
cisco :
show 开头
show run #查看当前所以配置
huawei:
display 开头
display current-configuration configuration #查看当前所以配置
cisco:
R1(config)#clock timezone BJ +8 #修改时区
R1(config)#eixt
R1#clock set 15:21:00 FEB 22 2020
R1#show clock
15:21:27.599 BJ Sat Feb 22 2020
R1#
huawei:
clock timezone BJ add 8 #设置时区
clock datetime 17:55:00 2020-02-22 #设置时间
display clock #查看时间
2020-02-22 01:56:01
Saturday
Time Zone(BJ) : UTC+08:00
console 口配置
R1(config)#line console 0 #进入console口
R1(config-line)#password wyh123 #设置密码
R1(config-line)#login #生效
R1(config-line)#exit #退出
R1(config)#
使用本地用户名登录—涉及到权限管理
R2(config)#line console 0 #进入console口
R2(config-line)#login local #本地生效
R2(config-line)#exit
R2(config)#username ccna password ccna #设置本地用户 密码
HUAWEI:
注意:cisco私有加密
R2(config)#service password-encryption #加密所以密码
============
HUAWEI:
[HAUWEI]user-interface console 0 # 进入console口
[HAUWEI-ui-console0]authentication-mode password #选择认证模式
[HAUWEI-ui-console0]set authentication password cipher 设置认证秘密
[HAUWEI-ui-console0]qui #退出
[HAUWEI]
telent 配置
cisco:
R2(config)#line vty 0 4
R2(config-line)#password cisco
R2(config-line)#transport input telent #只允许telent远程登录
R2(config-line)#login
R2(config-line)#exit
R2(config)#banner login “hello world!” #登录前提示语
R2(config)#banner exec “tong xue ni hao!!” #登录成功后提示语
验证
R1#telnet 192.168.1.2
Trying 192.168.1.2 … Open
hello world!
User Access Verification
Password:
% Password: timeout expired!
Password: tong xue ni hao!!
R2>
==============
HUAWEI:
[R2]telnet server enable #开启telent功能
[R2]user-interface vty 0 4 #进入vty 口
[R2-ui-console0]authentication-mode aaa #选择aaa认证模式
[R2-ui-console0]quit
[R2]aaa
[R2-aaa]local-user wyh password cipher hcie #配置用户名,密码
[R2-aaa]local-user wyh service-type telnet 选择服务
[R2-aaa]local-user wyh privilege level 3 #给与权限
[Huawei]header login information ‘shu ru qian ti shi’ #登录前提示信息
[Huawei]header shell information 'deng lu hou ti shi’ #登录后提示信息
验证:
telnet 1.1.1.2
Trying 1.1.1.2 …
Press CTRL+K to abort
Connected to 1.1.1.2 …
shu ru mi ma qian ti shi #登录前提示的
Login authentication
Username:admin
Password:
deng lu hou ti shi #登录后提示的
Info: The max number of VTY users is 10, and the number
of current VTY users on line is 1.
The current login time is 2020-02-22 17:49:26.
SSH 配置
CISCO:
R2(config)#ip domain-name cisco.com #设置域名
R2(config)#crypto key generate rsa #生成RSA密钥
The name for the keys will be: R2.cisco.com
Choose the size of the key modulus in the range of 360 to 2048 for your
General Purpose Keys. Choosing a key modulus greater than 512 may take
a few minutes.
How many bits in the modulus [512]: 2048 #密码长度
% Generating 2048 bit RSA keys, keys will be non-exportable…[OK]
R2(config)#
R2(config)#line vty 0 4
R2(config-line)#transport input ssh #设置SSH登录
R2(config-line)#login local
R2(config-line)#exit
R2(config)#
R2(config)#ip ssh time-out 30 #设置超时秒数
R2(config)#ip ssh authentication-retries 3
#设置认证次数
================
HUAWEI:
一、在本地设备服务端生成秘钥对
rsa local-key-pair create
二、配置VTY
[HAUWEI]user-interface vty 0 4 #进入虚拟终端
[HAUWEI-ui-vty0-4]authentication-mode aaa #认证模式AAA
[HAUWEI-ui-vty0-4]protocol inbound ssh #配置允许登录接入用户类型的协议(all | ssh | telnet)
[HAUWEI-ui-vty0-4]quit
[HAUWEI]
三、创建用户以及密码
Huawei]aaa #进入AAA
[Huawei-aaa]local-user admin password cipher admin privilege level 3 #设置用户名密码、用户等级
四、打开服务以及认证方式
[Huawei]stelnet server enable #打开SSH
[Huawei]ssh user admin authentication-type password #认证模式为密码模式
[Huawei]ssh user admin service-type stelnet
#服务方式
访问权限
主流大类:
1、思科设备:IOS
2、华为设备:VRP
3、锐捷设备:
4、华三设备:
启动步骤:
加电自检–> 加载系统–> 加载配置
最后
我还为大家准备了一套体系化的架构师学习资料包以及BAT面试资料,供大家参考及学习
已经将知识体系整理好(源码,笔记,PPT,学习视频)
e stelnet
#服务方式
访问权限
主流大类:
1、思科设备:IOS
2、华为设备:VRP
3、锐捷设备:
4、华三设备:
启动步骤:
加电自检–> 加载系统–> 加载配置
最后
我还为大家准备了一套体系化的架构师学习资料包以及BAT面试资料,供大家参考及学习
已经将知识体系整理好(源码,笔记,PPT,学习视频)
[外链图片转存中…(img-hO3JJPlv-1715796332080)]
[外链图片转存中…(img-gznZR2ej-1715796332081)]
[外链图片转存中…(img-UWDgfo6B-1715796332081)]