Skip Navigation Links | |
Exit Print View | |
Managing Serial Networks Using UUCP and PPP in Oracle Solaris 11.1 Oracle Solaris 11.1 Information Library |
2. Planning for the PPP Link (Tasks)
3. Setting Up a Dial-up PPP Link (Tasks)
Major Tasks for Setting Up the Dial-up PPP Link (Task Map)
Configuring the Dial-out Machine
Tasks for Configuring the Dial-out Machine (Task Map)
Configuring Devices on the Dial-out Machine
How to Configure the Modem and Serial Port (Dial-out Machine)
Configuring Communications on the Dial-out Machine
How to Define Communications Over the Serial Line
Configuring the Dial-in Server
Tasks for Configuring the Dial-in Server (Task Map)
Configuring Devices on the Dial-in Server
How to Configure the Modem and Serial Port (Dial-in Server)
Setting Up Users of the Dial-in Server
How to Configure Users of the Dial-in Server
Configuring Communications Over the Dial-in Server
How to Define Communications Over the Serial Line (Dial-in Server)
How to Call the Dial-in Server
4. Setting Up a Leased-Line PPP Link (Tasks)
5. Setting Up PPP Authentication (Tasks)
6. Setting Up a PPPoE Tunnel (Tasks)
7. Fixing Common PPP Problems (Tasks)
8. Solaris PPP 4.0 (Reference)
9. Migrating From Asynchronous Solaris PPP to Solaris PPP 4.0 (Tasks)
The tasks in this section explain how to configure a dial-out machine. The tasks use as an example the dial- in-from-home scenario that was introduced in Figure 2-1. You can perform the tasks at your company before passing on the machine to a prospective user. Alternatively, you can instruct experienced users in the setup of their home machines. Anyone setting up a dial-out machine must have root permission for that machine.
Table 3-2 Task Map for Setting Up the Dial-out Machine
|
Solaris PPP 4.0 provides template files. Each template contains common options for a particular PPP configuration file. The next table lists the sample templates that can be used for setting up a dial-up link, and their equivalent Solaris PPP 4.0 files.
|
If you decide to use one of the template files, be sure to rename the template to its equivalent PPP configuration file. The one exception is the chat file template /etc/ppp/myisp-chat.tmpl. You can choose any name for your chat script.
The first task for setting up a dial-out PPP machine is to configure the devices on the serial line: the modem and serial port.
Note - Tasks that apply to a modem usually apply to an ISDN TA.
Before performing the next procedure, you must have done the following.
Installed the Oracle Solaris release on the dial-out machine
Determined the optimum modem speed
Decided which serial port to use on the dial-out machine
Obtained the root password for the dial-out machine
For planning information, see Before You Set Up the Dial-out Machine.
Even though a variety of modem types is available, most modems are shipped with the correct settings for Solaris PPP 4.0. The following list shows the basic parameter settings for modems that use Solaris PPP 4.0.
DCD – Follow carrier instructions
DTR – Set low so that the modem hangs up and puts the modem on-hook
Flow Control – Set to RTS/CTS for full-duplex hardware flow control
Attention Sequences – Disable
If you have problems setting up the link and suspect that the modem is at fault, first consult the modem manufacturer's documentation. Also, a number of web sites offer help with modem programming. Finally, you can find some suggestions for clearing modem problems in How to Diagnose Modem Problems.
For more information, see How to Use Your Assigned Administrative Rights in Oracle Solaris 11.1 Administration: Security Services.
The procedures in this section show how to configure communications over the serial line of the dial-out machine. Before you can use these procedures, you must have configured the modem and serial port, as described in How to Configure the Modem and Serial Port (Dial-out Machine).
The next tasks show how to enable the dial-out machine to successfully initiate communications with the dial-in server. Communications are initiated as defined in the options in the PPP configuration files. You need to create the following files:
/etc/ppp/options
/etc/ppp/options.ttyname
Chat script
/etc/ppp/peers/peer-name
Solaris PPP 4.0 provides templates for the PPP configuration files, which you can customize to accommodate your needs. Refer to Dial-up PPP Template Files for detailed information about these files.
For more information, see How to Use Your Assigned Administrative Rights in Oracle Solaris 11.1 Administration: Security Services.
lock
The /etc/ppp/options file is used for defining global parameters that apply to all communications by the local machine. The lock option enables UUCP-style locking of the form /var/spool/locks/LK.xxx.yyy.zzz.
Note - If the dial-out machine does not have an /etc/ppp/options file, only the superuser can run the pppd command. However, the /etc/ppp/options can be empty.
For a complete description of /etc/ppp/options, refer to /etc/ppp/options Configuration File.
The next example shows an /etc/ppp/options.ttyname file for the port with the device name /dev/cua/a.
# cat /etc/ppp/options.cua.a crtscts
The PPP option crtscts tells the pppd daemon to turn on hardware flow control for serial port a.
For more information about the /etc/ppp/options.ttyname file, go to /etc/ppp/options.ttyname Configuration File.
Before the dial-out machine can initiate a PPP link, you must collect information about the dial-in server that is to become the peer. Then, you use this information to create the chat script, which describes the actual conversation between the dial-out machine and the peer.
For more information, see Configuring Modem Speed for a Dial-up Link.
Server's telephone number
Authentication protocol that is used, if appropriate
Login sequence that is required by the peer for the chat script
For example, you might create the following chat script, /etc/ppp/mychat, to call the dial-in server myserver.
SAY "Calling the peer\n" TIMEOUT 10 ABORT BUSY ABORT 'NO CARRIER' ABORT ERROR REPORT CONNECT "" AT&F1&M5S2=255 TIMEOUT 60 OK ATDT1-123-555-1234 CONNECT \c SAY "Connected; logging in.\n" TIMEOUT 5 ogin:--ogin: pppuser TIMEOUT 20 ABORT 'ogin incorrect' ssword: \qmypassword "% " \c SAY "Logged in. Starting PPP on peer system.\n" ABORT 'not found' "" "exec pppd" ~ \c
The script contains instructions for calling a Oracle Solaris dial-in server that requires a login sequence. For a description of each instruction, refer to Basic Chat Script Enhanced for a UNIX-Style Login. For complete details about creating a chat script, read the section Defining the Conversation on the Dial-up Link.
Note - You do not invoke the chat script directly. Rather, you use the file name of the chat script as an argument to the chat command, which invokes the script.
If a peer runs Oracle Solaris or a similar operating system, consider using the previous chat script as a template for your dial-out machines.
For more information, see How to Use Your Assigned Administrative Rights in Oracle Solaris 11.1 Administration: Security Services.
# svccfg svc:> select network/dns/client svc:/network/dns/client> setprop config/domain = astring: "bigcompany.com" svc:/network/dns/client> setprop config/nameserver = net_address: "10.10.111.15" svc:/network/dns/client> addpropval config/nameserver "10.10.130.8" svc:/network/dns/client> select network/dns/client:default svc:/network/dns/client:default > refresh svc:/network/dns/client:default > validate svc:/network/dns/client:default > select system/name-service/switch svc:/system/name-service/switch > setprop config/host = astring: "files dns" svc:/system/name-service/switch:default > select system/name-service/switch:default svc:/system/name-service/switch:default > refresh svc:/system/name-service/switch:default > validate # svcadm enable network/dns/client # svcadm refresh system/name-service/switch
For example, you would create the following file to define the dial-in server myserver:
# cat /etc/ppp/peers/myserver /dev/cua/a 57600 noipdefault defaultroute idle 120 noauth connect "chat -U 'mypassword' -T 1-123-555-1213 -f /etc/ppp/mychat"
Specifies that the device /dev/cua/a should be used as the serial interface for calls to myserver.
Defines the speed of the link.
Specifies that for transactions with peer myserver, the dial-out machine initially has an IP address of 0.0.0.0. myserver assigns an IP address to the dial-out machine for every dial-up session.
Indicates that the link must time out after an idle period of 120 seconds.
Specifies that the peer myserver does not need to provide authentication credentials when negotiating the connection with the dial-out machine.
Specifies the connect option and its arguments, including the phone number of the peer, and the chat script /etc/ppp/mychat with calling instructions.
See Also
The following list provides references to related information.
To configure another dial-out machine, see How to Configure the Modem and Serial Port (Dial-out Machine).
To test modem connectivity by dialing out to another computer, see cu(1C) and tip(1) man pages. These utilities can help you test if your modem is properly configured. Also, use these utilities to test if you can establish a connection with another machine.
To learn more about the configuration files and options, see Using PPP Options in Files and on the Command Line.
To configure a dial-in server, see Configuring Devices on the Dial-in Server.