
# subroutine for TURBO_KEEPUP 
# (re)connection script for Belgacom Turboline ADSL
# Author Frederik Questier http://vub.vub.ac.be/~fquestie
# Thanks to Alain.Nissen@ulg.ac.be, the author of turbo_telnet
# Thanks to David Noble, the author of telnet.pl and sock.pl
# No Thanks to Turboline for the many disconnections.

USERNAME="yourname"
PASSWORD="yourpass"
AUTH_URL="http://195.13.28.1/dana" # Login URL on DANA
COMMAND="SETUP_CALL"               # New setups only???
CALL="EASYNET"                     # Your provider string

lynx -dump $AUTH_URL -post_data  <<EOF
USERNAME=$USERNAME&CALL=$CALL&PASSW=$PASSWORD&COMMAND=$COMMAND
---
EOF

