一、密码重置
10.4及之后版本:
手动重启设备-->ctrl+c -->
rename config.text config.bak
load 加载主程序
-->重启完成后:
rename flash:config.bak flash:config.text
copy startup-config running-config
enable secret ruijie 修改enable密码为ruijie
line vty 0 4
password ruijie 修改远程登录密码为ruijie
login
end
wr 保存配置
其他版本大同小异
二、配置设备登录
1、创建管理IP
二层交换机
enable
config terminal
vlan 100
int vlan 100
ip address 192.168.1.1 255.255.255.0
end
wr
三层交换机
方法一,同二层交换机
方法二:
enable
config terminal
int f0/1
no switchport 将端口设置为三层口,否则无法配置IP
ip add 192.168.1.1 255.255.255.0
end
wr
查看配置
show ip int brief
2、配置默认网关
二层交换机
enable
conf terminal
ip default-gateway 192.168.1.254
show ip redirects
三层交换机
enable
config terminal
ip route 0.0.0.0 0.0.0.0 192.168.1.254
show ip route
3、配置telnet
仅密码登录:
conf terminal
line vty 0 4
login
password ruijie 配置telnet登录密码
exit
enable password ruijie 配置进入特权模式密码
配置用户名密码:
line vty 0 4
login local
exit
username admin password ruijie
enable password ruijie
4、配置web登录
conf terminal
enable service web-server
配置仅使用密码登录:
enable password ruijie
配置用户名和密码进入:
conf terminal
username admin password ruijie
username admin privilege 15
ip http authentication local 配置web登入使用本地的用户名和密码
5、端口配置
enable
conf terminal
int g0/1
speed 100
duplex full
description link-to-xx
medium-type fiber/copper 光电复用口配置
access/trunk口配置
int g0/1
switchport mode access 设置为access模式,默认就是access
switchport access vlan100
int g0/1
switchport mode trunk
switchport trunk allowed vlan remove 1-4,6-9,11-19,31-4094 默认允许所有已经创建的vlan通过,需要配置裁剪,把不允许的vlan裁剪掉
storm-control broadcast pps 200 广播风暴配置
storm-control unicast pps 200
storm-control multicast pps 200
6、其他基本命令
hostname switch 更改主机名
show run 查看配置
clock timezone beijing 8
clock set 18:00:00 12 3 2013 小时:分:秒 月 日 年
show clock
三、DHCP
conf terminal
service dhcp 启用DHCP
int vlan 100
ip address 192.168.1.254 255.255.255.0
ip dhcp pool vlan100
network 192.168.1.0 255.255.255.0
dns-server 218.85.157.99
default-router 192.168.1.254 设置网关地址