blob: a38e1c55433b05739cefe351ba326d0cfceac858 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh
. /etc/naskpass.conf
if [ "x${OLDPRINTK}" != "x" ] && [ -r ${OLDPRINTK} ] && [ -w ${PRINTK} ]; then
cat ${OLDPRINTK} >${PRINTK}
fi
kill $(pidof sshd)
for interface in $(ifconfig | grep -oE '^[a-zA-Z0-9]+\s+'); do
echo "disable ${interface}"
ifconfig ${interface} 0.0.0.0
ifconfig ${interface} down
done
|