From ee18930c84e2f5f964b069e72b393588ff63f5c7 Mon Sep 17 00:00:00 2001 From: garywill <32130780+garywill@users.noreply.github.com> Date: Fri, 31 Aug 2018 18:41:06 +0800 Subject: [PATCH] rename to lnxrouter --- Readme.md | 22 ++++++++++++++++++++++ create_ap => lnxrouter | 3 --- 2 files changed, 22 insertions(+), 3 deletions(-) create mode 100644 Readme.md rename create_ap => lnxrouter (99%) diff --git a/Readme.md b/Readme.md new file mode 100644 index 0000000..18efd53 --- /dev/null +++ b/Readme.md @@ -0,0 +1,22 @@ + This is a fork of [create_ap](). + Share your Linux's Internet access to other devices. + +Usage + +``` +# lnxrouter --ap wlan0 MyAccessPoint --password MyPassPhrase +``` + +Features + +- Create Wifi hotspot and share Internet via NAT method +- DNS server +- DHCP server + +TODO + + +- Share Internet not creating Wifi hotspot +- Redsocks (Transparent proxy) +- Ban private network access +- IPv6 support \ No newline at end of file diff --git a/create_ap b/lnxrouter similarity index 99% rename from create_ap rename to lnxrouter index cb43ddb..edecf6b 100755 --- a/create_ap +++ b/lnxrouter @@ -1084,16 +1084,13 @@ while [[ -n "$1" ]]; do --ap) shift WIFI_IFACE="$1" - echo wifi_iface is $WIFI_IFACE shift SSID="$1" - echo ssid is $SSID shift ;; --password) shift PASSPHRASE="$1" - echo password is $PASSPHRASE shift ;; --)