search for: ignoreunknown

Displaying 13 results from an estimated 13 matches for "ignoreunknown".

2016 Aug 29
2
[PATCH] Make "ssh" try different configuration filenames
To provide a bit more backwards-compatible (which is nice for eg. NFS- shared /home directories) try a few version-number based names. Eg., for "OpenSSH_7.3" the strings that are tried after "~/.ssh/config" are "_7.3", "_7", and "". --- ssh.c | 37 ++++++++++++++++++++++++++++++------- 1 file changed, 30 insertions(+), 7 deletions(-) diff --git
2015 May 01
0
[Bug 1529] Need a method to add new configuration options in a backwards-compatible fashion (avoiding "Bad configuration option")
...------------------------------ Resolution|--- |DUPLICATE Status|NEW |RESOLVED CC| |djm at mindrot.org --- Comment #2 from Damien Miller <djm at mindrot.org> --- There has been an IgnoreUnknown option in ssh_config for a while. E.g. you can stick something like this at the start of ~/.ssh/config: IgnoreUnknown GSSAPI* *** This bug has been marked as a duplicate of bug 866 *** -- You are receiving this mail because: You are watching the assignee of the bug. You are watching someone on...
2023 Jul 07
1
[Bug 3586] New: Create mechanism for vendor-specific extensions to be placed in config without breaking other platforms
https://bugzilla.mindrot.org/show_bug.cgi?id=3586 Bug ID: 3586 Summary: Create mechanism for vendor-specific extensions to be placed in config without breaking other platforms Product: Portable OpenSSH Version: 9.0p1 Hardware: All OS: Mac OS X Status: NEW Severity: enhancement
2015 Jun 17
5
[Bug 2414] New: ControlMaster directive should be ignored on Cygwin
https://bugzilla.mindrot.org/show_bug.cgi?id=2414 Bug ID: 2414 Summary: ControlMaster directive should be ignored on Cygwin Product: Portable OpenSSH Version: -current Hardware: Other OS: Cygwin on NT/2k Status: NEW Severity: enhancement Priority: P5 Component: ssh Assignee:
2010 Jun 26
0
[Bug 866] ssh(1) is too picky about unknown options in ~/.ssh/config
...g an option that OpenSSH knows about but doesn't support, such as the GSSAPI* options on an installation of OpenSSH that got configured without GSSAPI support. These options have an opcode of oUnsupported. This seems simple enough to fix: change "return keywords[i].opcode;" to: if (ignoreunknown && keywords[i].opcode == oUnsupported) return oIgnored; return keywords[i].opcode; Real-world application of this: I set "GSSAPIAuthentication no" in my ~/.ssh/config, and OpenSSH on my N900 doesn't have GSSAPI support, so I get a warning message every time I use ssh. -...
2013 Jul 30
1
Bug #866
...the sense of humor in 2004 to propose KnownUnknowns, and even UnknownUnknowns (a boolean, natch); b) you used a different parameter name than SunSSH (which uses IgnoreIfUnknown). It may not be too late to do something about either of those... I think the Oracle folks will have no problem adding IgnoreUnknown as an alias of IgnoreIfUnknown, so (b) is not a problem. And humor or lack thereof is not a problem either. So there may be nothing to do here, though if I were at Oracle I'd probably ask you if you could match the SunSSH parameter just to avoid unnecessary divergence. I'm actually more...
2013 Jul 25
11
Call for testing: OpenSSH-6.3
...d debugging logs to a specified file instead of stderr or syslog. * sftp(1): add support for resuming partial downloads using the "reget" command and on the sftp commandline or on the "get" commandline using the "-a" (append) option. * ssh(1): add an "IgnoreUnknown" configuration option to selectively suppress errors arising from unknown configuration directives. * sshd(8): add support for submethods to be appended to required authentication methods listed via AuthenticationMethods. Bugfixes: * sshd(8): fix refusal to accept certificate if a k...
2013 Sep 13
0
Announce: OpenSSH 6.3 released
...d debugging logs to a specified file instead of stderr or syslog. * sftp(1): add support for resuming partial downloads using the "reget" command and on the sftp commandline or on the "get" commandline using the "-a" (append) option. * ssh(1): add an "IgnoreUnknown" configuration option to selectively suppress errors arising from unknown configuration directives. * sshd(8): add support for submethods to be appended to required authentication methods listed via AuthenticationMethods. Bugfixes: * sshd(8): fix refusal to accept certificate if a k...
2013 Sep 13
0
Announce: OpenSSH 6.3 released
...d debugging logs to a specified file instead of stderr or syslog. * sftp(1): add support for resuming partial downloads using the "reget" command and on the sftp commandline or on the "get" commandline using the "-a" (append) option. * ssh(1): add an "IgnoreUnknown" configuration option to selectively suppress errors arising from unknown configuration directives. * sshd(8): add support for submethods to be appended to required authentication methods listed via AuthenticationMethods. Bugfixes: * sshd(8): fix refusal to accept certificate if a k...
2013 Jun 20
1
ProxyCommand that returns a socket
Hello, My usage of ProxyCommand just calls the nc utility with various parameters. That in turn after the initial setup just copies copies the data from the network socket to stdin/stdout. This useless coping can be avoided if ssh has an option to receive the socket from the proxy command. I suppose it can improve network error reporting as ssh would talk directly to the network socket rather
2014 Feb 10
0
[PATCH] Basic SCTP support for OpenSSH client and server
...quot;SCTP"); +#endif + } } /* Characters considered whitespace in strsep 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 +26...
2015 Jul 29
2
[PATCH] ssh: Add option to present certificates on command line
...may be used in conjunction with .Cm IdentitiesOnly to select which identities in an agent are offered during authentication. +.Cm IdentityFile +may also be used in conjunction with +.Cm CertificateFile +in order to provide any certificate also needed for authentication with +the identity. .It Cm IgnoreUnknown Specifies a pattern-list of unknown options to be ignored if they are encountered in configuration parsing. diff --git a/sshconnect2.c b/sshconnect2.c index 34dbf9a..fb24b5e 100644 --- a/sshconnect2.c +++ b/sshconnect2.c @@ -1016,6 +1016,7 @@ sign_and_send_pubkey(Authctxt *authctxt, Identity *id)...
2013 Oct 07
4
Feature request: FQDN Host match
Hello! I'm hoping that Gmail won't HTML format this mail so that I'll get flamed :) Anyway, my question relates to ssh_config. The problem I find is that the Host pattern is only applied to the argument given on the command line, as outlined in the man page: "The host is the hostname argument given on the command line (i.e. the name is not converted to a canonicalized host name