% cntspawn -service unxspawn -netencryptalgorithm ssl -sslcertloc /users/server/certificates/server.pem -sslpvtkeyloc /users/server/certificates/serverkey.pem -sslpvtkeypass starbuck1 -sslcalistloc /users/server/certificates/sas.pem -sascmd /users/server/command.ksh
SAS Commands and Arguments
|
Function
|
---|---|
CNTSPAWN
|
Starts the spawner
|
-SERVICE unxspawn
|
Specifies the spawner
service (configured in the services file)
|
-NETENCRYPTALGORITM SSL
|
Specifies the SSL encryption algorithm
|
-SSLCERTLOC /users/server/certificates/server.pem
|
Specifies the file path
for the location of the server's public certificate
|
-SSLPVTKEYLOC /users/server/certificates/serverkey.pem
|
Specifies the file path for the location of the server's private key
|
-SSLPVTKEYPASS password
|
Specifies the password to access the server's private key if the private key is encrypted
with a password
|
-SSLCALISTLOC /users/server/certificates/sas.pem
|
Specifies the CA trust list
Note: Starting in the third maintenance
release of SAS, this option might not be needed if you are managing
certificates using the SDM.
|
-SASCMD /users/server/command.ksh
|
Specifies the name of
an executable file that starts a SAS session when you sign on without
a script file
|
#!/bin/ksh #---------------------------------- # mystartup #---------------------------------- . ~/.profile sas -noterminal -sslcertloc /users/server/certificates/server.pem -sslpvtkeyloc /users/server/certificates/serverkey.pem $* #------------------------------
options netencryptalgorithm=ssl; options sslcalistloc="/users/johndoe/certificates/sas.pem"; %let machine=unxspawn; signon machine.spawner user=_prompt_;The following table explains the SAS options that are used to connect to a SAS/CONNECT server.
SAS Options, Statements,
and Arguments
|
Client Access Tasks
|
---|---|
NETENCRYPTALGORITHM=SSL
|
Specifies the encryption algorithm
|
SSLCALISTLOC=sas.pem
|
Specifies the CA trust list
|
SIGNON=unxspawn
|
Specifies the server
and service to connect to
|
USER=_PROMPT_
|
Prompts for the user
ID and password to be used for authenticating the client to the server
|