forked from cozybit/authsae
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
improve configuration and command line usage for meshd-nl80211
Specifically, use libconfig to support a single unified config file, add a meshd configuration structure similar to those of ampe and sae, add a -h option, and improve usage message.
- Loading branch information
Showing
6 changed files
with
217 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/* this is a comment */ | ||
authsae: | ||
{ | ||
sae: | ||
{ | ||
debug = 480; | ||
password = "thisisreallysecret"; | ||
group = [19, 26, 21, 25, 20]; | ||
blacklist = 5; | ||
thresh = 5; | ||
lifetime = 3600; | ||
}; | ||
meshd: | ||
{ | ||
meshid = "byteme"; | ||
interface = "wlan0"; | ||
passive = 0; | ||
debug = 1; | ||
mediaopt = 1; | ||
band = "11g"; | ||
channel = 1; | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.