1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/hotspot_ynh.git synced 2024-09-03 19:25:53 +02:00
hotspot_ynh/conf/ynh-hotspot

590 lines
16 KiB
Text
Raw Normal View History

#!/bin/bash
#
# Wifi Hotspot app for YunoHost
2014-12-26 20:18:03 +01:00
# Copyright (C) 2015 Julien Vaubourg <julien@vaubourg.com>
# Contribute at https://github.com/labriqueinternet/hotspot_ynh
#
2014-12-26 20:18:03 +01:00
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
2014-12-26 20:18:03 +01:00
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
2014-12-26 20:18:03 +01:00
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# Functions
## State functions
has_vpnclient_app() {
[ -e /tmp/.ynh-vpnclient-started ]
}
2014-11-10 22:27:59 +01:00
has_ip6delegatedprefix() {
2015-04-26 21:34:11 +02:00
i=${1}
[ "${ynh_ip6_net[${i}]}" != none ]
2014-11-10 22:27:59 +01:00
}
is_nat_set() {
internet_device=${1}
2016-05-07 23:30:23 +02:00
iptables -w -nvt nat -L POSTROUTING | grep MASQUERADE | grep -q "${internet_device}"
}
is_ip4nataddr_set() {
2015-04-26 21:34:11 +02:00
i=${1}
2015-07-24 23:48:24 +02:00
dev=$(devfromid "${i}")
2015-05-02 14:54:08 +02:00
ip address show dev "${dev}" 2> /dev/null | grep -q "${ynh_ip4_nat_prefix[${i}]}.1/24"
}
is_ip6addr_set() {
2015-04-26 21:34:11 +02:00
i=${1}
2015-07-24 23:48:24 +02:00
dev=$(devfromid "${i}")
2015-05-02 14:54:08 +02:00
ip address show dev "${dev}" 2> /dev/null | grep -q "${ynh_ip6_addr[${i}]}/64"
}
2015-07-24 23:48:24 +02:00
is_ip6firewall_set() {
i=${1}
dev=$(devfromid "${i}")
2016-05-07 23:30:23 +02:00
ip6tables -w -nvL FORWARD | grep DROP | grep -q "${dev}"
2015-07-24 23:48:24 +02:00
}
is_forwarding_set() {
ip6=$(sysctl net.ipv6.conf.all.forwarding | awk '{ print $NF; }')
ip4=$(sysctl net.ipv4.conf.all.forwarding | awk '{ print $NF; }')
[ "${ip6}" -eq 1 -a "${ip4}" -eq 1 ]
}
is_dhcpd6_running() {
2015-04-26 21:34:11 +02:00
i=${1}
2014-12-26 18:58:58 +01:00
$(ps aux | grep "dhcpdv6-ssid${i}" | grep -qv grep)
}
is_dhcpd4_running() {
i=${1}
$(ps aux | grep "dhcpdv4-ssid${i}" | grep -qv grep)
2014-12-26 18:58:58 +01:00
}
is_hostapd_running() {
2015-05-25 02:23:28 +02:00
systemctl is-active hostapd &> /dev/null
2015-04-26 21:34:11 +02:00
}
2015-04-26 21:34:11 +02:00
is_running() {
for i in $(seq 0 $((${ynh_multissid} - 1))); do
2015-07-24 23:48:24 +02:00
( has_ip6delegatedprefix ${i} && is_ip6addr_set ${i}\
&& ( [ "${ynh_ip6_firewall[${i}]}" -eq 1 ] && is_ip6firewall_set ${i} || [ "${ynh_ip6_firewall[${i}]}" -eq 0 ] )\
&& is_dhcpd6_running ${i} || ! has_ip6delegatedprefix ${i} )\
2015-05-25 02:23:28 +02:00
&& is_ip4nataddr_set ${i} && is_dhcpd4_running ${i}
2014-12-26 18:58:58 +01:00
2015-04-26 21:34:11 +02:00
if [ ! $? -eq 0 ]; then
2014-12-26 18:58:58 +01:00
return 1
fi
2015-04-26 21:34:11 +02:00
done
2014-12-26 18:58:58 +01:00
is_hostapd_running && is_forwarding_set && ( [ -z "${new_internet_device}" ] || is_nat_set "${new_internet_device}" )
}
## Setters
set_nat() {
internet_device=${1}
2016-05-07 23:30:23 +02:00
iptables -w -t nat -A POSTROUTING -o "${internet_device}" -j MASQUERADE
}
set_ip4nataddr() {
2015-04-26 21:34:11 +02:00
i=${1}
2015-07-24 23:48:24 +02:00
dev=$(devfromid "${i}")
2015-05-02 14:54:08 +02:00
ip address add "${ynh_ip4_nat_prefix[${i}]}.1/24" dev "${dev}"
}
set_ip6addr() {
2015-04-26 21:34:11 +02:00
i=${1}
2015-07-24 23:48:24 +02:00
dev=$(devfromid "${i}")
2015-05-02 14:54:08 +02:00
2015-04-26 21:34:11 +02:00
ip address delete "${ynh_ip6_addr[${i}]}/64" dev tun0 &> /dev/null
2015-05-02 14:54:08 +02:00
ip address add "${ynh_ip6_addr[${i}]}/64" dev "${dev}"
}
2015-07-24 23:48:24 +02:00
set_ip6firewall() {
i=${1}
dev=$(devfromid "${i}")
2016-05-07 23:30:23 +02:00
ip6tables -w -A FORWARD -i "${dev}" -j ACCEPT
ip6tables -w -A FORWARD -o "${dev}" -m conntrack --ctstate ESTABLISHED,RELATED -j ACCEPT
ip6tables -w -A FORWARD -o "${dev}" -j DROP
2015-07-24 23:48:24 +02:00
}
set_forwarding() {
sysctl -w net.ipv6.conf.all.forwarding=1 > /dev/null
sysctl -w net.ipv4.conf.all.forwarding=1 > /dev/null
}
start_dhcpd6() {
2015-04-26 21:34:11 +02:00
i=${1}
2015-07-24 23:48:24 +02:00
dev=$(devfromid "${i}")
2015-05-02 14:54:08 +02:00
2015-05-25 02:23:28 +02:00
cp /etc/dnsmasq.dhcpd/dhcpdv6{.conf.tpl,-ssid${i}.conf}
sed "s|<TPL:WIFI_DEVICE>|${dev}|g" -i /etc/dnsmasq.dhcpd/dhcpdv6-ssid${i}.conf
sed "s|<TPL:IP6_NET>|${ynh_ip6_net[${i}]}|g" -i /etc/dnsmasq.dhcpd/dhcpdv6-ssid${i}.conf
2021-09-20 18:01:28 +02:00
sed "s|<TPL:IP6_DNS>|${ynh_ip6_dns[${i}]}|g" -i /etc/dnsmasq.dhcpd/dhcpdv6-ssid${i}.conf
2015-04-26 21:34:11 +02:00
dnsmasq -C /etc/dnsmasq.dhcpd/dhcpdv6-ssid${i}.conf -p0
}
start_dhcpd4() {
i=${1}
2015-07-24 23:48:24 +02:00
dev=$(devfromid "${i}")
2014-12-26 18:58:58 +01:00
2015-04-26 21:34:11 +02:00
cp /etc/dnsmasq.dhcpd/dhcpdv4{.conf.tpl,-ssid${i}.conf}
2021-09-20 18:01:28 +02:00
sed "s|<TPL:IP4_DNS>|${ynh_ip4_dns[${i}]}|g" -i /etc/dnsmasq.dhcpd/dhcpdv4-ssid${i}.conf
2015-05-02 14:54:08 +02:00
sed "s|<TPL:WIFI_DEVICE>|${dev}|g" -i /etc/dnsmasq.dhcpd/dhcpdv4-ssid${i}.conf
2015-04-26 21:34:11 +02:00
sed "s|<TPL:IP4_NAT_PREFIX>|${ynh_ip4_nat_prefix[${i}]}|g" -i /etc/dnsmasq.dhcpd/dhcpdv4-ssid${i}.conf
2014-12-26 18:58:58 +01:00
2015-04-26 21:34:11 +02:00
dnsmasq -C /etc/dnsmasq.dhcpd/dhcpdv4-ssid${i}.conf -p0
2014-12-26 18:58:58 +01:00
}
start_hostapd() {
2015-04-26 21:34:11 +02:00
cp /etc/hostapd/hostapd.conf{.tpl1,}
2015-05-02 12:51:57 +02:00
ethaddr=$(ip link show dev "${ynh_wifi_device}" | grep link/ether | awk -F: '{ printf "02:%s:%s:%s:%s:00", $2, $3, $4, $5 }')
ip link set addr "${ethaddr}" dev "${ynh_wifi_device}"
sed "s|<TPL:WIFI_DEVICE>|${ynh_wifi_device}|g" -i /etc/hostapd/hostapd.conf
sed "s|<TPL:WIFI_CHANNEL>|${ynh_wifi_channel}|g" -i /etc/hostapd/hostapd.conf
2015-05-02 14:54:08 +02:00
sed "s|<TPL:N_COMMENT>||g" -i /etc/hostapd/hostapd.conf
2014-11-09 23:49:06 +01:00
2015-04-26 21:34:11 +02:00
for i in $(seq 0 $((${ynh_multissid} - 1))); do
cp /etc/hostapd/hostapd.conf{.tpl2,.tmp}
2015-05-02 14:54:08 +02:00
sed "s|<TPL:WIFI_INTERFACE>|hotspot${i}|g" -i /etc/hostapd/hostapd.conf.tmp
2015-04-26 21:34:11 +02:00
sed "s|<TPL:WIFI_SSID>|${ynh_wifi_ssid[${i}]}|g" -i /etc/hostapd/hostapd.conf.tmp
sed "s|<TPL:WIFI_PASSPHRASE>|${ynh_wifi_passphrase[${i}]}|g" -i /etc/hostapd/hostapd.conf.tmp
2015-04-26 21:34:11 +02:00
if [ "${ynh_wifi_secure[${i}]}" -eq 1 ]; then
sed "s|<TPL:SEC_COMMENT>||g" -i /etc/hostapd/hostapd.conf.tmp
else
sed "s|<TPL:SEC_COMMENT>|#|g" -i /etc/hostapd/hostapd.conf.tmp
fi
2015-05-02 12:32:19 +02:00
if [ "${i}" -eq 0 ]; then
sed "s|<TPL:BSS_COMMENT>|#|g" -i /etc/hostapd/hostapd.conf.tmp
else
sed "s|<TPL:BSS_COMMENT>||g" -i /etc/hostapd/hostapd.conf.tmp
fi
2015-04-26 21:34:11 +02:00
cat /etc/hostapd/hostapd.conf.tmp >> /etc/hostapd/hostapd.conf
rm /etc/hostapd/hostapd.conf.tmp
done
2015-05-25 02:23:28 +02:00
systemctl start hostapd
}
## Unsetters
unset_nat() {
internet_device=${1}
2016-05-07 23:30:23 +02:00
iptables -w -t nat -D POSTROUTING -o "${internet_device}" -j MASQUERADE
}
unset_ip4nataddr() {
2015-04-26 21:34:11 +02:00
i=${1}
2015-07-24 23:48:24 +02:00
dev=$(devfromid "${i}")
2015-05-02 14:54:08 +02:00
ip address delete "${ynh_ip4_nat_prefix[${i}]}.1/24" dev "${dev}"
}
unset_ip6addr() {
2015-04-26 21:34:11 +02:00
i=${1}
2015-07-24 23:48:24 +02:00
dev=$(devfromid "${i}")
2015-05-02 14:54:08 +02:00
ip address delete "${ynh_ip6_addr[${i}]}/64" dev "${dev}"
2014-12-26 18:58:58 +01:00
}
2015-07-24 23:48:24 +02:00
unset_ip6firewall() {
i=${1}
dev=$(devfromid "${i}")
2016-05-07 23:30:23 +02:00
ip6tables -w -D FORWARD -i "${dev}" -j ACCEPT
ip6tables -w -D FORWARD -o "${dev}" -m conntrack --ctstate ESTABLISHED,RELATED -j ACCEPT
ip6tables -w -D FORWARD -o "${dev}" -j DROP
2015-07-24 23:48:24 +02:00
}
unset_forwarding() {
sysctl -w net.ipv6.conf.all.forwarding=0 > /dev/null
sysctl -w net.ipv4.conf.all.forwarding=0 > /dev/null
}
stop_dhcpd6() {
kill $(ps aux | grep 'dhcpdv6-ssid' | grep -v grep | awk '{ print $2 }')
rm -f /etc/dnsmasq.d/dhcpdv6-ssid*.conf
}
stop_dhcpd4() {
kill $(ps aux | grep 'dhcpdv4-ssid' | grep -v grep | awk '{ print $2 }')
rm -f /etc/dnsmasq.d/dhcpdv4-ssid*.conf
2015-04-26 21:34:11 +02:00
}
stop_hostapd() {
2015-05-25 02:23:28 +02:00
systemctl stop hostapd
}
## Tools
ynh_setting_get() {
app=${1}
setting=${2}
grep "^${setting}:" "/etc/yunohost/apps/${app}/settings.yml" | sed s/^[^:]\\+:\\s*[\"\']\\?// | sed s/\\s*[\"\']\$//
2021-09-20 18:01:28 +02:00
# '"
}
ynh_setting_set() {
2014-11-17 23:44:18 +01:00
# This is a partial copypasta of the official ynh_app_setting internal helper
# In particular, we do this instead of relying on 'yunohost app setting' for
# performance reasons (it takes a few second to run every yunohost commands)
# and to remove the need for the infamous '--need-lock' option/issue.
2021-09-20 18:01:28 +02:00
app="$1" key="$2" value="${3:-}" python3 - <<EOF
import os, yaml, sys
app = os.environ['app']
key, value = os.environ['key'], os.environ.get('value', None)
setting_file = "/etc/yunohost/apps/%s/settings.yml" % app
assert os.path.exists(setting_file), "Setting file %s does not exists ?" % setting_file
with open(setting_file) as f:
settings = yaml.load(f)
settings[key] = value
with open(setting_file, "w") as f:
yaml.safe_dump(settings, f, default_flow_style=False)
EOF
}
2015-07-24 23:48:24 +02:00
devfromid() {
i=${1}
if [ "${i}" -eq 0 ]; then
echo "${ynh_wifi_device}"
else
echo "hotspot${i}"
fi
}
2014-12-28 23:27:39 +01:00
if [ "$1" != restart ]; then
2014-11-25 21:05:24 +01:00
2014-12-28 23:27:39 +01:00
# Variables
2014-12-28 23:27:39 +01:00
echo -n "Retrieving Yunohost settings... "
ynh_service_enabled=$(systemctl is-enabled ynh-hotspot)
ynh_wifi_device=$(ynh_setting_get hotspot wifi_device)
ynh_wifi_channel=$(ynh_setting_get hotspot wifi_channel)
ynh_multissid=$(ynh_setting_get hotspot multissid)
IFS='|' read -a ynh_wifi_ssid <<< "$(ynh_setting_get hotspot wifi_ssid)"
IFS='|' read -a ynh_wifi_secure <<< "$(ynh_setting_get hotspot wifi_secure)"
IFS='|' read -a ynh_wifi_passphrase <<< "$(ynh_setting_get hotspot wifi_passphrase)"
IFS='|' read -a ynh_ip6_addr <<< "$(ynh_setting_get hotspot ip6_addr)"
2015-07-24 23:48:24 +02:00
IFS='|' read -a ynh_ip6_firewall <<< "$(ynh_setting_get hotspot ip6_firewall)"
IFS='|' read -a ynh_ip6_net <<< "$(ynh_setting_get hotspot ip6_net)"
2021-09-20 18:01:28 +02:00
IFS='|' read -a ynh_dns <<< "$(ynh_setting_get hotspot dns)"
IFS='|' read -a ynh_ip4_nat_prefix <<< "$(ynh_setting_get hotspot ip4_nat_prefix)"
2021-09-20 18:01:28 +02:00
for i in $(seq 0 $((${ynh_multissid} - 1))); do
ynh_ip6_dns[${i}]=""
ynh_ip4_dns[${i}]=""
for ip in ; do
if [[ "$ip" == *":"* ]]
then
ynh_ip6_dns[${i}]+="[$ip],"
else
ynh_ip4_dns[${i}]+="$ip,"
fi
done
ynh_ip6_dns[${i}]="${ynh_ip6_dns[${i}]%%*,}"
ynh_ip4_dns[${i}]="${ynh_ip4_dns[${i}]%%*,}"
done
old_internet_device=$(ynh_setting_get hotspot internet_device)
2014-12-28 23:27:39 +01:00
new_internet_device=$(ip route | awk '/default via/ { print $NF; }')
2014-12-28 23:27:39 +01:00
# Switch the NAT interface if there is a VPN
ip link show dev tun0 &> /dev/null
if [ "$?" -eq 0 ]; then
new_internet_device=tun0
fi
2014-12-28 23:27:39 +01:00
echo "OK"
2014-11-17 23:44:18 +01:00
fi
# Script
case "$1" in
start)
if is_running; then
echo "Already started"
2019-03-13 13:27:34 +01:00
elif [ "${ynh_service_enabled}" != "enabled" ]; then
echo "Disabled service"
else
if [ -z "${ynh_wifi_device}" ]; then
echo "[ERR] No wifi device selected. Make sure your wifi antenna is plugged-in / available and select it in the Hotspot admin"
exitcode=1
fi
echo "[hotspot] Starting..."
touch /tmp/.ynh-hotspot-started
if [ "${new_internet_device}" == tun0 ]; then
ynh_setting_set hotspot vpnclient yes
else
ynh_setting_set hotspot vpnclient no
fi
# Check old state of the ipv4 NAT settings
if [ ! -z "${old_internet_device}" -a "${new_internet_device}" != "${old_internet_device}" ]\
&& is_nat_set "${old_internet_device}"; then
unset_nat "${old_internet_device}"
fi
# Set ipv4 NAT
if [ ! -z "${new_internet_device}" ] && ! is_nat_set "${new_internet_device}"; then
echo "Set NAT"
set_nat "${new_internet_device}"
fi
# Set forwarding for ipv6 and ipv4
if ! is_forwarding_set; then
echo "Set forwarding"
set_forwarding
fi
2015-03-17 00:35:34 +01:00
# Run hostapd
if ! is_hostapd_running; then
echo "Run hostapd"
2015-04-26 21:34:11 +02:00
start_hostapd ${i}
if [ ! $? -eq 0 ]; then
exit 1
fi
2015-05-25 02:23:28 +02:00
if [ "${ynh_multissid}" -gt 1 ]; then
i=0; false || while [ $? -ne 0 ]; do
sleep 1 && (( i++ ))
[ ${i} -gt 20 ] && stop_hostapd
[ ${i} -gt 20 ] && exit 1
ip link show dev hotspot1 &> /dev/null
done
else
sleep 1
fi
2015-03-17 00:35:34 +01:00
fi
2015-04-26 21:34:11 +02:00
# For each registred ssid
for i in $(seq 0 $((${ynh_multissid} - 1))); do
2014-12-26 18:58:58 +01:00
2015-04-26 21:34:11 +02:00
# Set ipv4 NAT address
if ! is_ip4nataddr_set ${i}; then
echo "hotspot${i}: Set IPv4 NAT address"
2015-04-26 21:34:11 +02:00
set_ip4nataddr ${i}
fi
2015-04-26 21:34:11 +02:00
# Set the ipv6 address
if has_ip6delegatedprefix ${i} && ! is_ip6addr_set ${i}; then
echo "hotspot${i}: Set IPv6 address"
2015-04-26 21:34:11 +02:00
set_ip6addr ${i}
fi
2015-07-24 23:48:24 +02:00
# Set ipv6 firewalling
if has_ip6delegatedprefix ${i} && [ "${ynh_ip6_firewall[${i}]}" -eq 1 ] && ! is_ip6firewall_set ${i}; then
echo "hotspot${i}: Set IPv6 firewalling"
set_ip6firewall ${i}
fi
# Run DHCPv6 server
if has_ip6delegatedprefix ${i} && ! is_dhcpd6_running ${i}; then
echo "hotspot${i}: Start the NDP and DHCPv6 server (dnsmasq)"
start_dhcpd6 ${i}
2015-04-26 21:34:11 +02:00
fi
# Run DHCPv4 server
if ! is_dhcpd4_running ${i}; then
echo "hotspot${i}: Start the DHCPv4 server (dnsmasq)"
start_dhcpd4 ${i}
fi
2015-04-26 21:34:11 +02:00
done
# Update dynamic settings
ynh_setting_set hotspot internet_device "${new_internet_device}"
fi
;;
stop)
echo "[hotspot] Stopping..."
2014-12-26 18:58:58 +01:00
rm -f /tmp/.ynh-hotspot-started
if [ ! -z "${old_internet_device}" ] && is_nat_set "${old_internet_device}"; then
echo "Unset NAT"
unset_nat "${old_internet_device}"
fi
if is_forwarding_set; then
echo "Unset forwarding"
unset_forwarding
fi
2015-04-26 21:34:11 +02:00
for i in $(seq 0 $((${ynh_multissid} - 1))); do
if is_ip4nataddr_set ${i}; then
echo "hotspot${i}: Unset IPv4 NAT address"
2015-04-26 21:34:11 +02:00
unset_ip4nataddr ${i}
fi
if has_ip6delegatedprefix ${i} && is_ip6addr_set ${i}; then
echo "hotspot${i}: Unset IPv6 address"
2015-04-26 21:34:11 +02:00
unset_ip6addr ${i}
fi
2015-07-24 23:48:24 +02:00
if has_ip6delegatedprefix ${i} && [ "${ynh_ip6_firewall[${i}]}" -eq 1 ] && is_ip6firewall_set ${i}; then
echo "hotspot${i}: Unset IPv6 firewalling"
unset_ip6firewall ${i}
fi
if is_dhcpd6_running ${i}; then
echo "hotspot${i}: Stop the NDP and DHCPv6 server (dnsmasq)"
stop_dhcpd6 ${i}
fi
if is_dhcpd4_running ${i}; then
echo "hotspot${i}: Stop the DHCPv4 server (dnsmasq)"
stop_dhcpd4 ${i}
2015-04-26 21:34:11 +02:00
fi
done
2014-12-26 18:58:58 +01:00
if is_hostapd_running; then
echo "Stop hostapd"
stop_hostapd
fi
2015-05-25 02:23:28 +02:00
# Fix configuration
if has_vpnclient_app; then
2015-05-25 02:23:28 +02:00
ynh-vpnclient start
fi
;;
2014-12-28 15:38:05 +01:00
restart)
$0 stop
$0 start
;;
status)
exitcode=0
2014-11-20 20:03:24 +01:00
2019-03-13 13:27:34 +01:00
if [ "${ynh_service_enabled}" != "enabled" ]; then
echo "[ERR] Hotspot Service disabled"
exitcode=1
fi
if [ -z "${ynh_wifi_device}" ]; then
echo "[ERR] No wifi device selected. Make sure your wifi antenna is plugged-in / available and select it in the Hotspot admin"
exitcode=1
fi
2014-11-20 20:03:24 +01:00
echo "[INFO] Autodetected internet interface: ${new_internet_device} (last start: ${old_internet_device})"
if is_nat_set "${new_internet_device}"; then
2014-11-17 23:44:18 +01:00
echo "[OK] IPv4 NAT set"
else
if [ -z "${new_internet_device}" ]; then
echo "[INFO] No IPv4 NAT set (no internet interface)"
else
echo "[ERR] No IPv4 NAT set"
fi
exitcode=1
fi
if is_forwarding_set; then
2014-11-17 23:44:18 +01:00
echo "[OK] IPv6/IPv4 forwarding set"
else
2014-11-17 23:44:18 +01:00
echo "[ERR] No IPv6/IPv4 forwarding set"
exitcode=1
fi
2014-12-26 18:58:58 +01:00
if is_hostapd_running; then
echo "[OK] Hostapd is running"
else
2014-12-26 18:58:58 +01:00
echo "[ERR] Hostapd is not running"
exitcode=1
fi
2015-04-26 21:34:11 +02:00
for i in $(seq 0 $((${ynh_multissid} - 1))); do
if has_ip6delegatedprefix ${i}; then
echo "[INFO] hotspot${i}: IPv6 delegated prefix found"
echo "[INFO] hotspot${i}: IPv6 address computed from the delegated prefix: ${ynh_ip6_addr}"
2015-04-26 21:34:11 +02:00
if is_ip6addr_set ${i}; then
echo "[OK] hotspot${i}: IPv6 address set"
else
echo "[ERR] hotspot${i}: No IPv6 address set"
exitcode=1
fi
2015-07-24 23:48:24 +02:00
if is_ip6firewall_set ${i}; then
echo "[OK] hotspot${i}: IPv6 firewalling set"
else
if [ "${ynh_ip6_firewall[${i}]}" -eq 1 ]; then
echo "[ERR] hotspot${i}: No IPv6 firewalling set"
else
echo "[INFO] hotspot${i}: No IPv6 firewalling set"
fi
exitcode=1
fi
if is_dhcpd6_running ${i}; then
2015-07-24 23:48:24 +02:00
echo "[OK] hotspot${i}: NDP and DHCPv6 server (dnsmasq) are running"
2015-04-26 21:34:11 +02:00
else
2015-07-24 23:48:24 +02:00
echo "[ERR] hotspot${i}: NDP and DHCPv6 server (dnsmasq) are not running"
2015-04-26 21:34:11 +02:00
exitcode=1
fi
else
echo "[INFO] hotspot${i}: No IPv6 delegated prefix found"
2015-04-26 21:34:11 +02:00
fi
if is_dhcpd4_running ${i}; then
echo "[OK] hotspot${i}: DHCPv4 server (dnsmasq) is running"
2015-04-26 21:34:11 +02:00
else
2015-07-24 23:48:24 +02:00
echo "[ERR] hotspot${i}: DHCPv4 (dnsmasq) is not running"
2015-04-26 21:34:11 +02:00
exitcode=1
fi
2015-04-26 21:34:11 +02:00
if is_ip4nataddr_set ${i}; then
echo "[OK] hotspot${i}: IPv4 NAT address set"
2015-04-26 21:34:11 +02:00
else
echo "[ERR] hotspot${i}: No IPv4 NAT address set"
2015-04-26 21:34:11 +02:00
exitcode=1
fi
done
exit ${exitcode}
;;
*)
2014-12-28 15:38:05 +01:00
echo "Usage: $0 {start|stop|restart|status}"
exit 1
;;
esac
exit 0