Console口连接
Console口线连接电脑,用PuTTY或其它终端软件,设置终端参数。参数设置要求如下: 波特率:9600 数据位:8 停止位:1 奇偶校验:无 流量控制:无
---------------------------------------------------------------------------------
show显示信息
show running-config 显示所有配置 show interface statu 查看接口的编号及其状态 show ip interface brief 显示三层接口与IP相关的简要信息 show processes cpu 显示5秒,1分钟,5分钟的平均CPU使用率 show version 显示系统信息
show vlan 显示vlan
--------------------------------------------------------------------------------
保存配置
write
SSH启用
F10交换机的telnet/ssh服务默认已经启用(较低版本的固件默认不启用ssh服务)。如需手动启用,参考如下
Dell(config)# ip telnet server enable
Dell(config)# ip ssh server enable
创建用户名和密码
Dell(config)#username admin password mypassword pri 15
Dell (config)#enable password mypassword
--------------------------------------------------------------------------------
时间
手动设置交换机本地系统时间
Dell#clock set 10:56:09 21 july 2014 (手动调整交换机的时间)
NTP校时服务设置
举例:
enable 进入特权模式
config 进入配置
Dell(config)#ntp server 11.1.1.1
-------------------------------------------------------------------------------
SNMP配置
show snmp community 显示snmp信息
show running-config 显示所有running信息,包含snmp-server host
举例,配置SNMP
config 进入配置
snmp-server community public ro #ro:只读; rw:读写
snmp-server enable traps
snmp-server host 监控服务器IP version 1 public
end
wr
-------------------------------------------------------------------------------
配置管理端口IP地址
configure 进入配置模式
interface management 1/1 进入管理端口的接口
ip address 192.168.0.1 255.255.255.0 为接口分配IP地址。
no shutdown 启用接口
exit 退出接口
management route 0.0.0.0/0 192.168.0.254 设置管理端口的管理路由。
--------------------------------------------------------------------------------
显示某端口配置信息
show interface statu 查看接口的编号及其状态
configure 进入配置
interface te 1/33 进入某个端口
show config 显示此端口配置信息
--------------------------------------------------------------------------------
配置vlan:
conf
interface vlan 3020
no shutdown
exit
--------------------------------------------------------------------------------
把端口划入vlan
interface range vlan 3021
tagged tengigabitethernet 1/33-1/34
exit
---------------------------------------------------------------------------------
10.配置 Access 模式
创建 vlan10,并把 te0/1 和 te0/2 以 access 模式划入 vlan10
DELL(conf)#interface range te0/1 - 2 (注意"-"的前后各有一个空格)
DELL(conf-if-range-te-0/1-2)#switchport (切换到交换模式)
DELL(conf-if-range-te-0/1-2)#no shutdown (启用接口)
DELL(conf-if-range-te-0/1-2)#exit
DELL(conf)#interface vlan 10 (这一条命令用于同时创建 vlan 并进入 vlan 接口配置模式)
DELL(conf-if-vl-10)#untagged te0/1,2 (vlan10 对于 te0/1,2 是不带 vlan id 标志的)(把vlan中的某端口去除时要加no)
DELL(conf-if-vl-10)#no shutdown
11.配置 Trunk 模式
下例把 te0/24 配置成 Trunk 模式,两个 vlan10 和 20 下针对 te0/24 口都是 tagged 的
DELL#config
DELL(conf)#interface te0/24
DELL(conf-if-range-te-0/24)#switchport
DELL(conf-if-range-te-0/24)#no shutdown
DELL(conf-if-range-te-0/24)#exit
DELL(conf)#interface vlan 10
DELL(conf-if-vl-10)#tagged te0/24
DELL(conf-if-vl-10)#no shutdown
DELL(conf)#interface vlan 20
DELL(conf-if-vl-20)#tagged te0/24
DELL(conf-if-vl-20)#no shutdown
DELL(conf-if-vl-20)#end
---------------------------------------------------------------------------------
DELL S4048-ON 配置端口聚合
Dell-S4048-ON-Fibre#configure
Dell-S4048-ON-Fibre(conf)#default interface te1/17
Dell-S4048-ON-Fibre(conf)#default interface te1/18
Dell-S4048-ON-Fibre(conf)#interface range te1/17 - 1/18
Dell-S4048-ON-Fibre(conf-if-range-te-1/17-1/18)#no switchport
Dell-S4048-ON-Fibre(conf-if-range-te-1/17-1/18)#port-channel-protocol lacp
Dell-S4048-ON-Fibre(conf-if-range-te-1/17-1/18-lacp)#port-channel 1 mode active
Dell-S4048-ON-Fibre(conf-if-range-te-1/17-1/18-lacp)#exit
Dell-S4048-ON-Fibre(conf-if-range-te-1/17-1/18)#no shutdown
Dell-S4048-ON-Fibre(conf-if-range-te-1/17-1/18)#exit
Dell-S4048-ON-Fibre(conf)#interface port-channel 1
Dell-S4048-ON-Fibre(conf-if-po-1)#switchport
Dell-S4048-ON-Fibre(conf-if-po-1)#no shutdown
Dell-S4048-ON-Fibre(conf-if-po-1)#exit
Dell-S4048-ON-Fibre(conf)#exit
Dell-S4048-ON-Fibre#write
!
Dell-S4048-ON-Fibre#
删除port-channel1:
Dell-S4048-ON-Fibre(conf)# no interface port-channel 1
查看port-channel:
Dell-S4048-ON-Fibre# show interfaces port-channel 1
查看所有的channel状态:
Dell-S4048-ON-Fibre# show running-config
--------------------------------------------------------------------------------
堆叠命令
DELL戴尔交换机01配置
(1)先查看DELL交换机的堆叠组序号
dell01#show system stack-unit 1 stack-group 我们这里选择16和17组来做堆叠
(2)配置对应的堆叠组
dell01(config)#stack-unit 1 stack-group 16
dell01(config)#stack-unit 1 stack-group 17
(3)设置优先级
dell01(config)#stack-unit 1 priority 5(设置优先级)
DELL戴尔交换机02配置
dell02(config)#stack-unit 2 stack-group 16
dell02(config)#stack-unit 2 stack-group 17
dell02(config)#stack-unit 2 priority 6(设置优先级)
配置好后,把DELL交换机都关机,把堆叠线插在53号口和54号口,然后再开机
重启好后,使用show system brief 出现management和standby 说明堆叠已经做好
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------