Line 1... |
Line 1... |
1 |
#!/bin/bash
|
1 |
#!/bin/bash
|
2 |
# $Id: alcasar-watchdog.sh 3214 2024-07-01 17:32:18Z rexy $
|
2 |
# $Id: alcasar-watchdog.sh 3219 2024-07-05 14:54:19Z rexy $
|
3 |
|
3 |
|
4 |
# alcasar-watchdog.sh
|
4 |
# alcasar-watchdog.sh
|
5 |
# by Rexy
|
5 |
# by Rexy
|
6 |
# This script is distributed under the Gnu General Public License (GPL)
|
6 |
# This script is distributed under the Gnu General Public License (GPL)
|
7 |
# - Ce script prévient les usagers de l'indisponibilité de l'accès Internet
|
7 |
# - Ce script prévient les usagers de l'indisponibilité de l'accès Internet
|
Line 10... |
Line 10... |
10 |
#
|
10 |
#
|
11 |
# - This script tells users that Internet access is down
|
11 |
# - This script tells users that Internet access is down
|
12 |
# - It logs out users whose PCs are quiet (their status tab is closed)
|
12 |
# - It logs out users whose PCs are quiet (their status tab is closed)
|
13 |
# - It logs out users whose MAC address is used by other systems (usurped)
|
13 |
# - It logs out users whose MAC address is used by other systems (usurped)
|
14 |
|
14 |
|
15 |
export LC_ALL=C.UTF-8
|
15 |
export LC_ALL=C
|
16 |
CONF_FILE="/usr/local/etc/alcasar.conf"
|
16 |
CONF_FILE="/usr/local/etc/alcasar.conf"
|
17 |
EXTIF=`grep ^EXTIF= $CONF_FILE|cut -d"=" -f2` # EXTernal InterFace
|
17 |
EXTIF=`grep ^EXTIF= $CONF_FILE|cut -d"=" -f2` # EXTernal InterFace
|
18 |
INTIF=`grep ^INTIF= $CONF_FILE|cut -d"=" -f2` # INTernal InterFace
|
18 |
INTIF=`grep ^INTIF= $CONF_FILE|cut -d"=" -f2` # INTernal InterFace
|
19 |
private_ip_mask=`grep ^PRIVATE_IP= $CONF_FILE|cut -d"=" -f2`
|
19 |
private_ip_mask=`grep ^PRIVATE_IP= $CONF_FILE|cut -d"=" -f2`
|
20 |
private_ip_mask=${private_ip_mask:=192.168.182.1/24}
|
20 |
private_ip_mask=${private_ip_mask:=192.168.182.1/24}
|