scripting for wvdial for dial-up


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting scripting for wvdial for dial-up
# 1  
Old 11-08-2008
Tools scripting for wvdial for dial-up

Smilieis there a way to script wvdail to save in a file the speed of the dailup and the time
spent online, to be looked at later to compare what ISP's says?????
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

VPN (vpnc) is not working combined with PPP (using wvdial (modem 3G))

Hi all, it's my first post here. I hope to find someone to help me, I've got a tweaky problem. I've got a Netbook (Linpus) and a Notebook (Ubuntu), they connect fine on any hotspot with a wifi card. I've configured my VPN, thanks to vpnc. It runs well through my wifi connexion. I managed to... (1 Reply)
Discussion started by: pdemong
1 Replies

2. Linux

Dial-up Networking

I use Red-Hat 8.0, with Gnome, and I have a dial-up internet connection. My phone-line however is zero-dial. At first I have to dial 0 to get the dial tone, and later the number of my service provider.How do I change my settings to accomodate this ? I tried prefixing the number with 0 and 0, and... (0 Replies)
Discussion started by: sundaresh
0 Replies

3. UNIX for Advanced & Expert Users

dial-up internet

Hi, I want to know working of dial-up internet on the PC. Please tell me how internet connection and ip address assigning happened. I know all this procedure in the broadband internet. But I confused for the 'dial-up' and 'internet in mobile'. I am eagarly wait for... (6 Replies)
Discussion started by: jagdish.machhi@
6 Replies

4. UNIX for Dummies Questions & Answers

Unix + Dial-up = ???

I was wondering if anyone can tell me if i can run Unix to the internet? (1 Reply)
Discussion started by: slade
1 Replies

5. UNIX for Dummies Questions & Answers

Unix Dial up user!

Does anyone knows how to disconnect specific dial up user from SSH? :cool: (0 Replies)
Discussion started by: dmitryseliv
0 Replies

6. SCO

Dial-Out & Dial-In Connections in OpenServer 5.0.6.

Friends, I am facing a problem in connecting two SCO Openserver 5.0.6 servers through Dial-Up connectivity as is done in the case of two Windows PCs. Please help me out with the following problems: (a) How to configure the modem? (b) How to setup a Dial-In connection? (c) How to... (1 Reply)
Discussion started by: thecobolguy
1 Replies

7. UNIX for Dummies Questions & Answers

Dial-Up Modem

Im using Kinternet with a Lucent modem on Suse 9.0 Ive installed the ltmodem driver and suse says the device is ready and configured. Ive configured it at /dev/ttyS0 This is the log that Kinternet gives after trying to connect: SuSE Meta pppd (smpppd-ifcfg), Version 1.06 on linux. Status... (0 Replies)
Discussion started by: Synbios
0 Replies

8. UNIX for Dummies Questions & Answers

Dial-up connection

Hi all. I am running a C++ program on UNIX which needs days to finish but my dial-up connection disconnects after 4 hours. Is there any way for the program to keep running until it finishes after I log out? (5 Replies)
Discussion started by: vegas503
5 Replies

9. IP Networking

Dial Up in FreeBSD 4.10

Hi, I just came to visit my folks and they dont have a wireless network setup in the house, so I have to connect to the net using my dial up modem. Unfortunately my windows seems to be quite buggy lately (...assuming it ever worked flalessly), so I was just wondering if anyone could tell me how... (0 Replies)
Discussion started by: PenguinDevil
0 Replies

10. UNIX for Dummies Questions & Answers

Dial Up Server on RH 7.1

Hello, I'd like to know if it is possible to set up a Dial Up server on a Red Hat 7.1 Instalation so that friends/colleagues can dial into my computer and log in (eg. SLIP/PPP)? Or if i'd have to download any other software with which to do this. And if so, where would I find something good... (2 Replies)
Discussion started by: KrazyGuyPaul
2 Replies
Login or Register to Ask a Question
WVDIAL(1)						      General Commands Manual							 WVDIAL(1)

NAME
wvdial - PPP dialer with built-in intelligence. SYNOPSIS
wvdial [ OPTIONS ] [ SECTION ] ... DESCRIPTION
wvdial is an intelligent PPP dialer, which means that it dials a modem and starts PPP in order to connect to the Internet. It is something like the chat(8) program, except that it uses heuristics to guess how to dial and log into your server rather than forcing you to write a login script. When wvdial starts, it first loads its configuration from /etc/wvdial.conf and ~/.wvdialrc which contains basic information about the modem port, speed, and init string, along with information about your Internet Service Provider (ISP), such as the phone number, your username, and your password. Then it initializes your modem and dials the server and waits for a connection (a CONNECT string from the modem). It understands and responds to typical connection problems (like BUSY and NO DIALTONE). Any time after connecting, wvdial will start PPP if it sees a PPP sequence from the server. Otherwise, it tries to convince the server to start PPP by doing the following: o responding to any login/password prompts it sees; o interpreting "choose one of the following"-style menus; o eventually, sending the word "ppp" (a common terminal server command). If all of this fails, wvdial just runs pppd(8) and hopes for the best. It will bring up the connection, and then wait patiently for you to drop the link by pressing CTRL-C. OPTIONS
Several options are recognized by wvdial. -c, --chat Run wvdial as a chat replacement from within pppd, instead of the more normal method of having wvdial negotiate the connection and then call pppd. -C, --config=CONFIGFILE Run wvdial with CONFIGFILE as the configuration file, instead of /etc/wvdial.conf. This is mainly useful only if you want to have per-user configurations, or you want to avoid having dial-up information (usernames, passwords, calling card numbers, etc.) in a system wide configuration file. -n, --no-syslog Don't output debug information to the syslog daemon (only useful together with --chat). wvdial is normally run without command line options, in which case it reads its configuration from the [Dialer Defaults] section of /etc/wvdial.conf. (The configuration file is described in more detail in wvdial.conf(5) manual page.) One or more SECTIONs of /etc/wvdial.conf may be specified on the command line. Settings in these sections will override settings in [Dialer Defaults]. For example, the command: wvdial phone2 will read default options from the [Dialer Defaults] section, then override any or all of the options with those found in the [Dialer phone2] section. If more than one section is specified, they are processed in the order they are given. Each section will override all the sections that came before it. For example, the command: wvdial phone2 pulse shh will read default options from the [Dialer Defaults] section, then override any or all of the options with those found in the [Dialer phone2] section, followed by the [Dialer pulse] section, and lastly the [Dialer shh] section. Using this method, it is possible to easily configure wvdial to switch between different internet providers, modem init strings, account names, and so on without specifying the same configuration information over and over. BUGS
"Intelligent" programs are frustrating when they don't work right. This version of wvdial has only minimal support for disabling or over- riding its "intelligence", with the "Stupid Mode", "Login Prompt", and "Password Prompt" options. So, in general if you have a nice ISP, it will probably work, and if you have a weird ISP, it might not. Still, it's not much good if it doesn't work for you, right? Don't be fooled by the fact that wvdial finally made it to version 1.00; it could well contain many bugs and misfeatures. Let us know if you have problems by sending e-mail to <wvdial-list@lists.nit.ca>. You may encounter some error messages if you don't have write access to /etc/ppp/pap-secrets and /etc/ppp/chap-secrets. Unfortunately, there's really no nice way around this yet. FILES
/etc/wvdial.conf Configuration file which contains modem, dialing, and login information. See wvdial.conf(5). /dev/ttyS* Serial port devices. /etc/ppp/peers/wvdial Required for correct authentication in pppd version 2.3.0 or newer. /etc/ppp/{pap,chap}-secrets Contains a list of usernames and passwords used by pppd for authentication. wvdial maintains this list automatically. AUTHORS
Dave Coombs and Avery Pennarun for Net Integration Technologies. We would also like to thank SuSE and RedHat for adding a number of vari- ous cool features to wvdial. Thanks guys! SEE ALSO
wvdial.conf(5), wvdialconf(1), pppd(8), chat(8). WvDial December 2005 WVDIAL(1)