You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 26, 2020. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+6-4Lines changed: 6 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ Warning: This role disables root-login on the target server! Please make sure yo
12
12
13
13
## Requirements
14
14
15
-
* Ansible
15
+
* Ansible > 2.2.1
16
16
17
17
## Role Variables
18
18
| Name | Default Value | Description |
@@ -24,13 +24,13 @@ Warning: This role disables root-login on the target server! Please make sure yo
24
24
|`ssh_server_weak_hmac`| false |true if weaker HMAC mechanisms are required. This is usually only necessary, if older M2M mechanism need to communicate with SSH, that don't have any of the configured secure HMACs enabled.|
25
25
|`ssh_client_weak_kex`| false |true if weaker Key-Exchange (KEX) mechanisms are required. This is usually only necessary, if older M2M mechanism need to communicate with SSH, that don't have any of the configured secure KEXs enabled.|
26
26
|`ssh_server_weak_kex`| false |true if weaker Key-Exchange (KEX) mechanisms are required. This is usually only necessary, if older M2M mechanism need to communicate with SSH, that don't have any of the configured secure KEXs enabled.|
27
-
|`ssh_server_ports`|['22']|ports to which ssh-server should listen to|
28
-
|`ssh_client_ports`|['22']|ports to which ssh-client should connect to|
27
+
|`ssh_server_ports`|['22']|ports on which ssh-server should listen|
28
+
|`ssh_client_port`| '22'|port to which ssh-client should connect|
29
29
|`ssh_listen_to`|['0.0.0.0']|one or more ip addresses, to which ssh-server should listen to. Default is all adresseses, but should be configured to specific addresses for security reasons!|
30
30
|`ssh_host_key_files`|['/etc/ssh/ssh_host_rsa_key', '/etc/ssh/ssh_host_dsa_key', '/etc/ssh/ssh_host_ecdsa_key']|Host keys to look for when starting sshd.|
31
31
|`ssh_client_alive_interval`| 600 | specifies an interval for sending keepalive messages |
32
32
|`ssh_client_alive_count`| 3 | defines how often keep-alive messages are sent |
33
-
|`ssh_remote_hosts`|[]| one or more hosts, to which ssh-client can connect to. Default is empty, but should be configured for security reasons!|
33
+
|`ssh_remote_hosts`|[]| one or more hosts and their custom options for the ssh-client. Default is empty. See examples in `defaults/main.yml`.|
34
34
|`ssh_allow_root_with_key`| false | false to disable root login altogether. Set to true to allow root to login via key-based mechanism.|
35
35
|`ssh_allow_tcp_forwarding`| false | false to disable TCP Forwarding. Set to true to allow TCP Forwarding.|
36
36
|`ssh_allow_agent_forwarding`| false | false to disable Agent Forwarding. Set to true to allow Agent Forwarding.|
@@ -44,6 +44,8 @@ Warning: This role disables root-login on the target server! Please make sure yo
44
44
|`sftp_enabled`| false | true to enable sftp configuration|
0 commit comments