Florian Ermisch
8594cd90ba
add optional `{{source}} to ssh_config
7 years ago
Michael Mol
345e07c85e
Support Match prioritization
OpenSSH's Match declarations are applied first-match-wins. However, we
can't safely define two Matches that might overlap unless we first sort
the keys, as Python (and Jinja) dicts don't guarantee the order of
dict keys,
We also won't scramble the match sequence every time the user adds,
removes or renames a match, and so we give the user clearer, more
concise diffs as when they apply changes.
Finally, we leave a comment on the Match line identifying where the
Match rule came from, to assist in troubleshooting.
7 years ago
Adam Mendlik
1284109335
PrintLastLog missing in FreeBSD 11.0
The fix introduced in 678cc9066c
suppresses the PrintLastLog directive for FreeBSD 10.3.
SSH on FreeBSD 11.0 also does not support PrintLastLog, so this
change suppresses it for any version >= 10.3.
7 years ago
Alexander Weidinger
162705c7ce
Test config before applying it
7 years ago
Alexander Weidinger
6b23b28f52
Opt-in to enforce RSA key length
7 years ago
Alexander Weidinger
674216d0ad
openssh.auth_map
7 years ago
Alexander Weidinger
66c954ed66
Set correct ssh(d)_config_group for *BSD
7 years ago
ek9
038a51cdc8
manage sshd_config and ssh_config only if pillars are defined
7 years ago
ek9
c03e29a498
remove Kex,MACs,Ciphers from defaults
7 years ago
Adam Mendlik
613bea2cac
Add variables for file owner and mode
7 years ago
Alexander Weidinger
70461403cb
known_hosts: sort IP addresses
in order to prevent unnecessary changes due to
random ordering of dig results.
7 years ago
Alexander Weidinger
678cc9066c
PrintLastLog missing in FreeBSD 10.3
7 years ago
ek9
f5a74f3fa0
defaults: enable secure defaults on sshd_config
7 years ago
Eric Cook
f4ea96f9c1
setup sftp correctly on RedHat-like machines
8 years ago
Pandu E Poluan
773d9ae092
Apply string-or-list processing to ssh_config
Now ssh_config also accepts string-or-list options, for serveral
keywords.
8 years ago
Pandu E Poluan
30648d115e
Add macro to handle string or list
Added a macro to handle multivalue options entered in either string
format or list format (with auto joiner).
8 years ago
Eric Cook
686fc2c4ee
do not set UsePAM on OpenBSD
Upstream opensshd does not support PAM
8 years ago
Simon Pirschel
1b69ecab2c
fix issue with stripping new line will result in invalid SLS definition if AuthorizedKeysFile is missing in sshd_config
8 years ago
Simon Pirschel
2a1b8fbc66
fix issue sshd won't start if AddressFamily is specified, because it must be defined before ListenAddress
8 years ago
Eric Cook
51fd8b1391
fix Subsystem directive on archlinux
8 years ago
omltorg
de66dbee97
Update name of package containing dig on ArchLinux
8 years ago
Johannes Löthberg
02b52fa7cf
Add AuthorizedKeysCommand support
Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
8 years ago
Mathieu POTIER
760a2ad277
fix the path to authkeys
Allow user to specify aliased path (with %u)
8 years ago
Pandu E Poluan
e6603ae62a
Allow moduli to be pulled as file
Added Jinja logic to allow the option to pull the moduli from an online source.
8 years ago
Lev Lozhkin
781be61881
Convert dig exist check to unless req
8 years ago
Jonathon Anderson
87057c7c6b
Correct openssh-clients package name for Red Hat
8 years ago
Niels Abspoel
641851632f
add more authentication options
8 years ago
Matthieu DERASSE
3542a1f534
Implement Session idle time out
8 years ago
Eric Cook
dfb04a43b4
set dig_pkg on arch linux for issue #59
8 years ago
llua
bd8d46d784
add OpenBSD to map.jinja
8 years ago
Wolodja Wentland
49923a6371
Drop overly opinionated ssh_config defaults
This set of options reflect the ssh_config options that are set by
default on Debian. The way this was set before has the potential to
break exisisting setups that rely on "normal" defaults, rather than the
rather opinionated ones that are now being shipped with this formula.
8 years ago
Simon Lloyd
daed52de19
Add sshd_config to map.jinja and check if dig command is available before installing 'dig' package.
8 years ago
Theo Chatzimichos
0abbaac60d
Fix the default Subystem sftp-server path for SLE
8 years ago
Nigel Sim
1e515b0f5d
make the host option rendering support lists by refactoring the main option rendering code
put the ssh_config Host:* options in the defaults file so they can be overridden
9 years ago
ketzacoatl
143451eb19
Add support for Host definitions in ssh_config
This gives us the ability to define system-wide definitions for specific Hosts, and their options.
For example, with this in pillar:
```
# this is the place for host-wide SSH config
ssh_config:
...
Hosts:
# this simplifies cloning with custom params
# eg: git clone my-git:foo/bar
my-git:
User: git
HostName: git.example.com
Port: 2222
```
This would add a section in `/etc/ssh/ssh_config`:
```
Host my-git
User git
HostName git.example.com
Port 2222
```
9 years ago
ek9
33344743b0
Add ability to control SSH server status (default: on)
9 years ago
abednarik
b813b4b52a
Replaced iteritems deprecated function with items
9 years ago
abednarik
3791b11380
Added default path for sftp Subsystem in FreeBSD
9 years ago
POTIER Mathieu
f55445211c
Specify config clause only if defined in pillar.
Signed-off-by: POTIER Mathieu <mathieu.potier@onzeway.eu>
9 years ago
POTIER Mathieu
dda1fb5128
Put ssh keys on configured path in sshd_config (AuthorizedKeysFile)
Signed-off-by: POTIER Mathieu <mathieu.potier@onzeway.eu>
9 years ago
Bogdan Radulescu
13cf374efe
Added configuration options for ssh_config
Made a small change to reflect the default sshd_config
9 years ago
Bogdan Radulescu
fd4381b769
The default value for ServerKeyBits is 1024 both upstream and in distros
9 years ago
René Jochum
064d489f41
Use iteritems() instead of items().
Signed-off-by: René Jochum <rene@jochums.at>
9 years ago
René Jochum
a013b79027
Use iteritems() instead of items().
Signed-off-by: René Jochum <rene@jochums.at>
9 years ago
elfixit
18ba94d0fc
add options to give a key size to generate_key
9 years ago
Ingo Bente
a927107b28
Adds support to customize /etc/ssh/moduli file
9 years ago
Ingo Bente
83bb5ac5a0
adds support to harden sshd_config (KeyExchange, Ciphers, MACs)
9 years ago
Thomas Juberg
6b68c44583
Stop messing up the first line in ssh_known_hosts
9 years ago
Imran Haider
4dddff0ccd
Fix service name for Arch Linux
9 years ago
Niels Abspoel
2a68ccac1a
Add option to remove ssh_host_keys
9 years ago