Здравствуйте! Хочу организовать выход из сети в интернет через модем. Скачал и установил пакет diald-1.0-1.i386.rpm. Создал файл /etc/diald.conf , /etc/diald/connect, /etc/diald/standard.filter, /etc/diald/fifo.ctl. Запускаю diald и в /var/log/messages читаю следующие строки ------------------------------------------------------------ Oct 30 21:32:58 server diald[4234]: parse string: 'udp tcp.source=udp.route' Oct 30 21:32:58 server diald[4235]: Creating FIFO Oct 30 21:32:58 server diald[4235]: SLIP not supported by kernel, can't build proxy. Oct 30 21:32:58 server diald[4235]: Unable to get a proxy interface. Manual control only. Oct 30 21:32:58 server diald[4235]: FIFO closed ----------------------------------------------------------- И все. Загрузка процессора (Sempron 2500) 85-90%. Работать не хочет. Т.е. в браузере набираю www.че нибудь.ru и никакой реакции, модем не хочет соединяться с провайдером. В log и messages файлы после этого ничего не пишется.
Подскажете как установить и настроить diald на Fedora Core 3!
Приложение: ------------------------------------------- содержание файла diald.conf ------------------------------------------- mode ppp accounting-log /var/log/diald.log fifo /etc/diald/diald.ctl connect /etc/diald/connect device /dev/ttyS1 speed 115200 modem lock crtscts local 192.168.24.1 remote 192.168.24.99 dynamic defaultroute dial-fail-limit 10 redial-timeout 5 connect-timeout 120 include /etc/diald/standard.filter
------------------------------------------- Содержание файла connect ------------------------------------------- #!/bin/sh INIT="ATZ" PHONE="379009" ACCOUNT="777" PASSWORD="777"
function message () { [ $FIFO ] && echo "message $*" >$FIFO logger -p local2.info -t connect "$*" }
# Initialize the modem. Usually this just resets it. message "Initializing Modem" chat TIMEOUT 5 "" $INIT TIMEOUT 5 OK "" if [ $? != 0 ]; then message "Failed to initialize modem" exit 1 fi
# Dial the remote system. message "Dialing system" chat \ ABORT "NO CARRIER" \ ABORT BUSY \ ABORT "NO DIALTONE" \ ABORT ERROR \ "" ATDT$PHONE \ CONNECT "" case $? in 0) message Connected;; 1) message "Chat Error"; exit 1;; 2) message "Chat Script Error"; exit 1;; 3) message "Chat Timeout"; exit 1;; 4) message "No Carrier"; exit 1;; 5) message "Busy"; exit 1;; 6) message "No DialTone"; exit 1;; 7) message "Modem Error"; exit 1;; *) esac # We're connected try to log in. message "Loggin in" chat \ login: $ACCOUNT \ password: $PASSWORD TIMEOUT 5 "" if [ $? != 0 ]; then message "Failed to log in" exit 1 fi message "Protocol started"