From a0c9972b51d1f9a16e725162a74b7db66f1855ec Mon Sep 17 00:00:00 2001 From: Zakary Timson Date: Sat, 27 Jul 2024 15:08:04 -0400 Subject: [PATCH] Update bin/access-point.sh --- bin/access-point.sh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/bin/access-point.sh b/bin/access-point.sh index b679000..2d849bc 100755 --- a/bin/access-point.sh +++ b/bin/access-point.sh @@ -2,10 +2,7 @@ # Configuration ======================================================================================================= -SSID="$HOSTNAME" # Default SSID to device hostname -PASSWORD="" # Default password if not specified - -DHCP_IP="10.10.10.1" # Device IP on access point +SSID="$HOSTNAME" # Defaults SSID to hostname DHCP_START="10.10.10.2" # Start of DHCP IP pool DHCP_END="10.10.10.254" # End of DHCP IP pool @@ -13,6 +10,7 @@ DHCP_END="10.10.10.254" # End of DHCP IP pool DISABLE=false FAILOVER="" +PASSWORD="" QUIET=false SCRIPT="$(basename $0)"