create_ap

create a nat-ed wifi ap
git clone git://git.2f30.org/create_ap
Log | Files | Refs | README | LICENSE

commit ec121dbdbfe3660a7d8f20f7cf758bdd01cdbf06
parent b9fd1fd19f9cb447992eada06eefa7499b1186c0
Author: oblique <psyberbits@gmail.com>
Date:   Sun, 17 Nov 2013 13:43:50 +0200

update README.md file

Diffstat:
MREADME.md | 12++++++++++++
1 file changed, 12 insertions(+), 0 deletions(-)

diff --git a/README.md b/README.md @@ -14,10 +14,22 @@ ./create_ap wlan0 eth0 MyAccessPoint +OR + + echo -e "MyAccessPoint\n" | ./create_ap wlan0 eth0 + ### WPA + WPA2 passphrase: ./create_ap wlan0 eth0 MyAccessPoint MyPassPhrase +OR + + echo -e "MyAccessPoint\nMyPassPhrase" | ./create_ap wlan0 eth0 + ### AP without Internet sharing: ./create_ap -n wlan0 MyAccessPoint MyPassPhrase + +OR + + echo -e "MyAccessPoint\nMyPassPhrase" | ./create_ap -n wlan0