Try this form.
Setting up PPP on Linux
Summary:
This document will show how to set up a dial in connection using PPP.
Steps to resolve:
· Install latest PPP rpm.
· Install libgr-progs rpm.
· Install latest mgetty rpm.
Server Setup:
· Step 1: add the following lines to the bottom of /etc/inittab for each modem:
Ex:
#For Modem
S1 :2345 :respawn:/sbin/mgetty -D ttyS1
#end of modem
· Step 2: Edit the /etc/mgetty+sendfax/login.config file. Uncomment the Autoppp line, this will enable it.
It looks like this:
/AutoPPP/ - a_ppp /usr/sbin/pppd auth -chap +pap login debug
· Step 3: Now edit /etc/ppp/pap-secrets, type the information under each of the following, they are like headers, it looks like this:
# Secrets for authentication using PAP
# client server secret acceptable local IP addresses
{$client_name} * {$password} *
Definitions:
Client = the account you will be logging in with.
Server = the name of the computer that does the authentication, for us this isn’t
Important, use a * this indicates “any.”
Secret = the password for the account.
Acceptable IP = this is the IP required for connection to be made.
· Step 4: edit /etc/ppp/options:
Example:
lock
-detach
modem
crtscts
proxyarp
asyncmap 0
defaultroute /dev/ttyS”X” (specify which COM port you are using).
netmask 255.0.0.0 (use the appropriate netmask)
· Step 5: create in the /etc/ppp directory a file called options.ttyS”x”. In this, place the following information:
IpofServer:IpofClient
· NOTE: When you set up your dial up connection, in the network settings, use the IP address that was just put in as the “IpofClient.”
Client Setup:
· Step 1: Using MS Dial Up Networking, create a new connection.
· Step 2: Use appropriate phone number. Enter through remaining screens, with appropriate answers.
· Step 3: At the “connect” screen, put in the user name and password that were used in step 3 of the Server Setup.
· Step 4: Select Properties.
· Step 5: Select Networking tab.
· Step 6: Select the Internet Component (TCP/IP), and choose properties.
· Step 7: Select Obtain an IP address automatically. Press O.K. until you are back at the “connect” screen. It is now ready to dial.
If you have questions let me know.