RHEL Engineering is moving the tracking of its product development work on RHEL 6 through RHEL 9 to Red Hat Jira (issues.redhat.com). If you're a Red Hat customer, please continue to file support cases via the Red Hat customer portal. If you're not, please head to the "RHEL project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs in the statuses "NEW", "ASSIGNED", and "POST" are being migrated throughout September 2023. Bugs of Red Hat partners with an assigned Engineering Partner Manager (EPM) are migrated in late September as per pre-agreed dates. Bugs against components "kernel", "kernel-rt", and "kpatch" are only migrated if still in "NEW" or "ASSIGNED". If you cannot log in to RH Jira, please consult article #7032570. That failing, please send an e-mail to the RH Jira admins at rh-issues@redhat.com to troubleshoot your issue as a user management inquiry. The email creates a ServiceNow ticket with Red Hat. Individual Bugzilla bugs that are migrated will be moved to status "CLOSED", resolution "MIGRATED", and set with "MigratedToJIRA" in "Keywords". The link to the successor Jira issue will be found under "Links", have a little "two-footprint" icon next to it, and direct you to the "RHEL project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/RHEL-XXXX", where "X" is a digit). This same link will be available in a blue banner at the top of the page informing you that that bug has been migrated.
Bug 1187597 - sshd -T does not show all (default) options, inconsistency
Summary: sshd -T does not show all (default) options, inconsistency
Keywords:
Status: CLOSED ERRATA
Alias: None
Product: Red Hat Enterprise Linux 7
Classification: Red Hat
Component: openssh
Version: 7.2
Hardware: Unspecified
OS: Unspecified
unspecified
low
Target Milestone: rc
: ---
Assignee: Jakub Jelen
QA Contact: Stanislav Zidek
URL:
Whiteboard:
Depends On: 1109251
Blocks: 1187521
TreeView+ depends on / blocked
 
Reported: 2015-01-30 13:42 UTC by Jakub Jelen
Modified: 2016-02-09 08:30 UTC (History)
7 users (show)

Fixed In Version: openssh-6.6.1p1-14.el7
Doc Type: Bug Fix
Doc Text:
Clone Of: 1109251
Environment:
Last Closed: 2015-11-19 08:02:48 UTC
Target Upstream Version:
Embargoed:


Attachments (Terms of Use)


Links
System ID Private Priority Status Summary Last Updated
Red Hat Bugzilla 1270925 0 unspecified CLOSED Some sshd_config directives not dumped by sshd -T when not specifed explicitly 2021-02-22 00:41:40 UTC
Red Hat Product Errata RHSA-2015:2088 0 normal SHIPPED_LIVE Moderate: openssh security, bug fix, and enhancement update 2015-11-19 08:38:51 UTC

Internal Links: 1270925

Comment 1 Jakub Jelen 2015-03-31 15:05:10 UTC
For rhel-7 version applies at least these problems:
 * UsePAM written as number instead of yes|no
 * HostCertificate written with title HostKeyFile
 * missing AllowAgentForwarding
 * Banner default value should be "none"

Comment 5 Stanislav Zidek 2015-05-13 13:13:20 UTC
My findings show that there are two options not dumped by sshd -T:
* allowagentforwarding
* banner

Surprisingly (for me), authenticationmethods IS dumped.

(tested with openssh-6.6.1p1-13.el7.x86_64)

Comment 6 Jakub Jelen 2015-05-14 08:31:44 UTC
Thanks. You are right. I got this fix overwritten by other changes and didn't notice it.

Authenticationmethods was dumped because it was missing one patch from upstream, which prevents printing empty options (invalid input for config):

diff --git a/servconf.c b/servconf.c
index ad5869b..1171c33 100644
--- a/servconf.c
+++ b/servconf.c
@@ -1990,6 +1990,8 @@ dump_cfg_strarray_oneline(ServerOpCodes code, u_int count, char **vals)
 {
 	u_int i;
 
+	if (count <= 0)
+		return;
 	printf("%s", lookup_opcode_name(code));
 	for (i = 0; i < count; i++)
 		printf(" %s",  vals[i]);

I will not be dumped with next build. The problem with default value was reported upstream as 2398 [1] and if there will be some resolution in the near future, I will report back.

[1] https://bugzilla.mindrot.org/show_bug.cgi?id=2398

Comment 10 errata-xmlrpc 2015-11-19 08:02:48 UTC
Since the problem described in this bug report should be
resolved in a recent advisory, it has been closed with a
resolution of ERRATA.

For information on the advisory, and where to find the updated
files, follow the link below.

If the solution does not work for you, open a new bug report.

https://rhn.redhat.com/errata/RHSA-2015-2088.html


Note You need to log in before you can comment on or make changes to this bug.