H3C常用配置和命令
邻居发现命令
display lldp neighbor-information list
DHCP中继配置
dhcp enable
dhcp relay server-group 1 ip x.x.x.x #x为DHCP服务器的ip地址
int vlan 30
dhcp select relay
dhcp relay server-select 1
在H3C交换机配置dhcp服务器时查看地址的分配情况
dis dhcp server ip-in-use pool vlan1006
dis dhcp server free-ip pool vlan1006
在H3C交换机上释放dhcp分配的地址
<H3C>reset dhcp server ip-in-use all
查看接口描述
display interface brief description
default接口
[h3c]interface GigabitEthernet 1/0/41
[h3c-GigabitEthernet1/0/41]default
全局开启802.1X
dot1x
dot1x authentication-method eap
dot1x timer quiet-period 10
dot1x timer tx-period 10
mac-authentication
mac-authentication domain 1x
radius scheme 1x
primary authentication 172.28.101.3
primary accounting 172.28.101.3
secondary authentication 172.28.101.2
secondary accounting 172.28.101.2
key authentication cipher $c$3$NAIz9CqJDECj7p7qCeuCDXbmfRIcyOtxxCDlaA==
key accounting cipher $c$3$TaTYg1NBpPoTzE97hwyZJSEnRnFiBvIpaVoOgg==
user-name-format without-domain
radius scheme system
user-name-format without-domain
domain 1x
authentication lan-access radius-scheme 1x
authorization lan-access radius-scheme 1x
accounting lan-access radius-scheme 1x
接口下开启802.1X
interface GigabitEthernet2/0/1
description 802.1x_authenration
port link-type hybrid
undo port hybrid vlan 1
port hybrid vlan 1030 3000 untagged
port hybrid pvid vlan 3000
mac-vlan enable
stp edged-port
dot1x
undo dot1x handshake
dot1x mandatory-domain 1x
undo dot1x multicast-trigger
dot1x re-authenticate
dot1x unicast-trigger
dot1x guest-vlan 1030
dot1x auth-fail vlan 1030
mac-authentication
mac-authentication domain 1x
mac-authentication guest-vlan 1030
mac-authentication parallel-with-dot1x
日志管理
display logbuffer #查看日志
reset logbuffer #清除日志
查看arp
[CORE]arp max-learning-number 1024 #设置arp最大学习条目(h3c最大条目数为1024)
[CORE]dis arp all count #查看arp已使用条目
<CORE>reset arp dynamic #清除动态arp表
[CORE]dis ip routing-table summary #查看最大支持路由条目
SSH,Telnet登陆配置
user-interface vty
authentication-mode password
user privilege level
set authentication password cipher admin
local-user admin
password cipher admin
authorization-attribute level
service-type ssh telnet
service-type web
user-interface vty
authentication-mode scheme
参考链接:
https://zhiliao.h3c.com/questions #H3C知了社区
H3C常用配置和命令的更多相关文章
- Redis常用配置和命令总结
Redis(全称:Remote Dictionary Server 远程字典服务)是一个开源的使用ANSI C语言编写.支持网络.可基于内存亦可持久化的日志型.Key-Value数据库,并提供多种语言 ...
- LINUX常用配置及命令
一. Fedora系统配置 1. [设置网卡IP] 步骤如下: 1) 用root用户登陆,打开/etc/sysconfig/network-scripts/ifcfg-eth0文 ...
- Cisco常用配置和命令
1.ASA常用管理management-access inside #开启远程连接inside口 show snmp-server oidlist #查看ASA snmp的 ...
- docker常用配置以及命令
1. Docker基本概念 1.1 什么是 docker hub DockHub是一个仓库 https://hub.docker.com/ 仓库是集中存放镜像文件的场所 仓库分为公开仓库(Public ...
- H3C 常用信息查看命令
- Iptables 防火墙常用配置
转至:https://blog.csdn.net/lswzw/article/details/87971259 Iptables 防火墙常用配置 概念 命令行模式 查看 & 命令 -n:直接显 ...
- H3C交换机配置命令(收集)
1:配置登录用户,口令等 <H3C> //用户直行模式提示符,用户视图 <H3C>system-view //进入配置视图 [ ...
- H3C常用命令详解
H3C常用命令详解 作者:尹正杰 版权声明:原创作品,谢绝转载!否则将追究法律责任. 1.关闭后台日志输出 <yinzhengjie>sys [yinzhengjie]undo info- ...
- 思科、华为、H3C常用命令对比大全
思科.华为.H3C这些网络设备的命令还是挺多的,不过我们一般用的路由交换机设备都是最简单的了,先学基本命令,再学其他功能命令.路由命令是最基本的命令了. 思科.华为.H3C常用命令对比大全 CI ...
随机推荐
- Codeforces Round #439 (Div. 2) Problem A (Codeforces 869A) - 暴力
Rock... Paper! After Karen have found the deterministic winning (losing?) strategy for rock-paper-sc ...
- VC++ 使用CreateProcess创建新进程
https://www.cnblogs.com/fancing/p/6477918.html #include <windows.h> #include <tchar.h> # ...
- 又是DataSnap的问题
最近在调试DataSnap的程序,突然发现TClientDataSet打不开了,报错为dsnap200.bpl的非法地址访问,如下图: 很是怪异,干脆新建工程,只有TSQLConnection.TSQ ...
- 【做题】CF177G2. Fibonacci Strings——思维+数列
题意:定义斐波那契字符串为: $f_1 = $ "a" \(f_2 =\) "b" \(f_n = f_{n-1} + f_{n-2}, \, n > 2 ...
- js实现刷新iframe的方法汇总
https://www.jb51.net/article/65013.htm javascript实现刷新iframe的方法的总结,现在假设存在下面这样一个iframe,则刷新该iframe的N种方法 ...
- Shiro学习笔记 三(认证授权)
第一种首先基于角色的权限控制 1.由于不断的创建SecurityFactory工程等步骤重复多次,所以应该将这些步骤封装成一个工具类 还是首先看一下目录结构 主要用到文件 首先贴一下工具类的方法 pa ...
- 忘记mysql密码处理方案
https://blog.csdn.net/lisongjia123/article/details/57418989 http://blog.51cto.com/lxsym/477027
- Ajax - 发送请求原理
1,什么是ajax? Asynchronous JavaScript and XML(当然现在xml已经由json代替): 主要是用于前后台的交互(表单提交已经被废弃): 使用场景:前台获取数据.表单 ...
- SQLServer代理新建或者编辑作业报错
SQLServer代理新建或者编辑作业的时候报错如下 错误信息: 标题: Microsoft SQL Server Management Studio------------------------- ...
- Winform 设置控件值
private void SetControlValue(Control control, object value) { try { control.FindForm().Invoke((Actio ...