search for: canonicalize_hostnam

Displaying 4 results from an estimated 4 matches for "canonicalize_hostnam".

Did you mean: canonicalize_hostname
2014 Feb 10
0
[PATCH] Basic SCTP support for OpenSSH client and server
...Unsupported }, +#endif { "ignoreunknown", oIgnoreUnknown }, { NULL, oBadOption } @@ -1370,6 +1375,10 @@ parse_int: } break; + case oConnectViaSCTP: + intptr = &options->connect_via_sctp; + goto parse_flag; + case oCanonicalizeHostname: intptr = &options->canonicalize_hostname; multistate_ptr = multistate_canonicalizehostname; @@ -1550,6 +1559,7 @@ initialize_options(Options * options) options->canonicalize_max_dots = -1; options->canonicalize_fallback_local = -1; options->canonicalize_hostname = -1; + options->connect_via_sctp = -1; } /* @@ -17...
2013 Oct 23
1
ProxyCommand brokent in recent snapshots
Hello, While testing recent snapshots (20131023 and 20131024) I encountered a problem with ProxyCommand. The regression tests all passed, but the use of ProxyCommand's in my ~/.ssh/config resulted in name resolution errors; even if CanonicalizeHostname was explicitly set to "no." The patch included inline below fixed the issue: Index: ssh.c
2014 Feb 03
1
ssh config Host case insensitive
Hi, There seems to be an issue where a case sensitive Host entry is no longer working after update to openssh 6.5 example entry: (was working before update) Host MyHost Hostname 192.168.0.1 Port 1234 User root IdentityFile ~/.ssh/id_rsa When issuing "ssh MyHost" the outcome is now: ssh: Could not resolve hostname myhost: Name or service not known When the above entry is changed
2015 Jul 29
2
[PATCH] ssh: Add option to present certificates on command line
...efault: usage(); } @@ -1013,6 +1018,9 @@ main(int ac, char **av) options.hostname = xstrdup(host); } + /* If the user has specified certificate(s), load it now. */ + load_certificate_files(); + /* If canonicalization requested then try to apply it */ lowercase(host); if (options.canonicalize_hostname != SSH_CANONICALISE_NO) @@ -1353,6 +1361,13 @@ main(int ac, char **av) } } + for (i = 0; i < options.num_certificate_files; i++) { + free(options.certificate_files[i]); + options.certificate_files[i] = NULL; + } + + + exit_status = compat20 ? ssh_session2() : ssh_session(); packet_...