pptp接続が切断されてしまうと電話ができなくなる
そのために自動復帰機能が必要
vi /usr/local/bin/pptp.sh
#!/bin/sh
if [ `ps -ef | awk ‘{print $1,$2,$8}’ | grep pptp | wc -l` -lt 2 ]; then
/etc/ppp/stoppptp.sh
sleep 10
/etc/ppp/startpptp.sh
fi
chmod +x /usr/local/bin/pptp.sh
crontab -e
# m h dom mon dow command
PATH=/usr/sbin:/usr/bin:/sbin:/bin:/usr/loca/bin
MAILTO=””
*/5 * * * * /usr/local/bin/pptp.sh
コメント