![]() Chapter Contents |
![]() Previous |
![]() Next |
| Communications Access Methods for SAS/CONNECT and SAS/SHARE Software |
| System and Software Requirements for SAS/CONNECT and SAS/SHARE |
Ensure that the following conditions have been met:
| Setting SAS Options and Variables |
You may set specific options in SAS to establish the connections that you want with SAS/CONNECT and SAS/SHARE when using the DECnet communications access method.
You may specify an option in any of several forms, as follows:
OPTIONS SET=variable-name value
Example:
options set=sassecur _prompt_;
-SET variable-name value
Example:
-set sassecur _prompt_
%LET variable=value;
Example:
%let sassecur=_prompt_;
SET variable-name=value
Example:
set sassecur=_prompt_
Values for these options can 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, the order of precedence follows:
| SAS macro variable | |
| OPTIONS statement | |
| AUTOEXEC file | |
| SAS invocation | |
| SAS configuration file | |
| DOS environment variable. |
![[cautend]](../common/images/cautend.gif)
You must set the SASSECUR option in order to pass a remote host user name and password to a SAS/SHARE server for verification. After the user name and password have been verified, the connection to the SAS/SHARE server can proceed. Values for SASSECUR are
| SASSECUR _NONE_ | _PROMPT_ | username.password | _SECURE_ |
Setting _NONE_ does not establish secure sessions for connecting SAS/SHARE clients.
_PROMPT_ specifies that SAS prompt the user for user name and password information. When prompted for a password, the input field is not displayed. Choosing to prompt for user name and password provides more security than assigning the user name and the password to the system option.
This value specifies both the user name and the password. Assigning the user name 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 a valid user name 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:
%let SASSECUR=_NONE_; %let SASSECUR=_PROMPT_; %let SASSECUR=bass.timego; %let 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.