SSH channels
The available SSH channel types and their functionalities are described below.
auth-agent |
None |
Agent: Forwards the SSH authentication agent from the client to the server. |
x11 |
Yes |
X11 Forward: Forwards the graphical X-server session from the server to the client. List the address of the client in the networks field to permit X11-forwarding only to the specified clients. Specify IP addresses or networks (in IP address/Prefix format). For example: "networks": [
{
"selection": "address",
"value": "192.168.1.1"
},
{
"selection": "address",
"value": "192.168.1.2"
}
| NOTE: Certain client applications send the Target address as a hostname, while others as an IP address. If you are using a mix of different client applications, you might have to duplicate the channel rules and create IP-address and hostname versions of the same rule. |
Channel-specific access control rules: networks (list): To X11-forwarding only to specific clients, list the IP addresses or networks of the clients in this field. Leave it empty to permit access to every client. For details, see Limiting addresses in port forwarding.
|
local-forwards |
Yes |
Local Forward: Forwards traffic arriving to a local port of the client to a remote host. To enable forwarding only between selected hosts, use the local_forwards field. If the local_forwards field is empty, local forwarding is enabled without restriction, the client may forward any traffic to the remote host.
For example: "local_forwards": [
{
"host_address": {
"selection": "address",
"value": "192.168.100.1"
},
"host_port": 5555,
"originator_address": {
"selection": "address",
"value": "192.168.1.1"
}
}
Channel-specific access control rules: local_forwards (list): To permit local forwarding only to specific addresses, list the addresses in this field. Leave it empty to enable without restriction. In this case the client may forward any traffic to the remote host. Enter the source of the forwarded traffic into the originator_address field, the target of the traffic into the host_address field. Specify IP addresses or networks (in IP address/Prefix format). These parameters are the end-points of the forwarded traffic (that is, the local host that sends data to the remote host), and not the SSH server or the client. For example, to enable forwarding from the 192.168.20.20 host to the remote host 192.168.50.50, enter 192.168.20.20 into the originator_address, and 192.168.50.50 into the host_address field. For details, see Limiting addresses in port forwarding.
|
remote-forwards |
Yes |
Remote Forward: Forwards traffic arriving a remote port of the server to the client. To enable forwarding only between selected hosts, enter their IP addresses into the remote_forwards field. If the remote_forwards field is empty, remote forwarding is enabled without restriction, the SSH server may forward any traffic to the client.
For example: "remote_forwards": [
{
"connected_address": {
"selection": "address",
"value": "192.168.100.1"
},
"connected_port": 5555,
"originator_address": {
"selection": "address",
"value": "192.168.1.1"
}
}
Channel-specific access control rules: remote_forwards (list): To permit only specific forwardins, list the permitted addresses in this field. Leave it empty to permit forwarding without restrictions. Enter the source of the forwarded traffic into the originator_address, the target of the traffic into the connected_address field. Specify IP addresses or networks (in IP address/Prefix format). These parameters are the end-points of the forwarded traffic (that is, the remote host that sends data to the client), and not the SSH server. For example, to enable forwarding from the 192.168.20.20 remote host to the client 192.168.50.50, enter 192.168.20.20 into the originator_address, and 192.168.50.50 into the connected_address field. For details, see Limiting addresses in port forwarding.
|
session-exec |
Yes |
Session Exec: Execute a remote command (for example rsync) without opening a session shell. List the permitted command in the execs field. You can use regular expressions to specify the commands. This field can contain only letters (a-z, A-Z), numbers (0-9), and the following special characters ({}()*?\\|[]).
|
Caution:
Restricting the commands available in Session Exec channels does not guarantee that no other commands can be executed. Commands can be renamed, or executed from shell scripts to circumvent such restrictions. |
Channel-specific access control rules:
For example: "execs": [
"top",
"ls"
|
session-exec-scp |
Yes |
Session Exec SCP: Transfers files using the Secure Copy (SCP) protocol.
Channel-specific actions:
-
log_transfer_to_db (list): (true|false): Make the list of file operations available in the Search > File operations column of the SPS web interface
-
log_transfer_to_syslog (list): (true|false): Send the file operations into the system log
For example: "actions": {
"audit": false,
"four_eyes": false,
"ids": false,
"log_transfer_to_db": true,
"log_transfer_to_syslog": true
} |
session-subsystem |
Yes |
Session Subsystem: Use a subsystem. Enter the name of the permitted subsystem into the subsystems field.
Channel-specific access control rules:
For example: "execs": [
"top",
"ls"
|
session-exec-sftp |
Yes |
Session SFTP: Transfers files using the Secure File Transfer Protocol (SFTP).
Channel-specific actions:
-
log_transfer_to_db (list): (true|false): Make the list of file operations available in the Search > File operations column of the SPS web interface
-
log_transfer_to_syslog (list): (true|false): Send the file operations into the system log
For example: "actions": {
"audit": false,
"four_eyes": false,
"ids": false,
"log_transfer_to_db": true,
"log_transfer_to_syslog": true
} |
session-shell |
Yes |
Session Shell: The traditional remote terminal session.
Channel-specific actions:
For example: "actions": {
"audit": true,
"content_policy": {
"key": "433849548566ab327522e6"
},
"four_eyes": false,
"ids": false
} |
Limiting addresses in port forwarding
The connected_address, host_address, network, and originator_address options that you can use in SSH channel policies that allow port-forwarding and X11 forwarding have the following parameters.
connected_address, host_address, network, or originator_address |
|
list of JSON objects |
Container objects for limiting access to port-forwarding in SSH channel policies. For details, see SSH channels. |
|
selection |
address or network |
Specifies the type of the address. Possible values: address or network |
|
value |
IPv4 address or network |
The IP address, or the network in IP-address:prefix format. For example, 192.168.1.1 or 192.168.0.0/16 |
SSH authentication policies
Lists the configured authentication methods that can be used in a connection. Each connection policy uses an authentication policy to determine how the client can authenticate to the target server. Separate authentication methods can be used on the client and the server-side of the connection.
URL
GET https://<IP-address-of-SPS>/api/configuration/ssh/authentication_policies
Cookies
session_id |
Contains the authentication token of the user |
Required |
The value of the session ID cookie received from the REST server in the authentication response, for example, a1f71d030e657634730b9e887cb59a5e56162860. For details on authentication, see Authenticate to the SPS REST API.
Note that this session ID refers to the connection between the REST client and the SPS REST API. It is not related to the sessions that SPS records (and which also have a session ID, but in a different format). |
Sample request
The following command lists SSH authentication policies.
curl --cookie cookies https://<IP-address-of-SPS>/api/configuration/ssh/authentication_policies
The following command retrieves the properties of a specific policy.
curl --cookie cookies https://<IP-address-of-SPS>/api/configuration/ssh/authentication_policies<object-id>
Response
The following is a sample response received when listing SSH authentication policies.
For details of the meta object, see Message format.
{
"items": [
{
"key": "-200",
"meta": {
"href": "/api/configuration/ssh/authentication_policies/-200"
}
},
{
"key": "1895203635707e3340262f",
"meta": {
"href": "/api/configuration/ssh/authentication_policies/1895203635707e3340262f"
}
}
],
"meta": {
"first": "/api/configuration/ssh/authentication_policies",
"href": "/api/configuration/ssh/authentication_policies",
"last": "/api/configuration/ssh/settings_policies",
"next": "/api/configuration/ssh/channel_policies",
"parent": "/api/configuration/ssh",
"previous": null,
"transaction": "/api/transaction"
}
}
When retrieving the endpoint of a specific policy, the response is the following.
{
"body": {
"mode": {
"gateway_authentication": {
"selection": "none"
},
"gssapi": false,
"relayed_methods": {
"certificate": {
"selection": "disabled"
},
"keyboard_interactive": true,
"password": true,
"public_key": {
"selection": "disabled"
}
}
},
"name": "base"
},
"key": "-200",
"meta": {
"first": "/api/configuration/ssh/authentication_policies/-200",
"href": "/api/configuration/ssh/authentication_policies/-200",
"last": "/api/configuration/ssh/authentication_policies/1895203635707e3340262f",
"next": "/api/configuration/ssh/authentication_policies/1895203635707e3340262f",
"parent": "/api/configuration/ssh/authentication_policies",
"previous": null,
"transaction": "/api/transaction"
}
}
key |
|
|
string |
Top level element, contains the ID of the policy. |
body |
|
|
Top level element |
Contains the elements of the policy. |
|
mode |
|
Top level element |
Contains the configuration of the policy. |
|
|
gateway_authentication |
Top level item |
Client-side gateway authentication settings. The value of selection defines which authentication method is used. |
|
|
relayed_methods |
Top level element |
Server-side authentication settings. |
|
|
gssapi |
boolean |
Deprecated setting. |
|
name |
|
string |
The name of the object. This name is also displayed on the SPS web interface. It cannot contain whitespace. |
selection |
|
|
string |
Defines the authentication method for client-side gateway authentication. Possible values are:
-
none
Disables client-side gateway authentication.
-
ldap
Uses the LDAP server configured in the /api/configuration/policies/ldap_servers endpoint).
To use this option, you must also configure the certificate, password, and public_key elements.
-
local
Uses the local user database configured in the /api/configuration/policies/user_databases/ endpoint.
To use this option, you must also configure the certificate, password, public_key, and user_database elements.
-
radius
Uses one or more Radius servers for authentication.
To use this option, you must also configure the authentication_protocol and servers elements. |
certificate |
|
|
Top level item |
Configures authentication with an X.509 certificate.
The enabled child element is required for this option. To enable it, you must also configure the trusted_ca child element. |
|
enabled |
|
boolean |
Possible values:
-
true
Enables client-side, X.509 certification-based authentication. You must also use the trusted_ca element to define a certificate authority.
-
false
Disables client-side, X.509 certificate-based authentication. |
|
trusted_ca |
|
string |
References the key of the trusted CA. You can configure trusted CAs at the /api/configuration/policies/trusted_ca_lists/ endpoint.
To modify or add a trusted CA, use the value of the returned key as the value of the trusted_ca element, and remove any child elements (including the key). |
password |
|
|
boolean |
Authentication based on username and password.
Set it to true to enable password-based client-side authentication. |
public_key |
|
|
Top level item |
Authentication based on public-private encryption keypairs. |
|
enabled |
|
boolean |
Set it to true to enable public key-based client-side authentication. |
user_database |
|
|
string |
References the key of the local user database. You can configure local user databases at the /api/configuration/policies/user_databases/ endpoint.
To modify or add a local user database, use the value of the returned key as the value of the user_database element, and remove any child elements (including the key). |
servers |
|
|
Top level list |
Defines the properties of the RADIUS servers used for client-side authentication.
A valid list item consists of the address, port and shared_secret elements. |
|
address |
|
Top level element |
Defines the address of a RADIUS server. |
|
|
selection |
string |
Required child of the address element. Possible values are:
|
|
|
value |
string |
The IP or the FQDN address of the RADIUS server. |
|
port |
|
int |
The port number of the RADIUS server. |
|
shared_secret |
|
string |
References the key of the shared secret for the RADIUS server. You can configure shared secrets at the /api/configuration/passwords/ endpoint.
To modify or add a shared secret, use the value of the returned key as the value of the shared_secret element, and remove any child elements (including the key). |
authentication_protocol |
|
|
Top level item |
RADIUS setting. Set to pap to use the Password Authentication Protocol. To use the Challenge-Handshake Authentication Protocol, set it to chap. |
keyboard_interactive |
|
boolean |
Authentication based on exchanging messages between the user and the server. This method includes authentication schemes like S/Key or TIS authentication. Depending on the configuration of the SSH server, might have to be used together with password-based authentication.
Set to true to enable interactive authentication on the remote server. |
password |
|
boolean |
Authentication based on username and password.
Set to true to enable password-based authentication on the remote server. |
public_key |
|
Top level item |
Authentication based on public-private encryption keypairs.
Use the selection child element to disable or configure authentication using public-private keypairs on the remote server. |
|
selection |
string |
Configures authenticaton on the remote server using public-private keypairs. The following values are possible:
-
disabled
Disables the authentication method.
-
publish_to_ldap
SPS generates a keypair, and uses this keypair in the server-side connection. The public key of this keypair is also uploaded to the LDAP database set in the LDAP Server of the connection policy. That way the server can authenticate the client to the generated public key stored under the user's username in the LDAP database. You can configure LDAP servers using the /api/configuration/policies/ldap_servers endpoint, and connection policies using the /api/configuration/ssh/connections endpoint.
-
fix
Uses a private key in the server-side connection.
You have to use the private_key element to reference the private key.
-
agent
Allow the client to use agent-forwarding, and use its own keypair on the server-side.
If this option is used, SPS requests the client to use its SSH agent to authenticate on the target server. Therefore, you must configure your clients to enable agent forwarding, otherwise authentication will fail. For details on enabling agent forwarding in your SSH application, see the documentation of the application. |
|
private_key |
string |
References the key of the private key used for authenticating with a public-private keypair on the remote server. You can configure private keys at the /api/configuration/private_keys/ endpoint.
To modify or add a private key, use the value of the returned key as the value of the private_key element, and remove any child elements (including the key). |
Examples:
Password authentication against LDAP on the client side, and using a username and password on the remote server:
{
"mode": {
"gateway_authentication": {
"certificate": {
"enabled": false
},
"password": true,
"public_key": {
"enabled": false
},
"selection": "ldap"
},
"gssapi": false,
"relayed_methods": {
"certificate": {
"selection": "disabled"
},
"keyboard_interactive": false,
"password": true,
"public_key": {
"selection": "disabled"
}
}
},
"name": "Passwords"
}
Password authentication against a local user database on SPS, and using a username and password on the remote server. You can find the key of the local user database is available at the /api/configuration/policies/user_databases/ endpoint.
{
"mode": {
"gateway_authentication": {
"certificate": {
"enabled": false
},
"password": true,
"public_key": {
"enabled": false
},
"selection": "local",
"user_database": <key-of-the-local-usr-db>
},
"gssapi": false,
"relayed_methods": {
"certificate": {
"selection": "disabled"
},
"keyboard_interactive": false,
"password": true,
"public_key": {
"selection": "disabled"
}
}
},
"name": "Local_usr_db"
}
Authenticating against an RADIUS server on the client side, and using a username and password on the remote server. You can configure the key of the shared secret at the /api/configuration/passwords/ endpoint. The IP of the RADIUS server is used.
{
"mode": {
"gateway_authentication": {
"selection": "radius",
"servers": [
{
"address": {
"selection": "ip",
"value": "<radius-server-ip>"
},
"port": 1812,
"shared_secret": <key-of-shared-secret>
}
]
},
"gssapi": false,
"relayed_methods": {
"certificate": {
"selection": "disabled"
},
"keyboard_interactive": false,
"password": true,
"public_key": {
"selection": "disabled"
}
}
},
"name": "RADIUS"
}
Using X.509 certificates against an LDAP server on the client-side, and forwarding it for authentication on the server-side. The key of the trusted Certificate Authority (CA) is available at the /api/configuration/policies/trusted_ca_lists endpoint.
{
"mode": {
"gateway_authentication": {
"certificate": {
"enabled": true,
"trusted_ca": <key-of-trusted-ca>
},
"password": false,
"public_key": {
"enabled": false
},
"selection": "ldap"
},
"gssapi": false,
"relayed_methods": {
"certificate": {
"selection": "agent"
},
"keyboard_interactive": false,
"password": false,
"public_key": {
"selection": "disabled"
}
}
},
"name": "X509_forwarding"
}
Using X.509 certificates against an LDAP server on the client-side, and generating X.509 certificate and key on the fly for authentication on the server-side. The generated keys are uploaded to the LDAP server, so that SPS can authenticate the user on the remote server. The key of the trusted Certificate Authority (CA) is available at the /api/configuration/policies/trusted_ca_lists/ endpoint. The key of the signing Certificate Authority (CA) is available at the /api/configuration/policies/signing_cas/ endpoint.
{
"mode": {
"gateway_authentication": {
"certificate": {
"enabled": true,
"trusted_ca": <key-of-trusted-ca>
},
"password": false,
"public_key": {
"enabled": false
},
"selection": "ldap"
},
"gssapi": false,
"relayed_methods": {
"certificate": {
"selection": "publish_to_ldap",
"signing_ca": <key-of-signing-ca>
},
"keyboard_interactive": false,
"password": false,
"public_key": {
"selection": "disabled"
}
}
},
"name": "X509"
}
Status and error codes
The following table lists the typical status and error codes for this request. For a complete list of error codes, see Application level error codes.
201 |
Created |
The new resource was successfully created. |
400 |
InvalidQuery |
The requested filter or its value is invalid. |
401 |
Unauthenticated |
The requested resource cannot be retrieved because the client is not authenticated and the resource requires authorization to access it. The details section contains the path that was attempted to be accessed, but could not be retrieved. |
401 |
AuthenticationFailure |
Authenticating the user with the given credentials has failed. |
404 |
NotFound |
The requested object does not exist. |
Add an SSH authentication policy
To add an SSH authentication policy, you have to:
-
Open a transaction.
For details, see Open a transaction.
-
Create the JSON object for the new policy.
POST the JSON object to the https://<IP-address-of-SPS>/api/configuration/ssh/authentication_policies/ endpoint. You can find a detailed description of the available parameters listed in Element . The elements of gateway_authentication are listed in Elements of gateway_authentication. The elements of relayed_authentication are listed in Elements of relayed_authentication.
If the POST request is successful, the response includes the key of the new policy. For example:
{
"key": "6f924f39-e4c9-4b0f-8018-8842e2115ebd",
"meta": {
"href": "/api/configuration/ssh/authentication_policies/6f924f39-e4c9-4b0f-8018-8842e2115ebd",
"parent": "/api/configuration/ssh/authentication_policies",
"transaction": "/api/transaction"
}
}
-
Commit your changes.
For details, see Commit a transaction.
Modify an SSH authentication policy
To modify an SSH authentication policy, you have to:
-
Open a transaction.
For details, see Open a transaction.
-
Modify the JSON object of the policy.
PUT the modified JSON object to the https://<IP-address-of-SPS>/api/configuration/ssh/authentication_policies/<key-of-the-object> endpoint. You can find a detailed description of the available parameters listed in Element . The elements of gateway_authentication are listed in Elements of gateway_authentication. The elements of relayed_authentication are listed in Elements of relayed_authentication.
-
Commit your changes.
For details, see Commit a transaction.
Global SSH options
List of options that affect all SSH connections.
URL
GET https://<IP-address-of-SPS>/api/configuration/ssh/options
Cookies
session_id |
Contains the authentication token of the user |
Required |
The value of the session ID cookie received from the REST server in the authentication response, for example, a1f71d030e657634730b9e887cb59a5e56162860. For details on authentication, see Authenticate to the SPS REST API.
Note that this session ID refers to the connection between the REST client and the SPS REST API. It is not related to the sessions that SPS records (and which also have a session ID, but in a different format). |
Sample request
The following command lists global SSH options.
curl --cookie cookies https://<IP-address-of-SPS>/api/configuration/ssh/options
Response
The following is a sample response received when listing global SSH options.
For details of the meta object, see Message format.
{
"body": {
"audit": {
"cleanup": {
"channel_database_cleanup_days": 600,
"enabled": true
},
"timestamping": {
"selection": "local",
"signing_interval": 30
}
},
"gssapi": {
"enabled": false
},
"service": {
"enabled": true,
"log_level": 4
}
},
"key": "options",
"meta": {
"first": "/api/configuration/ssh/authentication_policies",
"href": "/api/configuration/ssh/options",
"last": "/api/configuration/ssh/settings_policies",
"next": "/api/configuration/ssh/settings_policies",
"parent": "/api/configuration/ssh",
"previous": "/api/configuration/ssh/connections",
"transaction": "/api/transaction"
}
}
key |
|
|
Top level item |
Contains the ID of the endpoint. |
body |
|
|
Top level item |
Contains the elements of the global SSH options. |
|
audit |
|
Top level item |
Contains settings for timestamping and cleanup. |
|
service |
|
Top level item |
Global setting to enable SSH connections, and specify the logging detail. |
|
|
enabled |
boolean |
Set to true to enable SSH connections. |
|
|
log_level |
int |
Defines the logging detail of SSH connections. |
|
gssapi |
|
Top level item |
Deprecated setting. |
cleanup |
|
|
Top level item |
Global retention settings for SSH connection metadata. To configure retention time for a specific connection policy, use the archive_cleanup_policy element at the endpoint of the policy instead. |
|
channel_database_cleanup_days |
|
int |
Global retention time for the metadata of SSH connections, in days. Must exceed the retention time of the archiving policy (or policies) used for SSH connections, and the connection-specific database cleanup times (if configured). |
|
enabled |
|
boolean |
To enable the global cleanup of SSH connection metadata, set this element to true. |
timestamping |
|
|
Top level item |
Global timestamping settings for SSH connections. |
|
selection |
|
string |
Configures local or remote timestamping.
|
|
server_url |
|
string |
Required for remote timestamping.
The URL of the timestamping server. Note that HTTPS and password-protected connections are not supported. |
|
oid |
|
Top level item |
The Object Identifier of the policy used for timestamping. |
|
|
enabled |
boolean |
Required for remote timestamping.
Set to true to configure the Object Identifier of the timestamping policy on the timestamping remote server. |
|
|
policy_oid |
string |
Required if the oid is enabled.
The Object Identifier of the timestamping policy on the remote timestamping server. |
|
signing_interval |
|
int |
Time interval for timestamping open connections, in seconds. |
Examples:
Set SPS as the timestamping server:
{
"audit": {
"cleanup": {
"enabled": false
},
"timestamping": {
"selection": "local",
"signing_interval": 30
}
},
"gssapi": {
"enabled": false
},
"service": {
"enabled": true,
"log_level": 4
}
}
Enable cleanup, and set it to occur every 10 days:
{
"audit": {
"cleanup": {
"channel_database_cleanup_days": 10,
"enabled": true
},
"timestamping": {
"selection": "local",
"signing_interval": 30
}
},
"gssapi": {
"enabled": false
},
"service": {
"enabled": true,
"log_level": 4
}
}
Change timestamping to a remote server, without specifying a timestamping policy:
{
"audit": {
"cleanup": {
"channel_database_cleanup_days": 10,
"enabled": true
},
"timestamping": {
"oid": {
"enabled": false
},
"selection": "remote",
"server_url": "<url-of-timestamping-server>",
"signing_interval": 30
}
},
"gssapi": {
"enabled": false
},
"service": {
"enabled": true,
"log_level": 4
}
}
Change timestamping to a remote server, and specify the 1.2.3 timestamping policy:
{
"audit": {
"cleanup": {
"channel_database_cleanup_days": 10,
"enabled": true
},
"timestamping": {
"oid": {
"enabled": true,
"policy_oid": "1.2.3"
},
"selection": "remote",
"server_url": "<url-of-timestamping-server>",
"signing_interval": 30
}
},
"gssapi": {
"enabled": false
},
"service": {
"enabled": true,
"log_level": 4
}
}
Status and error codes
The following table lists the typical status and error codes for this request. For a complete list of error codes, see Application level error codes.
201 |
Created |
The new resource was successfully created. |
400 |
InvalidQuery |
The requested filter or its value is invalid. |
401 |
Unauthenticated |
The requested resource cannot be retrieved because the client is not authenticated and the resource requires authorization to access it. The details section contains the path that was attempted to be accessed, but could not be retrieved. |
401 |
AuthenticationFailure |
Authenticating the user with the given credentials has failed. |
404 |
NotFound |
The requested object does not exist. |
Modify global SSH settings
To modify global SSH settings, you have to:
-
Open a transaction.
For details, see Open a transaction.
-
Modify the JSON object of the global SSH settings endpoint.
PUT the modified JSON object to the https://<IP-address-of-SPS>/api/configuration/ssh/options endpoint. You can find a detailed description of the available parameters listed in Element . The elements of the audit item are described in Elements of audit.
-
Commit your changes.
For details, see Commit a transaction.
SSH settings policies
SSH settings policies define protocol-level settings (algorithms, greetings and banners, timeout). You can create multiple policies, and choose the appropriate one for each SSH connection.
URL
GET https://<IP-address-of-SPS>/api/configuration/ssh/settings_policies
Cookies
session_id |
Contains the authentication token of the user |
Required |
The value of the session ID cookie received from the REST server in the authentication response, for example, a1f71d030e657634730b9e887cb59a5e56162860. For details on authentication, see Authenticate to the SPS REST API.
Note that this session ID refers to the connection between the REST client and the SPS REST API. It is not related to the sessions that SPS records (and which also have a session ID, but in a different format). |
Sample request
The following command lists SSH settings policies.
curl --cookie cookies https://<IP-address-of-SPS>/api/configuration/ssh/settings_policies
The following command retrieves the properties of a specific policy.
curl --cookie cookies https://<IP-address-of-SPS>/api/configuration/ssh/settings_policies/<policy-id>
Response
The following is a sample response received when listing SSH settings policies.
For details of the meta object, see Message format.
{
"items": [
{
"key": "-300",
"meta": {
"href": "/api/configuration/ssh/settings_policies/-300"
}
},
{
"key": "236283841571912b948b88",
"meta": {
"href": "/api/configuration/ssh/settings_policies/236283841571912b948b88"
}
}
],
"meta": {
"first": "/api/configuration/ssh/authentication_policies",
"href": "/api/configuration/ssh/settings_policies",
"last": "/api/configuration/ssh/settings_policies",
"next": null,
"parent": "/api/configuration/ssh",
"previous": "/api/configuration/ssh/options",
"transaction": "/api/transaction"
}
}
When retrieving the endpoint of a specific policy, the response is the following.
{
"body": {
"client_side_algorithms": {
"cipher": [
"aes128-ctr",
"aes192-ctr",
"aes256-ctr"
],
"compression": [
"none"
],
"kex": [
"diffie-hellman-group14-sha1"
],
"mac": [
"hmac-sha2-256",
"hmac-sha2-512"
]
},
"greeting": "Welcome!",
"name": "API_SSH_Setting",
"preconnect_channel_check": true,
"server_side_algorithms": {
"cipher": [
"aes128-ctr",
"aes192-ctr",
"aes256-ctr"
],
"compression": [
"none"
],
"kex": [
"diffie-hellman-group14-sha1"
],
"mac": [
"hmac-sha2-256",
"hmac-sha2-512"
]
},
"software_version": "SSH",
"strict_mode": true,
"timeout": 600,
"userauth_banner": "This is a monitored connection."
},
"key": "236283841571912b948b88",
"meta": {
"first": "/api/configuration/ssh/settings_policies/-300",
"href": "/api/configuration/ssh/settings_policies/236283841571912b948b88",
"last": "/api/configuration/ssh/settings_policies/236283841571912b948b88",
"next": null,
"parent": "/api/configuration/ssh/settings_policies",
"previous": "/api/configuration/ssh/settings_policies/-300",
"transaction": "/api/transaction"
}
}
key |
|
|
string |
Top level element, contains the ID of the policy. |
body |
|
|
Top level element (string) |
The elements of the SSH settings policy. |
|
client_side_algorithms |
|
Top level element (list) |
Lists the permitted client-side encryption parameters. |
|
|
cipher |
list |
Lists the permitted client-side cipher algorithms. |
|
|
compression |
list |
Lists the permitted client-side compression algorithms. |
|
|
kex |
list |
Lists the permitted client-side KEX algorithms. |
|
|
mac |
list |
Lists the permitted client-side MAC algorithms. |
|
greeting |
|
string |
Greeting message for the connection. |
|
name |
|
string |
Name of the SSH settings policy. |
|
preconnect_channel_check |
|
boolean |
Before establishing the server-side connection, SPS can evaluate the connection and channel policies to determine if the connection might be permitted at all. The server-side connection is established only if the evaluated policies permit the client to access the server.
To enable this function, set the parameter to true. |
|
server_side_algorithms |
|
Top level element (list) |
Lists the permitted server-side encryption parameters. |
|
|
cipher |
list |
Lists the permitted server-side cipher algorithms. |
|
|
compression |
list |
Lists the permitted server-side compression algorithms. |
|
|
kex |
list |
Lists the permitted server-side KEX algorithms. |
|
|
mac |
list |
Lists the permitted server-side MAC algorithms. |
|
software_version |
|
string |
Specifies additional text to append to the SSH protocol banner sent by the server upon connection. |
|
strict_mode |
|
boolean |
When this option is enabled, SPS rejects connections that use unrealistic parameters (for example, terminals of thousand by thousand characters) and port-forwarding connections where the address in the port-forwarding request and the channel-opening request does not match. Note that this can interfere with certain client or server applications.
Strict mode is allowed by default. To turn it off, set the parameter to false. |
|
timeout |
|
int |
Connection timeout, in seconds. Note that the SPS web UI displays the same value in milliseconds. |
|
userauth_banner |
|
string |
You can display a banner message to the clients before authentication (as specified in RFC 4252 — The Secure Shell (SSH) Authentication Protocol). You can use this banner to inform the users that the connection is audited. |
Status and error codes
The following table lists the typical status and error codes for this request. For a complete list of error codes, see Application level error codes.
201 |
Created |
The new resource was successfully created. |
400 |
InvalidQuery |
The requested filter or its value is invalid. |
401 |
Unauthenticated |
The requested resource cannot be retrieved because the client is not authenticated and the resource requires authorization to access it. The details section contains the path that was attempted to be accessed, but could not be retrieved. |
401 |
AuthenticationFailure |
Authenticating the user with the given credentials has failed. |
404 |
NotFound |
The requested object does not exist. |
Add SSH settings policies
To add a settings policy, you have to:
-
Open a transaction.
For details, see Open a transaction.
-
Create the JSON object for the new policy.
POST the JSON object to the https://<IP-address-of-SPS>/api/configuration/ssh/settings_policies/ endpoint. You can find a detailed description of the available parameters listed in Element .
If the POST request is successful, the response includes the key of the new policy. For example:
{
"key": "59790911-415c-4ed3-a0d2-1164637472ca",
"meta": {
"href": "/api/configuration/ssh/settings_policies/59790911-415c-4ed3-a0d2-1164637472ca",
"parent": "/api/configuration/ssh/settings_policies",
"transaction": "/api/transaction"
}
}
-
Commit your changes.
For details, see Commit a transaction.
Modify SSH settings policies
To modify a settings policy, you have to:
-
Open a transaction.
For details, see Open a transaction.
-
Modify the JSON object of the policy.
PUT the modified JSON object to the https://<IP-address-of-SPS>/api/configuration/ssh/settings_policies/<key-of-the-object> endpoint. You can find a detailed description of the available parameters listed in Element .
-
Commit your changes.
For details, see Commit a transaction.