Модемы серии BRU C производителя D-Link не всегда подымают сессию pppOE в режиме роутера. Решено перезагружать мопед раз в сутки в наименьшие часы нагрузки. Собственно скриптик :
[Alexander@samba /usr/script/]# cat dlink
#!/usr/local/bin/expect -f spawn telnet 192.168.1.1 expect "Login:" send "admin\r" expect "Password:" send "admin\r" expect ">" send "reboot\r" expect eof. |
[Alexander@samba /etc]# cat crontab |grep dlink
0 6 * * * root /usr/script/dlink |