Loading...

Archive

Posts Tagged ‘Linux’

使用 Wicd 连接 TTLS with WEP 加密的网络

May 15th, 2011 4 comments

很多大学的 Wi-Fi 网络使用 TTLS with WEP 的加密方式,在 Windows 和 Mac 上都有很便捷的配置方法。在 Linux 下我们借助 Wicd 也可以很方便的连接 TTLS/WEP 加密的无线网络。

编辑 Wicd 的 Encryption Templates: 修改 /etc/wicd/encryption/templates/ttls ,使用下面的配置。

name = TTLS with WEP
author = Adam Blackburn
version = 1
require identity *Identity anonymous_identity *Anonymous_identity password *Password auth *Authentication ca_cert *Path_to_CA_Cert
-----
ctrl_interface=/var/run/wpa_supplicant
network={
	ssid="$_ESSID"
	scan_ssid=$_SCAN
	eap=TTLS
	key_mgmt=IEEE8021X
	identity="$_IDENTITY"
	password="$_PASSWORD"
	ca_cert="$_CA_CERT"
	phase2="auth=$_AUTH"
}

接下来在 /etc/wicd/encryption/templates/active 里添加 ttls 这一项即可。

Categories: Informatics Tags: