配置网络设备,需要使用console线,在PC上需要使用软件 “超级终端”
可以查看交换机的额基本简单信息,且不能做任何修改配置!
进入方法在switch>下敲enable(缩写en)进入特权模式
switch##
可以查看所有配置,且不能修改配置,但可以做测试,保存初始化等操作
switch#中敲 configure terminal(缩写conf t)
switch(config)##
默认不能查看配置! 可以修改配置,且全局生效!
switch(config)## 中敲 interface f0/1 (缩写int f0/1)
switch(config-if)##
默认不能查看配置! 可以修改配置,且对该端口生效!
switch(config)## 中敲line console 0 (缩写 line co 0)
默认不能查看配置! 可以修改配置,且对console口生效!
exit
退出一级end
直接退到特权模式?
查询命令相当于 -help
可以补全命令
conf t
hostname 更改计算机名
line co 0
password 密码
login
exit
在内存中,存在一个配置文件文件: running-config
第一次开机系统会在内存中自动创建一个空的running-config配置文件
交换机开机动作:先去硬盘中找startup-config是否存在,如果不存在,在内存中创建新的runing-config,若存在,则复制到内存中并改名为running-config
en
copy running-config startup-config
或
write
en
show running-config(思科)/display (华为)
sh ru
en
show starup-config(思科)/display (华为)
en
reload
conf t
enable password 密码(明文)
endble secret 密码(密文)(密文会覆盖明文)
show mac-address-table
show ip int beief
sh ip int b
int f0/(端口)
shutdown
exitint f0/(端口)
no shutdown
exit
用途:其他模式加do空格也可以强制使用特权模式的命令
do sh run
do sh ip int b
do wr
en
eraser startup-config
int f/0
ip add 10.1.1.254 255.255.255.0
no shut
exit
conf t
line vty 0 4
transport intput telnet/ssh/none/all
password 密码
login //启用验证 同理 no login 关闭验证
exit
conf t
line vty 0 4
transport intput telnet/ssh/none/all
login local
exit
username xx password 123.com //建立一个数据库账号为xx 密码123.com
conf t
hostname r1
ip domain-name r1.qf.com //进入子名明域名为r1.qf.com
crypto key generate rsa //生成密钥对!
line vty 0 4
transport intput ssh
password 密码
login //启用验证 同理 no login 关闭验证
exit
username xx password 123.com