Saltstack Official OpenSSH Formula
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- openssh:
- sshd_config: /etc/ssh/sshd_config
- sshd_config_src: salt://openssh/files/sshd_config
- ssh_config: /etc/ssh/ssh_config
- ssh_config_src: salt://openssh/files/ssh_config
- banner: /etc/ssh/banner
- banner_src: salt://openssh/files/banner
- ssh_known_hosts: /etc/ssh/ssh_known_hosts
- dig_pkg: dnsutils
- ssh_moduli: /etc/ssh/moduli
- ssh_config:
- Hosts:
- '*':
- ForwardAgent: no
- ForwardX11: no
- RhostsRSAAuthentication: no
- RSAAuthentication: yes
- PasswordAuthentication: yes
- HostbasedAuthentication: no
- GSSAPIAuthentication: no
- GSSAPIDelegateCredentials: no
- BatchMode: no
- CheckHostIP: yes
- AddressFamily: any
- ConnectTimeout: 0
- StrictHostKeyChecking: ask
- IdentityFile: "~/.ssh/id_rsa"
- Port: 22
- Protocol: 2
- Cipher: 3des
- Tunnel: no
- TunnelDevice: "any:any"
- PermitLocalCommand: no
- VisualHostKey: no
|