第 2 章 H3C Switch

简介:

S3600 S5500 Series

目录

2.1. 配置文件
2.2. DHCP
2.2.1. DHCP Server
2.2.1.1. 排除IP地址
2.2.2. DHCP中继配置
2.2.3. DHCP Snooping
2.2.4. 查看地址池配置
2.2.4.1. 查看地址池配置
2.2.4.2. 查看地址租约
2.2.4.3. 查看可分配的地址
2.2.4.4. 查看租约过期地址
2.2.4.5. 查看冲突IP地址
2.3. VLAN
2.3.1. GVRP
2.4. ARP
2.5. 流量控制
2.5.1. 基于接口
2.5.2. 基于 ACL
2.6. Routing
2.6.1. RIP
2.6.2. OSPF
2.6.3. Static
2.6.4. 策略路由
2.6.5. Debug
2.6.5.1. routing-table
2.7. SNMP
2.8. Login
2.8.1. Telnet
2.8.2. SSH
2.9. Example

2.1. 配置文件

		
<H3C>reset saved-configuration
The saved configuration will be erased.
Are you sure?[Y/N]y
Configuration in flash memory is being cleared.
Please wait ...
		
	





原文出处:Netkiller 系列 手札
本文作者:陈景峯
转载请与作者联系,同时请务必标明文章原始出处和作者信息及本声明。

目录
相关文章
|
9月前
|
Java 编译器 C语言
【C/C++】 switch-case 详解/全面总结
关于 C语言/C++ 中,switch-case 的尽量详细和全面的解释与总结
453 0
|
10月前
if-else if与switch的区别
if-else if与switch的区别
81 0
enum和switch case结合使用
在将enum和switch case结合使用的过程中,遇到了这个错误:“An enum switch case label must be the unqualified name of an enumeration constant”。
switch case 执行
switch case 执行
93 0
|
C#
switch case语句
switch case语句
127 0
|
Dart
Dart之break、continue/ switch...case
Dart之break、continue/ switch...case
77 0
Dart之break、continue/ switch...case
switch—case需要注意的点
switch—case需要注意的点
169 0
switch—case需要注意的点
|
Java 容器 设计模式
如何优化代码中大量的if/else,switch/case?
前言 随着项目的迭代,代码中存在的分支判断可能会越来越多,当里面涉及到的逻辑比较复杂或者分支数量实在是多的难以维护的时候,我们就要考虑下,有办法能让这些代码变得更优雅吗? 正文 使用枚举 这里我们简单的定义一个表示状态的枚举。
2296 0