华为交换机配置 华为二层三层交换机配置指南 一、基本配置 1.1 进入系统视图 1 2 <Switch> system-view [进入系统视图模式,开始配置设备]
1.2 删除系统名称 1 2 [MySwitch] undo sysname [undo sysname-删除自定义系统名称-无参数]
1.2 配置交换机名称 1 2 [Switch] sysname MySwitch [sysname 自定义系统名称-定义设备名称-任意字符串]
1.3 查看当前配置 1 2 [MySwitch] display current-configuration [display current-configuration-显示当前设备的配置]
1.4 保存配置 1 2 [MySwitch] save [save-保存当前配置-无参数]
二、端口配置 2.1 进入接口视图 1 2 [MySwitch] interface GigabitEthernet 0/0/1 [interface GigabitEthernet 接口编号-进入指定接口的配置模式-GigabitEthernet0/0/x]
2.2 配置接口描述 1 2 [MySwitch-GigabitEthernet0/0/1] description to_Server [description 接口描述-为接口配置描述信息-任意字符串]
2.3 配置接口为接入模式(Access) 1 2 3 4 5 [MySwitch-GigabitEthernet0/0/1] port link-type access [port link-type 接口模式-配置接口为接入或中继模式-access/trunk/hybrid] [MySwitch-GigabitEthernet0/0/1] port default vlan 10 [port default vlan 默认 VLAN-将接口加入到指定的 VLAN-VLAN ID]
2.4 配置接口为中继模式(Trunk) 1 2 3 4 5 [MySwitch-GigabitEthernet0/0/1] port link-type trunk [port link-type 接口模式-配置接口为接入或中继模式-access/trunk/hybrid] [MySwitch-GigabitEthernet0/0/1] port trunk allow-pass vlan 10 20 [port trunk allow-pass vlan 允许通过的 VLAN-配置中继接口允许通过的 VLAN 列表-VLAN ID 列表]
2.5 查看接口状态 1 2 [MySwitch] display interface GigabitEthernet 0/0/1 [display interface 接口类型 接口编号-查看指定接口的状态和配置信息]
三、VLAN 配置 3.1 创建 VLAN 1 2 [MySwitch] vlan 10 [vlan VLAN ID-创建或进入指定 VLAN 配置模式-VLAN ID]
3.2 配置 VLAN 名称 1 2 [MySwitch-vlan10] name Sales [name VLAN 名称-为 VLAN 配置名称-任意字符串]
3.3 分配端口到 VLAN 1 2 3 4 5 6 7 8 [MySwitch] interface GigabitEthernet 0/0/1 [interface GigabitEthernet 接口编号-进入指定接口的配置模式-GigabitEthernet0/0/x] [MySwitch-GigabitEthernet0/0/1] port link-type access [port link-type 接口模式-配置接口为接入或中继模式-access/trunk/hybrid] [MySwitch-GigabitEthernet0/0/1] port default vlan 10 [port default vlan 默认 VLAN-将接口加入到指定的 VLAN-VLAN ID]
四、三层接口配置 4.1 配置 VLAN 接口 IP 地址 1 2 3 4 5 [MySwitch] interface Vlanif 10 [interface Vlanif VLAN ID-进入指定 VLAN 接口的配置模式-VLAN ID] [MySwitch-Vlanif10] ip address 192.168.10.1 255.255.255.0 [ip address IP 地址 子网掩码-配置接口 IP 地址和子网掩码-IP 地址和子网掩码]
4.2 查看 VLAN 接口信息 1 2 [MySwitch] display interface Vlanif 10 [display interface Vlanif VLAN ID-查看指定 VLAN 接口的状态和配置信息]
五、子网掩码与反掩码计算方法 5.1 子网掩码计算 子网掩码将网络部分和主机部分区分开。以下是常见的子网掩码和对应的 CIDR 表示法:
CIDR
子网掩码
/8
255.0.0.0
/16
255.255.0.0
/24
255.255.255.0
/25
255.255.255.128
/26
255.255.255.192
/27
255.255.255.224
/28
255.255.255.240
/29
255.255.255.248
/30
255.255.255.252
5.2 反掩码计算 反掩码是子网掩码的按位取反,常用于 ACL 配置中:
子网掩码
反掩码
255.0.0.0
0.255.255.255
255.255.0.0
0.0.255.255
255.255.255.0
0.0.0.255
255.255.255.128
0.0.0.127
255.255.255.192
0.0.0.63
255.255.255.224
0.0.0.31
255.255.255.240
0.0.0.15
255.255.255.248
0.0.0.7
255.255.255.252
0.0.0.3
六、OSPF 配置 6.1 启用 OSPF 并进入 OSPF 配置模式 1 2 [MySwitch] ospf 1 [ospf OSPF 进程 ID-启用 OSPF 并进入 OSPF 配置模式-进程 ID]
6.2 配置 OSPF 区域和网络 1 2 3 4 5 [MySwitch-ospf-1] area 0 [area 区域 ID-进入 OSPF 指定区域配置模式-区域 ID] [MySwitch-ospf-1-area-0.0.0.0] network 192.168.1.0 0.0.0.255 [network 网络地址 反掩码-在指定区域下配置 OSPF 网络-网络地址和反掩码]
6.3 配置 OSPF 的接口优先级 1 2 3 4 5 [MySwitch] interface GigabitEthernet 0/0/1 [interface GigabitEthernet 接口编号-进入指定接口的配置模式-GigabitEthernet0/0/x] [MySwitch-GigabitEthernet0/0/1] ospf priority 10 [ospf priority 优先级-配置 OSPF 的接口优先级-0~255]
七、RIP 配置 7.1 启用 RIP 并进入 RIP 配置模式 1 2 [MySwitch] rip 1 [rip RIP 进程 ID-启用 RIP 并进入 RIP 配置模式-进程 ID]
7.2 配置 RIP 版本 1 2 [MySwitch-rip-1] version 2 [version RIP 版本-配置 RIP 的版本-1/2]
7.3 配置 RIP 网络 1 2 [MySwitch-rip-1] network 192.168.1.0 [network 网络地址-将指定网络添加到 RIP-网络地址]
7.4 配置 RIP 被动接口 1 2 [MySwitch-rip-1] silent-interface GigabitEthernet 0/0/2 [silent-interface 接口类型 接口编号-配置 RIP 被动接口-GigabitEthernet0/0/x]
八、DHCP 配置 8.1 配置 DHCP 池 1 2 3 4 5 6 7 8 9 10 11 12 13 14 [MySwitch] dhcp enable [dhcp enable-启用 DHCP 功能-无参数] [MySwitch] ip pool vlan10 [ip pool 名称-创建 DHCP 地址池并进入地址池配置模式-地址池名称] [MySwitch-ip-pool-vlan10] network 192.168.10.0 mask 255.255.255.0 [network 网络地址 mask 子网掩码-配置 DHCP 地址池的网络地址和子网掩码-网络地址和子网掩码] [MySwitch-ip-pool-vlan10] gateway-list 192.168.10.1 [gateway-list 网关地址-配置 DHCP 客户端获取的网关地址-网关地址] [MySwitch-ip-pool-vlan10] dns-list 8.8.8.8 [dns-list DNS 服务器地址-配置 DHCP 客户端获取的 DNS 服务器地址-DNS 服务器地址]
8.2 将接口配置为 DHCP 中继 1 2 3 4 5 6 7 8 [MySwitch] interface Vlanif 10 [interface Vlanif VLAN ID-进入指定 VLAN 接口的配置模式-VLAN ID] [MySwitch-Vlanif10] dhcp select relay [dhcp select relay-配置接口为 DHCP 中继模式-无参数] [MySwitch-Vlanif10] dhcp relay server-ip 192.168.1.1 [dhcp relay server-ip DHCP 服务器 IP 地址-配置 DHCP 中继的服务器 IP 地址-服务器 IP 地址]
九、ACL 配置 9.1 创建基本 ACL 1 2 3 4 5 [MySwitch] acl number 2000 [acl number ACL 编号-创建 ACL 并进入 ACL 配置模式-2000~2999 基本 ACL 编号] [MySwitch-acl-basic-2000] rule 5 permit source 192.168.1.0 0.0.0.255 [rule 规则编号 permit/deny source 源地址 反掩码-配置 ACL 规则-规则编号及详细规则]
9.2 创建高级 ACL 1 2 3 4 5 [MySwitch] acl number 3000 [acl number ACL 编号-创建 ACL 并进入 ACL 配置模式-3000~3999 高级 ACL 编号] [MySwitch-acl-adv-3000] rule 5 permit ip source 192.168.1.0 0.0.0.255 destination 10.1.1.0 0.0.0.255 [rule 规则编号 permit/deny ip source 源地址 反掩码 destination 目标地址 反掩码-配置 ACL 规则-规则编号及详细规则]
9.3 应用 ACL 到接口 1 2 3 4 5 [MySwitch] interface GigabitEthernet 0/0/1 [interface GigabitEthernet 接口编号-进入指定接口的配置模式-GigabitEthernet0/0/x] [MySwitch-GigabitEthernet0/0/1] traffic-filter inbound acl 2000 [traffic-filter inbound/outbound acl ACL 编号-将 ACL 应用到接口的入/出方向-ACL 编号]
十、完整配置实例 10.1 配置一个接入模式的端口到 VLAN 10 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 <Switch> system-view [进入系统视图模式,开始配置设备] [Switch] sysname MySwitch [sysname 自定义系统名称-定义设备名称-任意字符串] [MySwitch] vlan 10 [vlan VLAN ID-创建或进入指定 VLAN 配置模式-VLAN ID] [MySwitch-vlan10] name Sales [name VLAN 名称-为 VLAN 配置名称-任意字符串] [MySwitch] interface GigabitEthernet 0/0/1 [interface GigabitEthernet 接口编号-进入指定接口的配置模式-GigabitEthernet0/0/x] [MySwitch-GigabitEthernet0/0/1] port link-type access [port link-type 接口模式-配置接口为接入或中继模式-access/trunk/hybrid] [MySwitch-GigabitEthernet0/0/1] port default vlan 10 [port default vlan 默认 VLAN-将接口加入到指定的 VLAN-VLAN ID]
10.2 配置一个中继模式的端口允许 VLAN 10 和 VLAN 20 通过 1 2 3 4 5 6 7 8 [MySwitch] interface GigabitEthernet 0/0/2 [interface GigabitEthernet 接口编号-进入指定接口的配置模式-GigabitEthernet0/0/x] [MySwitch-GigabitEthernet0/0/2] port link-type trunk [port link-type 接口模式-配置接口为接入或中继模式-access/trunk/hybrid] [MySwitch-GigabitEthernet0/0/2] port trunk allow-pass vlan 10 20 [port trunk allow-pass vlan 允许通过的 VLAN-配置中继接口允许通过的 VLAN 列表-VLAN ID 列表]
10.3 配置 VLAN 10 的三层接口 IP 地址 1 2 3 4 5 [MySwitch] interface Vlanif 10 [interface Vlanif VLAN ID-进入指定 VLAN 接口的配置模式-VLAN ID] [MySwitch-Vlanif10] ip address 192.168.10.1 255.255.255.0 [ip address IP 地址 子网掩码-配置接口 IP 地址和子网掩码-IP 地址和子网掩码]
10.4 配置 OSPF 1 2 3 4 5 6 7 8 [MySwitch] ospf 1 [ospf OSPF 进程 ID-启用 OSPF 并进入 OSPF 配置模式-进程 ID] [MySwitch-ospf-1] area 0 [area 区域 ID-进入 OSPF 指定区域配置模式-区域 ID] [MySwitch-ospf-1-area-0.0.0.0] network 192.168.1.0 0.0.0.255 [network 网络地址 反掩码-在指定区域下配置 OSPF 网络-网络地址和反掩码]
10.5 配置 RIP 1 2 3 4 5 6 7 8 9 10 11 12 13 14 [MySwitch] rip 1 [rip RIP 进程 ID-启用 RIP 并进入 RIP 配置模式-进程 ID] [MySwitch-rip-1] version 2 [version RIP 版本-配置 RIP 的版本-1/2] [MySwitch-rip-1] network 192.168.1.0 [network 网络地址-将指定网络添加到 RIP-网络地址] [MySwitch-rip-1] network 10.1.1.0 [network 网络地址-将指定网络添加到 RIP-网络地址] [MySwitch-rip-1] silent-interface GigabitEthernet 0/0/2 [silent-interface 接口类型 接口编号-配置 RIP 被动接口-GigabitEthernet0/0/x]
10.6 配置 DHCP 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 [MySwitch] dhcp enable [dhcp enable-启用 DHCP 功能-无参数] [MySwitch] ip pool vlan10 [ip pool 名称-创建 DHCP 地址池并进入地址池配置模式-地址池名称] [MySwitch-ip-pool-vlan10] network 192.168.10.0 mask 255.255.255.0 [network 网络地址 mask 子网掩码-配置 DHCP 地址池的网络地址和子网掩码-网络地址和子网掩码] [MySwitch-ip-pool-vlan10] gateway-list 192.168.10.1 [gateway-list 网关地址-配置 DHCP 客户端获取的网关地址-网关地址] [MySwitch-ip-pool-vlan10] dns-list 8.8.8.8 [dns-list DNS 服务器地址-配置 DHCP 客户端获取的 DNS 服务器地址-DNS 服务器地址] [MySwitch] interface Vlanif 10 [interface Vlanif VLAN ID-进入指定 VLAN 接口的配置模式-VLAN ID] [MySwitch-Vlanif10] dhcp select relay [dhcp select relay-配置接口为 DHCP 中继模式-无参数] [MySwitch-Vlanif10] dhcp relay server-ip 192.168.1.1 [dhcp relay server-ip DHCP 服务器 IP 地址-配置 DHCP 中继的服务器 IP 地址-服务器 IP 地址]
10.7 配置 ACL 1 2 3 4 5 6 7 8 9 10 11 [MySwitch] acl number 2000 [acl number ACL 编号-创建 ACL 并进入 ACL 配置模式-2000~2999 基本 ACL 编号] [MySwitch-acl-basic-2000] rule 5 permit source 192.168.1.0 0.0.0.255 [rule 规则编号 permit/deny source 源地址 反掩码-配置 ACL 规则-规则编号及详细规则] [MySwitch] interface GigabitEthernet 0/0/1 [interface GigabitEthernet 接口编号-进入指定接口的配置模式-GigabitEthernet0/0/x] [MySwitch-GigabitEthernet0/0/1] traffic-filter inbound acl 2000 [traffic-filter inbound/outbound acl ACL 编号-将 ACL 应用到接口的入/出方向-ACL 编号]
十一、用户配置 11.1 创建本地用户 1 2 3 4 5 6 7 8 [MySwitch] aaa [aaa-进入 AAA 配置模式] [MySwitch-aaa] local-user admin password irreversible-cipher Admin@123 [local-user 用户名 password 密码模式 密码-创建本地用户并设置密码-用户名、密码模式和密码] [MySwitch-aaa] local-user admin service-type ssh telnet [local-user 用户名 service-type 服务类型-为用户分配服务类型-ssh、telnet、terminal等]
11.2 配置用户权限级别 1 2 [MySwitch-aaa] local-user admin privilege level 15 [local-user 用户名 privilege level 权限级别-设置用户权限级别-0~15]
十二、Telnet 配置 12.1 启用 Telnet 服务 1 2 3 4 5 6 7 8 9 10 11 12 13 14 [MySwitch] user-interface vty 0 4 [user-interface vty 起始编号 结束编号-进入 VTY 用户界面配置模式-用户界面编号范围] [MySwitch-ui-vty0-4] protocol inbound telnet [protocol inbound 协议类型-设置入站协议类型-telnet、ssh等] [MySwitch-ui-vty0-4] authentication-mode aaa [authentication-mode 认证方式-设置用户界面的认证方式-none、password、aaa等] [MySwitch-ui-vty0-4] user privilege level 15 [user privilege level 权限级别-设置用户界面的权限级别-0~15] [MySwitch-ui-vty0-4] quit [quit-退出当前视图模式]
十三、SSH 配置 13.1 配置 SSH 版本 1 2 [MySwitch] ssh server version 2 [ssh server version SSH 版本-设置 SSH 服务的版本-1/2]
13.2 创建 SSH 用户和认证方式 1 2 [MySwitch] ssh user admin authentication-type password [ssh user 用户名 authentication-type 认证类型-配置 SSH 用户的认证方式-password、rsa等]
13.3 生成 RSA 密钥对 1 2 [MySwitch] rsa local-key-pair create [rsa local-key-pair create-生成本地 RSA 密钥对]
13.4 启用 SSH 服务 1 2 [MySwitch] stelnet server enable [stelnet server enable-启用 SSH 服务]
13.5 配置 VTY 用户界面支持 SSH 登录 1 2 3 4 5 6 7 8 9 10 11 12 13 14 [MySwitch] user-interface vty 0 4 [user-interface vty 起始编号 结束编号-进入 VTY 用户界面配置模式-用户界面编号范围] [MySwitch-ui-vty0-4] protocol inbound ssh [protocol inbound 协议类型-设置入站协议类型-telnet、ssh等] [MySwitch-ui-vty0-4] authentication-mode aaa [authentication-mode 认证方式-设置用户界面的认证方式-none、password、aaa等] [MySwitch-ui-vty0-4] user privilege level 15 [user privilege level 权限级别-设置用户界面的权限级别-0~15] [MySwitch-ui-vty0-4] quit [quit-退出当前视图模式]
十四、NTP 配置 14.1 配置 NTP 客户端 1 2 3 4 5 [MySwitch] ntp-service enable [ntp-service enable-启用 NTP 服务] [MySwitch] ntp-service unicast-server 192.168.1.1 [ntp-service unicast-server 服务器 IP 地址-配置 NTP 单播服务器-IP 地址]
14.2 配置 NTP 认证 1 2 3 4 5 6 7 8 [MySwitch] ntp-service authentication enable [ntp-service authentication enable-启用 NTP 认证] [MySwitch] ntp-service key 1 md5 MyNtpKey [ntp-service key 键号 认证方式 密钥-配置 NTP 认证密钥-键号、认证方式和密钥] [MySwitch] ntp-service trusted-key 1 [ntp-service trusted-key 键号-配置受信任的 NTP 密钥-键号]
十五、SNMP 配置 15.1 配置 SNMP 社区字符串 1 2 3 4 5 [MySwitch] snmp-agent community read public [snmp-agent community 权限 社区字符串-配置 SNMP 社区字符串-read/write权限和字符串] [MySwitch] snmp-agent community write private [snmp-agent community 权限 社区字符串-配置 SNMP 社区字符串-read/write权限和字符串]
15.2 配置 SNMP 团体 1 2 3 4 5 [MySwitch] snmp-agent sys-info contact admin [snmp-agent sys-info contact 联系人-配置 SNMP 系统联系人-联系人信息] [MySwitch] snmp-agent sys-info location ServerRoom [snmp-agent sys-info location 位置-配置 SNMP 系统位置-位置信息]
十六、日志配置 16.1 配置日志缓冲区大小 1 2 [MySwitch] info-center logbuffer size 1024 [info-center logbuffer size 大小-配置日志缓冲区大小-大小(条)]
16.2 配置日志输出到终端 1 2 3 4 5 [MySwitch] info-center source default channel 2 log level debugging [info-center source default channel 终端通道 log level 日志级别-配置日志输出到终端的级别-debugging/info/warning/error等] [MySwitch] terminal monitor [terminal monitor-启用终端监控,显示日志信息-无参数]
十七、Syslog 配置 17.1 配置 Syslog 服务器 1 2 3 4 5 [MySwitch] info-center loghost 192.168.1.100 [info-center loghost 服务器 IP 地址-配置 Syslog 服务器-IP 地址] [MySwitch] info-center loghost 192.168.1.100 facility local7 [info-center loghost 服务器 IP 地址 facility 设施-配置 Syslog 服务器及设施标识-IP 地址和设施(local0~local7)]
17.2 配置 Syslog 输出级别 1 2 [MySwitch] info-center source default channel 6 log level warning [info-center source default channel 终端通道 log level 日志级别-配置日志输出到 Syslog 服务器的级别-debugging/info/warning/error等]
十八、端口镜像配置 18.1 配置镜像会话 1 2 3 4 5 6 7 8 [MySwitch] observe-port 1 interface GigabitEthernet 0/0/10 [observe-port 会话编号 interface 接口类型 接口编号-配置镜像会话及目的接口-会话编号和接口] [MySwitch] interface GigabitEthernet 0/0/1 [interface GigabitEthernet 接口编号-进入指定接口的配置模式-GigabitEthernet0/0/x] [MySwitch-GigabitEthernet0/0/1] port-mirroring to observe-port 1 inbound [port-mirroring to observe-port 会话编号 inbound/outbound-配置镜像方向及会话编号-会话编号和方向]
十九、删除配置指南 19.1 删除系统名称 1 2 [MySwitch] undo sysname [undo sysname-删除自定义系统名称-无参数]
19.2 删除 VLAN 配置 1 2 [MySwitch] undo vlan 10 [undo vlan VLAN ID-删除指定的 VLAN-VLAN ID]
19.3 删除接口配置 删除接口的 VLAN 配置 1 2 3 4 5 [MySwitch] interface GigabitEthernet 0/0/1 [interface GigabitEthernet 接口编号-进入指定接口的配置模式-GigabitEthernet0/0/x] [MySwitch-GigabitEthernet0/0/1] undo port default vlan [undo port default vlan-删除接口的默认 VLAN 配置-无参数]
删除接口的 IP 地址 1 2 3 4 5 [MySwitch] interface Vlanif 10 [interface Vlanif VLAN ID-进入指定 VLAN 接口的配置模式-VLAN ID] [MySwitch-Vlanif10] undo ip address [undo ip address-删除接口的 IP 地址-无参数]
19.4 删除 OSPF 配置 删除 OSPF 进程 1 2 [MySwitch] undo ospf 1 [undo ospf OSPF 进程 ID-删除指定的 OSPF 进程-进程 ID]
19.5 删除 RIP 配置 删除 RIP 进程 1 2 [MySwitch] undo rip 1 [undo rip RIP 进程 ID-删除指定的 RIP 进程-进程 ID]
19.6 删除 DHCP 配置 删除 DHCP 地址池 1 2 [MySwitch] undo ip pool vlan10 [undo ip pool 地址池名称-删除指定的 DHCP 地址池-地址池名称]
删除 DHCP 中继配置 1 2 3 4 5 [MySwitch] interface Vlanif 10 [interface Vlanif VLAN ID-进入指定 VLAN 接口的配置模式-VLAN ID] [MySwitch-Vlanif10] undo dhcp select relay [undo dhcp select relay-删除 DHCP 中继模式配置-无参数]
19.7 删除 ACL 配置 删除 ACL 规则 1 2 3 4 5 [MySwitch] acl number 2000 [acl number ACL 编号-进入指定的 ACL 配置模式-ACL 编号] [MySwitch-acl-basic-2000] undo rule 5 [undo rule 规则编号-删除指定的 ACL 规则-规则编号]
19.8 删除用户配置 删除本地用户 1 2 3 4 5 [MySwitch] aaa [aaa-进入 AAA 配置模式-无参数] [MySwitch-aaa] undo local-user admin [undo local-user 用户名-删除指定的本地用户-用户名]
19.9 删除 Telnet 配置 禁用 Telnet 服务 1 2 3 4 5 [MySwitch] user-interface vty 0 4 [user-interface vty 起始编号 结束编号-进入 VTY 用户界面配置模式-用户界面编号范围] [MySwitch-ui-vty0-4] undo protocol inbound telnet [undo protocol inbound 协议类型-删除入站协议类型-telnet、ssh等]
19.10 删除 SSH 配置 禁用 SSH 服务 1 2 [MySwitch] undo stelnet server enable [undo stelnet server enable-禁用 SSH 服务-无参数]
删除 SSH 用户 1 2 [MySwitch] undo ssh user admin [undo ssh user 用户名-删除指定的 SSH 用户-用户名]
19.11 删除 NTP 配置 禁用 NTP 服务 1 2 [MySwitch] undo ntp-service enable [undo ntp-service enable-禁用 NTP 服务-无参数]
删除 NTP 服务器 1 2 [MySwitch] undo ntp-service unicast-server 192.168.1.1 [undo ntp-service unicast-server 服务器 IP 地址-删除指定的 NTP 单播服务器-IP 地址]
19.12 删除 SNMP 配置 删除 SNMP 社区字符串 1 2 3 4 5 [MySwitch] undo snmp-agent community read public [undo snmp-agent community 权限 社区字符串-删除指定的 SNMP 社区字符串-权限和字符串] [MySwitch] undo snmp-agent community write private [undo snmp-agent community 权限 社区字符串-删除指定的 SNMP 社区字符串-权限和字符串]
19.13 删除日志配置 清空日志缓冲区 1 2 [MySwitch] reset info-center logbuffer [reset info-center logbuffer-清空日志缓冲区-无参数]
19.14 删除 Syslog 配置 删除 Syslog 服务器 1 2 [MySwitch] undo info-center loghost 192.168.1.100 [undo info-center loghost 服务器 IP 地址-删除指定的 Syslog 服务器-IP 地址]
19.15 删除端口镜像配置 删除镜像会话 1 2 [MySwitch] undo observe-port 1 [undo observe-port 会话编号-删除指定的镜像会话-会话编号]
删除端口镜像配置 1 2 3 4 5 [MySwitch] interface GigabitEthernet 0/0/1 [interface GigabitEthernet 接口编号-进入指定接口的配置模式-GigabitEthernet0/0/x] [MySwitch-GigabitEthernet0/0/1] undo port-mirroring to observe-port 1 [undo port-mirroring to observe-port 会话编号-删除指定的端口镜像配置-会话编号]
二十、NAT 配置 20.1 配置 NAT 基本操作 NAT 用于将私有 IP 地址转换为公有 IP 地址,以实现内网设备访问外网的功能。
20.1.1 配置 NAT 静态映射 1 2 3 4 5 6 7 8 [MySwitch] interface GigabitEthernet 0/0/1 [interface GigabitEthernet 接口编号-进入指定接口的配置模式-GigabitEthernet0/0/x] [MySwitch-GigabitEthernet0/0/1] ip address 192.168.1.1 255.255.255.0 [ip address IP 地址 子网掩码-配置接口的 IP 地址和子网掩码-IP 地址和子网掩码] [MySwitch-GigabitEthernet0/0/1] nat static global 203.0.113.1 inside 192.168.1.100 [nat static global 公有 IP 地址 inside 私有 IP 地址-配置 NAT 静态映射-公有 IP 和私有 IP]
20.1.2 配置 NAT 动态地址池 1 2 3 4 5 6 7 8 9 10 11 12 13 14 [MySwitch] acl number 2000 [acl number ACL 编号-创建并进入指定的 ACL 配置模式-ACL 编号] [MySwitch-acl-basic-2000] rule permit ip source 192.168.1.0 0.0.0.255 [rule permit ip source 源 IP 地址 源反掩码-允许指定源 IP 地址的流量通过-源 IP 地址和源反掩码] [MySwitch] ip pool nat-pool start 203.0.113.2 end 203.0.113.10 [ip pool 地址池名称 start 起始 IP 地址 end 结束 IP 地址-配置 NAT 地址池-地址池名称、起始和结束 IP 地址] [MySwitch] interface GigabitEthernet 0/0/1 [interface GigabitEthernet 接口编号-进入指定接口的配置模式-GigabitEthernet0/0/x] [MySwitch-GigabitEthernet0/0/1] nat outbound 2000 address-group nat-pool [nat outbound ACL 编号 address-group 地址池名称-配置 NAT 动态地址转换-ACL 编号和地址池名称]
20.1.3 配置 NAT 端口映射 1 2 3 4 5 [MySwitch] interface GigabitEthernet 0/0/1 [interface GigabitEthernet 接口编号-进入指定接口的配置模式-GigabitEthernet0/0/x] [MySwitch-GigabitEthernet0/0/1] nat server protocol tcp global 203.0.113.1 80 inside 192.168.1.100 80 [nat server protocol 协议 global 公有 IP 地址 公有端口 inside 私有 IP 地址 私有端口-配置 NAT 端口映射-协议、IP 地址和端口]
二十一、删除 NAT 配置 21.1 删除 NAT 静态映射 1 2 3 4 5 [MySwitch] interface GigabitEthernet 0/0/1 [interface GigabitEthernet 接口编号-进入指定接口的配置模式-GigabitEthernet0/0/x] [MySwitch-GigabitEthernet0/0/1] undo nat static global 203.0.113.1 inside 192.168.1.100 [undo nat static global 公有 IP 地址 inside 私有 IP 地址-删除指定的 NAT 静态映射-公有 IP 和私有 IP]
21.2 删除 NAT 动态地址池 1 2 3 4 5 6 7 8 [MySwitch] undo ip pool nat-pool [undo ip pool 地址池名称-删除指定的 NAT 地址池-地址池名称] [MySwitch] interface GigabitEthernet 0/0/1 [interface GigabitEthernet 接口编号-进入指定接口的配置模式-GigabitEthernet0/0/x] [MySwitch-GigabitEthernet0/0/1] undo nat outbound 2000 address-group nat-pool [undo nat outbound ACL 编号 address-group 地址池名称-删除指定的 NAT 动态地址转换-ACL 编号和地址池名称]
21.3 删除 NAT 端口映射 1 2 3 4 5 [MySwitch] interface GigabitEthernet 0/0/1 [interface GigabitEthernet 接口编号-进入指定接口的配置模式-GigabitEthernet0/0/x] [MySwitch-GigabitEthernet0/0/1] undo nat server protocol tcp global 203.0.113.1 80 inside 192.168.1.100 80 [undo nat server protocol 协议 global 公有 IP 地址 公有端口 inside 私有 IP 地址 私有端口-删除指定的 NAT 端口映射-协议、IP 地址和端口]
二十二、 22.1 配置接口描述 1 2 3 4 5 css复制代码[MySwitch] interface GigabitEthernet 0/0/1 [interface GigabitEthernet 接口编号-进入指定接口的配置模式-GigabitEthernet0/0/x] [MySwitch-GigabitEthernet0/0/1] description Link to Server1 [description 接口描述-配置接口描述信息-描述信息]
删除接口描述 1 2 3 4 5 css复制代码[MySwitch] interface GigabitEthernet 0/0/1 [interface GigabitEthernet 接口编号-进入指定接口的配置模式-GigabitEthernet0/0/x] [MySwitch-GigabitEthernet0/0/1] undo description [undo description-删除接口描述信息-无参数]
22.2 配置端口速率和双工模式 1 2 3 4 5 6 7 8 css复制代码[MySwitch] interface GigabitEthernet 0/0/1 [interface GigabitEthernet 接口编号-进入指定接口的配置模式-GigabitEthernet0/0/x] [MySwitch-GigabitEthernet0/0/1] speed 1000 [speed 端口速率-配置端口速率-10/100/1000/auto] [MySwitch-GigabitEthernet0/0/1] duplex full [duplex 双工模式-配置端口双工模式-half/full/auto]
删除端口速率和双工模式配置 1 2 3 4 5 6 7 8 css复制代码[MySwitch] interface GigabitEthernet 0/0/1 [interface GigabitEthernet 接口编号-进入指定接口的配置模式-GigabitEthernet0/0/x] [MySwitch-GigabitEthernet0/0/1] undo speed [undo speed-删除端口速率配置-无参数] [MySwitch-GigabitEthernet0/0/1] undo duplex [undo duplex-删除端口双工模式配置-无参数]