# 进入全局配置模式 enable configure terminal # 设置设备主机名 hostname YourSwitchName # 配置管理接口 interface GigabitEthernet0 ip address 192.168.1.1 255.255.255.0 no shutdown # 配置SSH访问 ip ssh ve…
在 Switch1 上的配置: enable configure terminal # 配置主机名 hostname Switch1 # 配置堆叠基准MAC地址 switch 1 priority 15 switch 1 renumber 1 # 配置堆叠接口 interface TenGigabitEthernet1/1/1 stackwise-…
在 Controller1 上的配置: enable configure terminal # 配置主机名 hostname Controller1 # 配置管理接口 interface GigabitEthernet1 ip address 192.168.1.2 255.255.255.0 no shutdown # 配置SSH访问 ip do…
enable configure terminal # 配置主机名 hostname WirelessController # 配置管理接口 interface GigabitEthernet1 ip address 192.168.1.2 255.255.255.0 no shutdown # 配置SSH访问 ip domain-name you…
在 Switch1 上的配置: enable configure terminal # 配置虚拟化堆叠 stackwise-virtual domain 1 switch 1 priority 15 switch 2 priority 14 ! interface TenGigabitEthernet1/1/1 stackwise-virtual …
enable configure terminal # 配置主机名 hostname Switch9500 # 配置管理VLAN接口 interface Vlan1 ip address 192.168.1.2 255.255.255.0 no shutdown # 配置SSH访问 username admin privilege 15 secre…
! 配置外网接口 interface GigabitEthernet0/0 description Internet Connection ip address <外网IP地址> <子网掩码> ip nat outside ip virtual-reassembly in duplex auto speed auto ! 配…
# 配置IP黑名单 /ip firewall address-list add address=0.0.0.0/8 comment="This network is used for testing" disabled=yes list=DDOS add address=10.0.0.0/8 comment="Private network" di…
# 配置内网地址 set network virtual-router default interface ethernet1/1 ip 192.168.1.1/24 set zone name trust network layer3 ethernet1/1 # 配置外网地址 set network virtual-router default …
# 配置内网地址 add network 192.168.1.0 netmask 255.255.255.0 add host 192.168.1.1 # 配置外网地址 add network 203.0.113.0 netmask 255.255.255.0 add host 203.0.113.1 # 配置默认路由 set static-rou…