tip

华为WLAN指导设计 来源:华为星火计划培训

华为WLAN设计
网优网归 场景规划
方案设计

【资料简介】华为Wlan网络网规网优技术、场景规划与方案设计,从0开始设计到交付,一本完完整整的学习教材,建议从事无线学习的同学学习..

马上观看
zon

华为WLAN专题集锦 专题:华为WLAN

WLAN配置
组网模式解析
组网配置案例

【华为无线】本指南详细介绍每个模版的命令解释及用途,在加上十多种精彩案例分享及解释,再加上网优网归,让你彻底脱盲,不在为无线..

马上观看
zon

家园VBook中心 分类:书籍中心

教材 案例 题库
知识 专业认证
资源价值

【中心简介】家园Vbook书籍中心是以收集和整理互联网上优秀书籍,以最好的知识推荐给你学习,让你在学习的路程上事半功倍,告别枯燥,早..

马上观看
tip

华为HCIE认证之路 分类:华为认证

HCIE学习之路
华为 路由 交换
含金量最大的资料

【学习介绍】在中国拥有一张证书不是梦,冰冻三尺,非一日之寒,要拥有一张认证所具备含金量技术水准那是需要多年的经年积累,本书专为你分享..

马上观看
tip

华三无线专题报告 发布:建哥哥

华三
H3C WLAN AC
无线专题

【资料简介】大好河山、无线风光,主要介绍H3C无线,从基础到高级配置及组网模式配置案例,多达200篇案例配置,从此告别对无线的迷茫..

马上观看
★浏览次数:598 次★  发布日期:2013-11-25
 当前位置:技术资料 > 网络工程 > H3C > 正文
 
最近更新
    正在更新...
 

H3C WX系列本地802.1X认证(EAP-PEAP方式)的典型配置举例

 

 本特性在WLAN NAS设备上支持本地对无线用户进行认证的功能。对于组网中不支持EAP认证的AAA Server,本特性通过实现EAP OffLoad功能,使NAS设备作为STA与AAA Server的桥梁,帮助二者顺畅的完成认证过程。

本特性提供了对WLAN接入用户的本地认证功能,支持MD5,EAP_TLS,EAP_MSCHAPv2,EAP_PEAP多种认证方式,使得用户可以自如的根据需要灵活配置各种安全限制,同时不需要布置AAA服务器,减小了网络拓扑图的复杂度。

一、组网图

本地EAP-PEAP认证方式的组网图

二、使用版本和详细配置命令

请下载文档查阅:http://pan.baidu.com/s/1xhlYk

三、主要配置步骤

# 配置WLAN服务,在无线口配置端口安全模式为dot1x方式

[AC-wlan-st-1]display this
#
wlan service-template 1 crypto                                                  
 ssid eap                                                                       
 bind WLAN-ESS 1                                                                
 cipher-suite tkip                                                              
 security-ie wpa                                                                
 service-template enable 
#
return
[AC-wlan-st-1]
[AC]int wlan-ess 1
[AC-WLAN-ESS1]display this
#
interface WLAN-ESS1                                                             
 port-security port-mode userlogin-secure-ext                                   
 port-security tx-key-type 11key                                                
 undo dot1x handshake    
#
return
[AC-WLAN-ESS1]

#配置dot1x认证为eap方式,并使能端口安全

[AC]dot1x authentication-method eap
[AC]port-security enable

#配置PKI参数

#
pki entity auth
  common-name local-auth
  organization h3c-auth
#
pki domain local
  certificate request entity auth
  crl check disable
#

#导入证书;
果之前已经导入过证书,需要先销毁公共密钥,才能再进行证书导入:

[AC]public-key local destroy rsa
Local key pair is in use by local certificate of domain "local" ,Do you want to 
delete local certificate first? [Y/N]:y

导入根证书:

[AC]pki import-certificate ca domain local der filename certnew.cer

The trusted CA's finger print is:                                              
    MD5  fingerprint:5710 DE77 4771 641F 5C38 8CF4 25DE 9CAA                   
    SHA1 fingerprint:02AB BAB7 F8CC 6D1E 3EF8 5EAB 5FBD B448 A8FE 24FA
Is the finger print correct?(Y/N):y
Import CA certificate successfully.
%Oct 17 17:02:33:554 2008 H3C PKI/4/Verify_CA_Root_Cert:CA root certificate of t
he domain local is trusted.
[H3C]
%Oct 17 17:02:33:563 2008 H3C PKI/4/Update_CA_Cert:Update CA certificates of the
 Domain local successfully.                                                    
%Oct 17 17:02:33:572 2008 H3C PKI/4/Import_CA_Cert:Import CA certificates of the
 domain local successfully.

导入server ssl证书:

[AC] pki import-certificate local domain local p12 filename server_ssl.pfx

Please input challenge password:                                               
Import local certificate successfully.                                         
%Oct 17 17:06:26:777 2008 H3C PKI/4/Verify_Cert:Verify certificate CN=pt_web of
the domain local successfully.                                                 
Import key pair successfully.                                                  
%Oct 17 17:06:26:783 2008 H3C PKI/4/Import_Local_Cert:Import local certificate o
f the domain local successfully.                                               
[H3C]                                                                          
%Oct 17 17:06:26:838 2008 H3C PKI/4/Import_Local_Key:Import local private key of
 the domain local successfully.

# 配置SSL服务策略;

#
ssl server-policy 1
 pki-domain local
 ciphersuite rsa_rc4_128_sha
 handshake timeout 180
 close-mode wait
 session  cachesize 1000

# 配置本地认证方式为eap-peap,并使能本地认证服务;

[AC]eap-profile eap1
[AC-eap-prof-eap]method peap-mschapv2
[AC-eap-prof-eap]ssl-server-policy 1
[AC-eap-prof-eap]quit
[AC]local-server authentication eap-profile eap1

# 创建用户组

[AC]user-group eap

# 创建本地用户,服务类型为lan-access

local-user eap
 password simple eap
 group eap
 service-type lan-access

四、验证结果

验证结果请查看步骤二下载的文档

 
建议使用IE8.0以上版本解析 网络QQ群:30573676 家园群:36740144 Elv home systems. 蜀ICP备20009373号 © All Rights Reserved 2012 - By badulip
×

扫二维码,关注微信公众号