ssh-config icon indicating copy to clipboard operation
ssh-config copied to clipboard

📟 SSH config parser and stringifier

Results 2 ssh-config issues
Sort by recently updated
recently updated
newest added

- Have a config that contains ``` Host YYYY HostName YYYY IdentityFile ~/.ssh/id_rsa StrictHostKeyChecking no UserKnownHostsFile /dev/null ProxyCommand ssh -i ~/.ssh/id_rsa -W %h:%p -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null XXX@ZZZ User XXX...

## Summary OpenSSH treats configuration directives case-insensitively, but `ssh-config` does not. For example: ```conf Host example hOsTnaME 1.2.3.4 ``` ```console % ssh -G example host example hostname 1.2.3.4 ``` However,...