1、基础配置

假设交换机IP为192.168.1.2,掩码255.255.255.0 网关192.168.1.1,vlan为100

上联口为GE 0/0/1

用户名为admin 密码123456

sys                                                                          进入系统视图
vlan 100                                                                     创建vlan100
int vlan 100                                                                 进入vlan100
ip address 192.168.1.2 255.255.255.0                                         设置管理IP
quit                                                                         退出
ip route-static 0.0.0.0 0 192.168.1.1                配置所有网络到达所有网络的路径都是由这个地址的接口负责传送
  • ip route-static: 这是配置静态路由的命令。
  • 0.0.0.0 0: 这是指定目的地址和子网掩码的部分。在这里,0.0.0.0表示任何目的地址(默认路由),0表示子网掩码为0,也就是对所有地址都适用。
  • 192.168.1.1: 这是指定下一跳的地址,也就是数据包应该被发送到的目标地址。
int GE 0/0/1                                                                进入第一个网络端口  
port link-type trunk                                                        设置该端口为trunk模式
port trunk allow-pass vlan 100                                              穿透vlan100
undo port trunk allow-pass vlan 1                                           禁用vlan1
quit                                                                        退出
aaa                                                                         进入aaa模式
local-user admin password  irreversible-cipher 123456                       创建用户名和密码
local-user admin service-type ssh telnet terminal                           将这用户名密码应该在登入上
local-user admin privilege level 15                                         设置用户访问级别
quit                                                                        退出
stelnet server enable                                                       开启ssh服务
ssh user admin service-type stelnet                                         配置用户ssh登陆
ssh user admin authentication-type password                                 验证方式密码
user-interface vty 0 4                                                      进入vty用户视图
protocol inbound all                                                        使用全部协议
authentication-mode aaa                                                     修改认证模式为aaa模式

2、批量配置交换机端口

port-group pg1                                                              创建组号为1的端口组
group-member gigabitethernet 0/0/1 to gigabitethernet 0/0/10                把1到10号网络端口加入端口组
port link-type access                                                       批量设置端口为Access模式
port default vlan 10                                                        批量设置端口为VLAN10

3、清除某个端口配置

interface gigabitethernet 0/0/2                                              打开第2个网络接口
Clear configuration this                                                     清理该端口全部配置信息
Undo shutdown                                                                启动端口
shutdown                                                                     关闭端口

4、端口限速

nterface gigabitethernet 0/0/2                                              打开第2个网络接口
qos lr inbound cir 10000                                                    入站(上行流量限速)
qos lr outbound cir 10000                                                   出站(下行流量限速)
undo qos lr inbound                                                         取消限速

5、其他命令

undo local-user policy security-enhance                                                   (华为交换机设置登录无需修改密码)
undo local-aaa-user password policy administrator                                         (华为S系列交换机删除首次登录修改密码提示)
dis int 10GE 1/0/10 | in CRC                                                              (华为交换机查询该端口是否有丢包)
dis current-configuration configuration route-static | include x.x.x.x                    (使用该命令可以查询该IP相关信息)
display configuration candidate changes                                                   (查看未提交配置,适用于与CE系列交换机)
display ip interface brief                                                                (查看所有互联接口IP)
dis current-configuration configuration route-static                                      (查看所有路由下一跳
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。