mirror of
https://github.com/trailofbits/algo.git
synced 2025-04-11 11:47:08 +02:00
sshd limits the number of authentication attempts permitted per established connection. The limit is set via the MaxAuthTries option and defaults to six attempts. Client SSH environments that define more than six SSH keys globally or in the agent would exhaust authentication attempts before they reach the algo-specified per-instance SSH private key. SSH client allows "forgetting" existing keys per connection using the IdentitiesOnly option. A client only offers an explicitly defined key when this option is set.
8 lines
187 B
Django/Jinja
8 lines
187 B
Django/Jinja
Host algo
|
|
DynamicForward 127.0.0.1:1080
|
|
LogLevel quiet
|
|
Compression yes
|
|
IdentitiesOnly yes
|
|
IdentityFile {{ item }}.ssh.pem
|
|
User {{ item }}
|
|
Hostname {{ IP_subject_alt_name }}
|