LINUX Setup Walkthrough
We do not actively support technical support the Linux OS. This document is meant as a guide to getting on the internet using Linux only. All our numbers should work with Linux if you have configured your computer appropiately.
PPP under Linux guideOverview: This document guide assumes a few things:
The process of setting up PPP under linux, while somewhat hard to find out about, isn't all that hard to actually do. It consists of setting up the dialer, setting up the pap-secrets, and chap-secrets file, and the modem. 1. Setting up passwordsPPP requires authentication to build a connection. This is done via your username and password. (Replace username with your real username, and password with your actual password.) Place the following into /etc/ppp/pap-secrets:
The switching on the second line is to properly handle reverse authentications from the dialup equipment back to the local computer. 2. Set up the chat dialerThe "chat" dialer is used by ppp to dial up to the pop, and handle the modem handshake portion of the connection. Create the file /etc/ppp/chatscript, and put the following into it, remembering to replace PHONENUMBER with the actual phone number of the pop:
3. Set up the options file for PPPPut these commands into /etc/ppp/options:
4. Set up a connect script for PPPThis can be done by simply creating a file in /usr/sbin/ called "ppp-on" and put this in it:
5. Give it a try by running "/usr/sbin/ppp-on" |