1
0
mirror of https://github.com/gryf/wicd.git synced 2026-02-10 18:45:53 +01:00

Implement WEP key index specification

This commit is contained in:
David Paleino
2012-05-04 19:39:04 +02:00
parent bca11618be
commit 63460113b8
8 changed files with 45 additions and 26 deletions

View File

@@ -1,7 +1,8 @@
name = WEP (Hex [0-9/A-F])
author = Adam Blackburn
version = 1
version = 2
require key *Key
optional key_index *Key_Index
protected key *Key
-----
ctrl_interface=/var/run/wpa_supplicant
@@ -9,7 +10,7 @@ network={
ssid="$_ESSID"
scan_ssid=$_SCAN
key_mgmt=NONE
wep_key0=$_KEY
wep_tx_keyidx=0
wep_key$_KEY_INDEX=$_KEY
wep_tx_keyidx=$_KEY_INDEX
priority=5
}

View File

@@ -1,7 +1,8 @@
name = WEP (Passphrase)
author = Adam Blackburn
version = 1
version = 2
require passphrase *Passphrase
optional key_index *Key_Index
protected passphrase *Passphrase
-----
ctrl_interface=/var/run/wpa_supplicant
@@ -9,7 +10,7 @@ network={
ssid="$_ESSID"
scan_ssid=$_SCAN
key_mgmt=NONE
wep_key0="$_PASSPHRASE"
wep_tx_keyidx=0
wep_key$_KEY_INDEX="$_PASSPHRASE"
wep_tx_keyidx=$_KEY_INDEX
priority=5
}

View File

@@ -1,7 +1,8 @@
name = WEP Shared/Restricted
author = Dan O'Reilly
version = 1
version = 2
require key *Key
optional key_index *Key_Index
protected key *Key
-----
ctrl_interface=/var/run/wpa_supplicant
@@ -10,7 +11,7 @@ network={
scan_ssid=$_SCAN
key_mgmt=NONE
auth_alg=SHARED
wep_key0=$_KEY
wep_tx_keyidx=0
wep_key$_KEY_INDEX=$_KEY
wep_tx_keyidx=$_KEY_INDEX
priority=5
}