Displaying 3 results from an estimated 3 matches for "canonicalizemaxdot".
Did you mean:
  canonicalizemaxdots
  
2023 Apr 01
1
[Bug 3555] New: ForwardAgent doesn't work under Match canonical
...anonicalizeHostname, the ForwardAgent directive doesn't
seem to work under Match canonical.
e.g.
-----
Host bastion
    ProxyJump none
Match canonical
    ProxyJump bastion
    ForwardAgent yes
Host *
    ForwardAgent no
    CanonicalizeHostname always
    CanonicalDomains mydomain.co.uk
    CanonicalizeMaxDots 0
    CanonicalizeFallbackLocal yes
----
When I connect to foo.mydomain.co.uk through the jumphost
bastion.mydomain.co.uk, ssh-agent is not forwarded.
If I change the ForwardAgent directive under Host * to 'yes', then it
does get forwarded. Therefore, it seems that the ForwardAgent direc...
2014 Feb 10
0
[PATCH] Basic SCTP support for OpenSSH client and server
...trsep calls. */
diff --git a/readconf.c b/readconf.c
index f80d1cc..1dc33fd 100644
--- a/readconf.c
+++ b/readconf.c
@@ -148,7 +148,7 @@ typedef enum {
 	oVisualHostKey, oUseRoaming,
 	oKexAlgorithms, oIPQoS, oRequestTTY, oIgnoreUnknown, oProxyUseFdpass,
 	oCanonicalDomains, oCanonicalizeHostname, oCanonicalizeMaxDots,
-	oCanonicalizeFallbackLocal, oCanonicalizePermittedCNAMEs,
+	oCanonicalizeFallbackLocal, oCanonicalizePermittedCNAMEs, oConnectViaSCTP,
 	oIgnoredUnknownOption, oDeprecated, oUnsupported
 } OpCodes;
 
@@ -261,6 +261,11 @@ static struct {
 	{ "canonicalizehostname", oCanonicalizeHostnam...
2015 Jul 29
2
[PATCH] ssh: Add option to present certificates on command line
..._path
 .Op Fl W Ar host : Ns Ar port
 .Op Fl w Ar local_tun Ns Op : Ns Ar remote_tun
+.Op Fl z Ar certificate_file
 .Oo Ar user Ns @ Oc Ns Ar hostname
 .Op Ar command
 .Ek
@@ -468,6 +469,7 @@ For full details of the options listed below, and their possible values, see
 .It CanonicalizeHostname
 .It CanonicalizeMaxDots
 .It CanonicalizePermittedCNAMEs
+.It CertificateFile
 .It ChallengeResponseAuthentication
 .It CheckHostIP
 .It Cipher
@@ -768,6 +770,21 @@ Send log information using the
 .Xr syslog 3
 system module.
 By default this information is sent to stderr.
+.It Fl z Ar certificate_file
+Selects a file fr...