<Huawei>system-view 进入系统视图
[Huawei]sysname SW1 修改设备名称
[SW1]vlan 10
[SW1-vlan10]vlan 20 (一次创建多个vlan [SW1]vlan batch 10 20)
[SW1-vlan20]quit 退出
nterface Ethernet0/0/1
port link-type access 将接口改为access接口
port default vlan 10 将接口加入vlan 10
interface Vlanif10
ip address 192.168.10.254 24 给vlan配置地址
display this 当前接口下敲了那些命令
interface GigabitEthernet0/0/1
port link-type trunk
port trunk allow-pass vlan all 接口变trunk,允许所有vlan通过
华为默认允许vlan1通过
更改设备接口类型
interface GigabitEthernet0/0/2
port link-type trunk
port trunk allow-pass vlan 2 to 4094
解决方法一:
[Huawei-GigabitEthernet0/0/2]undo port trunk allow-pass vlan all
[Huawei-GigabitEthernet0/0/2]port trunk allow-pass vlan 1
解决方法二:
[Huawei-GigabitEthernet0/0/2] undo port trunk allow-pass vlan 2 to 4094
配置环回接口
[Huawei]interface LoopBack 0
[Huawei-LoopBack0]ip address 11.11.11.111 32
查看接口的信息
[Huawei]display ip interface brief
查看设备的路由表
[Huawei]display ip routing-table
查看系统当前日期和时钟
[Huawei]display clock
<Huawei>clock timezone BJ add 08:00:00设置所在的时区为北京
<Huawei>clock datetime 10:00:00 2019-5-20修改系统的日期和时间
查看系统软件的版本和硬件的信息
<Huawei>display version
设备配置保存
<SW1>save
The current configuration will be written to the device.
Are you sure to continue?[Y/N]y
<SW1>display saved-configuration 查看保存的配置
<SW1>display current-configuration 查看设备运行的配置
重启设备
<SW1>reboot 重启
<SW1>reset saved-configuration 清除保存的配置
telnet
三层交换机上怎么配置以太网接口ip?
vlan--给vlan一个地址=这个以太网接口有了地址
[sw1]telnet server enable
[sw1]user-interface vty 0 4
[sw1-ui-vty0-4]protocol inbound telnet (可以不配)
[sw1-ui-vty0-4]user privilege level 3 设置用户级别,3为管理级别,有最高权限
[sw1-ui-vty0-4]authentication-mode aaa 设置用户验证为3A
[sw1]aaa
[sw1-aaa]local-user admin password cipher 123
[sw1-aaa]local-user admin service-type telnet 配置本地登录用户的接入方式为telnet
基本qinq实现
[sw1-GigabitEthernet0/0/1]port link-type dot1q-tunnel
使能二层qinq的功能
[sw1-GigabitEthernet0/0/1]port default vlan 100
将接口划分到vlan 10
[sw1-GigabitEthernet0/0/1]qinq vlan-translation enable
开启qinq的转换功能
[sw1-GigabitEthernet0/0/1]port hybrid untagged vlan 100 200
定义出接口剥离100 200的标签
[sw1-GigabitEthernet0/0/1]port vlan-stacking VLAN 10 stack-vlan 100
接收vlan10的数据就添加100的tag
[sw1-GigabitEthernet0/0/1]port vlan-stacking vlan 20 stack-vlan 200
mux vlan
作用:在同一网段中,不同的vlan互通,同一vlan隔离
基本概念
mux vlan
主vlan (principal vlan)
从vlan
隔离性vlan(separate vlan)
互通性vlan(group vlan)
主vlan:可以和mux vlan的所有接口vlan通信
隔离性vlan:在隔离性vlan内的所有设备均不能通信,但可以和主vlan通信
互通性vlan:在互通性vlan内的所有设备均能通信,但是和隔离vlan不能通信
主vlan 10
隔离性 vlan 30
互通性 vlan 20
vlan 10
mux-vlan
subordinate separate 30
subordinate group 20
interface GigabitEthernet0/0/1
port link-type access
port default vlan 20
port mux-vlan enable
预备端口的选举
[SW1]STP enable 开启生成树
[SW1]display stp 查看生成树的相关信息
[SW1]stp mode stp生成树版本为stp
[SW1]stp root primary 设置主根网桥
[SW2]stp root secondary 设置备份根网桥
[SW2]stp priority 8192 设置优先级命令
[SW1]display stp brief 查看生成树端口的信息
MSTP
背景:RSTP虽然在收敛速度上相对于stp有提升,但是stp和rstp都只有一棵树
1.部分vlan不通
2.无法负载分担
3.次优二层路径
1.配好vlan,access,trunk
2.stp region-configuration
region-name huawei
revision-level 1
instance 1 vlan 2
instance 2 vlan 3
active region-configuration
三台设备相同
3.
[SW1]stp instance 1 priority 4096[SW1]stp instance 2 priority 8192
[SW3]stp instance 1 priority 8192[SW3]stp instance 2 priority 4096