cisco交換機
用戶模式、特權模式、全局模式
Switch> 用戶模式 enable
Switch# 特權模式 configure terminal
Switch(config)#
Switch(config)#no ip domain-lookup #關閉域名查找的功能
Switch(config-line)#logging synchronous #配置鼠標選項
Switch(config)#hostname ccna #配置主機名
ccna(config)#no hostname ccna #取消主機名
line console 0
exec-timeout 0 0 #console 口配置 exec-timeout 5 30 五分鐘30s 0 0 不配置超時
回到上一層 exit
回到最初 用end
#安全 配置用戶模式下用戶密碼登陸
全局模式:
line console 0
password 123456
login
推出保存 下次登陸有密碼 這個密碼是進入用戶模式時候的密碼
配置特權模式的密碼:
全局模式下配置 enable secret 123456 #加密的密碼
#配置telnet密碼
Switch(config)#line vty 0 3 #最多可以有四個人登陸
Switch(config-line)#pas
Switch(config-line)#password 123456
Switch(config-line)#login
Switch(config-line)#
#############保存配置 開機啟動過的配置
Switch#copy running-config startup-config
Destination filename [startup-config]?
Building configuration...
[OK]
Switch#
Switch#w #wr或者w都可以 嘗試
Building configuration...
[OK]
Switch#
# 特權模式下 reload 代表重啟系統
Switch#erase startup-config
Erasing the nvram filesystem will remove all configuration files! Continue? [confirm]
[OK]
Erase of nvram: complete
%SYS-7-NV_BLOCK_INIT: Initialized the geometry of nvram
Switch#
#配置交換機的管理端口
Switch(config-if)#ip address 192.168.1.1 255.255.255.0
Switch(config-if)#no shu
Switch(config-if)#no shutdown
Switch(config-if)#
%LINK-5-CHANGED: Interface Vlan1, changed state to up
Switch(config-if)#
##配置交換機的默認網關
Switch(config)#ip default-gateway 192.168.1.254
Switch(config)#
no ip domain-lookup #關閉域名查找的功能
line console 0
Switch(config-line)#logging synchronous
Switch(config-line)#exec-timeout 0 0
外加安全設置
#查看端口的狀態
Switch#show ip interface brief
Interface IP-Address OK? Method Status Protocol
FastEthernet0/1 unassigned YES manual down down
FastEthernet0/2 unassigned YES manual down down
FastEthernet0/3 unassigned YES manual down down
FastEthernet0/4 unassigned YES manual down down
本文出自 “磚家博客” 博客,請務必保留此出處http://wsxxsl.blog.51cto.com/9085838/1932920
cisco交換機