From aa450cc9dc61d24126f217a73bd5e41713bc04b9 Mon Sep 17 00:00:00 2001 From: glen Date: Sat, 27 Feb 2021 16:39:26 -0500 Subject: [PATCH] change ssid to LabyrinthAP --- README.md | 2 +- config/hostapd.conf | 4 ++-- installers/common.sh | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a3c8ffb..1cde73e 100644 --- a/README.md +++ b/README.md @@ -94,7 +94,7 @@ configured as an access point as follows: * Username: `admin` * Password: `secret` * DHCP range: 10.3.141.1 to 10.3.141.24 -* SSID: `loki-access` +* SSID: `LabyrinthAP` * Password: `ChangeMe` ## Test site diff --git a/config/hostapd.conf b/config/hostapd.conf index b177771..5a2d512 100644 --- a/config/hostapd.conf +++ b/config/hostapd.conf @@ -6,7 +6,7 @@ ctrl_interface_group=0 auth_algs=1 wpa_key_mgmt=WPA-PSK beacon_int=100 -ssid=loki-access +ssid=LabyrinthAP channel=6 hw_mode=g ieee80211n=1 @@ -27,7 +27,7 @@ ignore_broadcast_ssid=0 #beacon_int=100 #auth_algs=1 #wpa_key_mgmt=WPA-PSK -#ssid=loki-access +#ssid=LabyrinthAP #channel=1 #hw_mode=g #wpa_passphrase=ChangeMe diff --git a/installers/common.sh b/installers/common.sh index f03f9ec..62939a1 100755 --- a/installers/common.sh +++ b/installers/common.sh @@ -420,7 +420,7 @@ function install_complete() { exit 0 fi install_log "Shutting Down" - echo -n "Allow a minute for reinitialization then connect wifi to SSID loki-access and use default password 'ChangeMe'" + echo -n "Allow a minute for reinitialization then connect wifi to SSID LabyrinthAP and use default password 'ChangeMe'" sleep 8 sudo shutdown -r now || install_error "Unable to execute shutdown" }