Chapter Contents |
Previous |
Next |
Communications Access Methods for SAS/CONNECT and SAS/SHARE Software |
You may need to set specific options to establish the connections that you want with SAS/CONNECT and SAS/SHARE when using the SPX communications access method.
Consult with your network administrator to determine what options must be set and what values to assign to them.
You may specify an option in any of the following forms:
OPTIONS SET=variable-name value;
Example:
options set=spxmsgsize 500;
-SET variable-name value
Example:
-set spxmsgsize 500
%LET variable-name=value;
Example:
%let spxmsgsize=500;
SET variable-name=value
Example:
set spxmsgsize=500
Values for these options may contain up to eight characters, consisting of alphanumeric characters, the percent sign (%), the dollar sign ($), the pound sign (#), the at sign (@), and the underscore (_).
If you set multiple forms of the same option, here is the order of precedence that is followed:
SAS macro variable | |
OPTIONS statement | |
AUTOEXEC file | |
SAS invocation | |
SAS configuration file | |
DOS environment variable. |
SAS/CONNECT and SAS/SHARE Option |
Example:
-set spxmsgsize 500
Ask your network administrator for advice about setting this option.
SAS/CONNECT SASUSER and SASPASS Options |
SASUSER userid |
SASPASS password |
On the local host when the remote host is secure, you must either assign a valid userid and a password to the SASUSER and SASPASS options or supply them to SAS, when prompted.
Consult with the system administrator of the remote host at which the spawner is invoked for a valid userid and a password.
The SASUSER and SASPASS options store the userid and the password of the remote host that, when passed to the remote host, allows a local host connection.
Example:
options set=sasuser bass; options set=saspass time2go;
See Setting SAS Options and Variables for examples of the forms that you can use to specify SASUSER and SASPASS.
Also see PC Spawner Program for information about the -PROTECTION and -SECURITY options in the PC spawner program, which controls the security of the remote host.
SAS/SHARE SASSECUR Option |
You may set the SASSECUR option to provide security for the SAS/SHARE server, allowing access to local hosts or clients whose userids and passwords have been verified.
Values that you set at a SAS/SHARE client follow:
SASSECUR=_NONE_ | _PROMPT_ | userid.password | _SECURE_ |
Setting this value does not establish secure sessions for connecting SAS/SHARE clients.
This is the default.
_PROMPT_ specifies that SAS prompt the user for userid and password information. When prompted for a password, the input field is not displayed. Choosing to prompt for a userid and a password provides more security than assigning the userid and the password to the system option.
This value specifies both the userid and password. Assigning both the userid and password directly to the SASSECUR option at the SAS/SHARE client may inadvertently publicize this information and compromise the security of the SAS/SHARE server. Assigning the value to the option in a file allows anyone to read it.
The _SECURE_ value for the SASSECUR option requires a SAS/SHARE client to supply both a valid userid and password to the remote host or the remote host on which the server is running in order to allow client access to the server.
Specify the SASSECUR option before you create a server.
Examples:
options set=sassecur _none_; options set=sassecur _prompt_; options set=sassecur bass.time2go; options set=sassecur _secure;
See Setting SAS Options and Variables for examples of the forms that you can use to specify the SASSECUR option.
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.