shell script for setup and management of hotspot (hostapd) functions on rpi platform
functions:
- try
- start
- stop
- restart
- retry
- status
- setup
- setchan [channel]
- syslog [lines]
- ipt [wipe]
- ovpn [start|stop|refresh]
- tor [start|stop]
- version
- wlan [start|stop]
- modpar <dnsmasq|hostapd|self> <name> [value]
will use onboard wlan adaptor for hotspot functionality and
the on board ethernet port or an optional external usb wlan adaptor (e.g. EW-7811Un Realtek RTL8188CUS)
for internet access.
best wlan channel for hotspot functionality will be determined automatically by least used frequency spectrum.
create .ovpn config files for free openvpn server taken from https://www.vpngate.net
actions will be logged to /tmp/hotspot and syslog
pls. see examples in troubleshooting section.
for full installation and setup sequence, pls. see installation and setup section at the bottom of this file
rpi login as root required
root:# cd /usr/local/sbin
root:# rm hotspot # just remove old hotspot script
root:# wget https://raw.githubusercontent.com/rudiratlos/hotspot/master/hotspot
root:# chmod +x hotspot
root:# apt-get update
root:# apt-get upgradewill install all required packages (e.g. iw tor hostapd dnsmasq),
setting parameters and create config files:
- /etc/sysctl.conf (activate line net.ipv4.ip_forward=1)
- /etc/rc.local
- /etc/issues
- /etc/dhcpcd.conf
- /etc/dnsmasq.conf
- /etc/default/hostapd
- /etc/hostapd/hostapd.conf
- /etc/tor/torrc
Existing files will be backed up with a date extension (YYYYMMDDhhmmss).
hotspot setup
hotspot tryabove command sequence will create a hotspot with following default parameter:
ssid: <HOSTNAME>wlan-<MAC3ByteAdr> (e.g. RPIwlan-abcdef)
pwd: hallohallo
country: DE
next commands will create all config files and adjusts parameter to your environment.
hotspot setup
hotspot modpar hostapd ssid myHotspotID
hotspot modpar hostapd wpa_passphrase myHotspotPassword
hotspot modpar hostapd country_code SE
hotspot modpar crda REGDOMAIN SE
hotspot trybefore executing hotspot setup command,
you can disable the installation of tor and/or ovpn package by modifying the aptaddinstlist variable.
hotspot modpar self aptaddinstlist "tor" # install tor only
hotspot modpar self aptaddinstlist "openvpn" # install openvpn only
hotspot modpar self aptaddinstlist "tor openvpn" # install both (default)
hotspot modpar self aptaddinstlist "" # do not install tor and openvpnstart all hotspot associated functions:
- terminate connection on wlan0
- create device ap0 and assign IP addr
- start dnsmasq
- start hostapd
hotspot startwill start hotspot if following condition is met:
- wlan0 or eth0 not connected
- wlan0 and eth0 IP addresses are on same IP subnet (wlan0 connection will be stopped)
hotspot trystop hotspot functions:
- stop hostapd
- stop dnsmasq
- optional: restart wlan
hotspot stopexecutes following hotspot sequence:
- hotspot stop nowlan
- sleep some seconds (settling time)
- hotspot start
hotspot restartexecutes following hotspot sequence:
- hotspot stop nowlan
- sleep some seconds (settling time)
- hotspot try
hotspot retrychange parameter value in config file
format: hotspot modpar <dnsmasq|hostapd|self> <name> [value]
file selector:
dnsmasq /etc/dnsmasq.conf
hostapd /etc/hostapd/hostapd.conf
self /usr/local/sbin/hotspot
name parameter name
value parameter value
examples:
hotspot modpar hostapd ssid myHotspotID # set parameter ssid=myHotspotID
hotspot modpar hostapd country_code DE # set parameter country_code=DEDuring boot process /etc/rc.local will look for file content autostart="yes" in /usr/local/sbin/hotspot and will execute hotspot try command.
hotspot modpar self autostart yes # enable autostart
hotspot modpar self autostart no # disable autostart (default)start openvpn automatically
hotspot modpar self ovpnstart yes # enable ovpnstart
hotspot modpar self ovpnstart no # disable ovpnstart (default)adjust specific openvpn parameter
hotspot modpar self ovpn_dev tun3 # change ovpn device for iptablesto work correctly, ovpn_dev has to be the same, that is defined in .ovpn config file (parameter dev).
start tor service automatically
hotspot modpar self torstart yes # enable torstart
hotspot modpar self torstart no # disable torstart (default)hotspot script will look for file content wipeiptables="yes" at startup and will flush/wipe all rules before hotspot will set new rules.
hotspot modpar self wipeiptables yes # reset all rules (default)
hotspot modpar self wipeiptables no # no rules wipeingcopy your.ovpn and your.pwd file to /etc/ovpn/client/
cp your.ovpn /etc/ovpn/client/
cp your.pwd /etc/ovpn/client/
hotspot modpar self ovpncfg your.ovpn
hotspot modpar self ovpnpwd your.pwd
hotspot modpar self ovpnrefreshbeforestart no
hotspot modpar self ovpnstart yesif you do not have a your.pwd, set the parameter to an emtpy string
start, stop openvpn or refresh .ovpn files from vpngate.net experimental
refresh will download the CSV list of free openvpn server and will create .ovpn files.
server from these countries will be used, defined by ovpnsel parameter: AT CH DE ES FR GB JP KR SC TW US
out of these, the server with the highest score is defined in /etc/openvpn/client/vpngate_bestscore.ovpn and will be used as default openvpn server.
pls. see ovpnstart parameter for automatic starting openvpn and modifying parameter
hotspot ovpn start # start openvpn service
hotspot ovpn stop # stop openvpn service (default)
hotpsot ovpn refresh # recreate .ovpn config filesstart or stop tor service experimental
pls. see torstart parameter for automatic starting tor service.
hotspot tor start # start tor service
hotspot tor stop # stop tor serviceshow hotspot related syslog entries
hotspot syslog
hotspot syslog 5show hotspot script version
hotspot versionrpi login as root required
root:# cd /usr/local/sbin
root:# rm hotspot # just remove old hotspot script
root:# wget https://raw.githubusercontent.com/rudiratlos/hotspot/master/hotspot
root:# chmod +x hotspot
root:# apt-get update
root:# apt-get upgrade # optional
root:# hotspot setup
root:# hotspot modpar hostapd ssid myHotspotID
root:# hotspot modpar hostapd wpa_passphrase myHotspotPassword
root:# hotspot modpar hostapd country_code SE
root:# hotspot modpar crda REGDOMAIN SE
root:# hotspot modpar self autostart yes # optional autostart enable
root:# reboot # if autostart enable or use hotspot trylog entries will be sent to the file /tmp/hotspot.log and syslog utility
following commands will show you hotspot script activity
hotspot syslog
cat /tmp/hotspot.log
tail -500 /var/log/syslog | grep -a "hotspot:"
cat /var/log/syslog | grep -a "hotspot:"these commands will show 5 log entries of involved SW packages caused by hotspot command sequence
hotspot syslog 5
tail -500 /var/log/syslog | grep -a -A 5 "hotspot:"
cat /var/log/syslog | grep -a -A 5 "hotspot:"