Symbol: SSHCFG_ALL
crypto/openssh/servconf.c
593
{ "pamservicename", sPAMServiceName, SSHCFG_ALL },
crypto/openssh/servconf.c
596
{ "pamservicename", sUnsupported, SSHCFG_ALL },
crypto/openssh/servconf.c
609
{ "permitrootlogin", sPermitRootLogin, SSHCFG_ALL },
crypto/openssh/servconf.c
611
{ "loglevel", sLogLevel, SSHCFG_ALL },
crypto/openssh/servconf.c
612
{ "logverbose", sLogVerbose, SSHCFG_ALL },
crypto/openssh/servconf.c
614
{ "rhostsrsaauthentication", sDeprecated, SSHCFG_ALL },
crypto/openssh/servconf.c
615
{ "hostbasedauthentication", sHostbasedAuthentication, SSHCFG_ALL },
crypto/openssh/servconf.c
616
{ "hostbasedusesnamefrompacketonly", sHostbasedUsesNameFromPacketOnly, SSHCFG_ALL },
crypto/openssh/servconf.c
617
{ "hostbasedacceptedalgorithms", sHostbasedAcceptedAlgorithms, SSHCFG_ALL },
crypto/openssh/servconf.c
618
{ "hostbasedacceptedkeytypes", sHostbasedAcceptedAlgorithms, SSHCFG_ALL }, /* obsolete */
crypto/openssh/servconf.c
620
{ "rsaauthentication", sDeprecated, SSHCFG_ALL },
crypto/openssh/servconf.c
621
{ "pubkeyauthentication", sPubkeyAuthentication, SSHCFG_ALL },
crypto/openssh/servconf.c
622
{ "pubkeyacceptedalgorithms", sPubkeyAcceptedAlgorithms, SSHCFG_ALL },
crypto/openssh/servconf.c
623
{ "pubkeyacceptedkeytypes", sPubkeyAcceptedAlgorithms, SSHCFG_ALL }, /* obsolete */
crypto/openssh/servconf.c
624
{ "pubkeyauthoptions", sPubkeyAuthOptions, SSHCFG_ALL },
crypto/openssh/servconf.c
627
{ "kerberosauthentication", sKerberosAuthentication, SSHCFG_ALL },
crypto/openssh/servconf.c
636
{ "kerberosauthentication", sUnsupported, SSHCFG_ALL },
crypto/openssh/servconf.c
644
{ "gssapiauthentication", sGssAuthentication, SSHCFG_ALL },
crypto/openssh/servconf.c
648
{ "gssapiauthentication", sUnsupported, SSHCFG_ALL },
crypto/openssh/servconf.c
652
{ "passwordauthentication", sPasswordAuthentication, SSHCFG_ALL },
crypto/openssh/servconf.c
653
{ "kbdinteractiveauthentication", sKbdInteractiveAuthentication, SSHCFG_ALL },
crypto/openssh/servconf.c
654
{ "challengeresponseauthentication", sKbdInteractiveAuthentication, SSHCFG_ALL }, /* alias */
crypto/openssh/servconf.c
655
{ "skeyauthentication", sKbdInteractiveAuthentication, SSHCFG_ALL }, /* alias */
crypto/openssh/servconf.c
665
{ "ignorerhosts", sIgnoreRhosts, SSHCFG_ALL },
crypto/openssh/servconf.c
667
{ "x11forwarding", sX11Forwarding, SSHCFG_ALL },
crypto/openssh/servconf.c
668
{ "x11displayoffset", sX11DisplayOffset, SSHCFG_ALL },
crypto/openssh/servconf.c
669
{ "x11uselocalhost", sX11UseLocalhost, SSHCFG_ALL },
crypto/openssh/servconf.c
672
{ "permitemptypasswords", sEmptyPasswd, SSHCFG_ALL },
crypto/openssh/servconf.c
676
{ "rekeylimit", sRekeyLimit, SSHCFG_ALL },
crypto/openssh/servconf.c
679
{ "allowtcpforwarding", sAllowTcpForwarding, SSHCFG_ALL },
crypto/openssh/servconf.c
680
{ "allowagentforwarding", sAllowAgentForwarding, SSHCFG_ALL },
crypto/openssh/servconf.c
681
{ "allowusers", sAllowUsers, SSHCFG_ALL },
crypto/openssh/servconf.c
682
{ "denyusers", sDenyUsers, SSHCFG_ALL },
crypto/openssh/servconf.c
683
{ "allowgroups", sAllowGroups, SSHCFG_ALL },
crypto/openssh/servconf.c
684
{ "denygroups", sDenyGroups, SSHCFG_ALL },
crypto/openssh/servconf.c
688
{ "gatewayports", sGatewayPorts, SSHCFG_ALL },
crypto/openssh/servconf.c
689
{ "subsystem", sSubsystem, SSHCFG_ALL },
crypto/openssh/servconf.c
695
{ "maxauthtries", sMaxAuthTries, SSHCFG_ALL },
crypto/openssh/servconf.c
696
{ "maxsessions", sMaxSessions, SSHCFG_ALL },
crypto/openssh/servconf.c
697
{ "banner", sBanner, SSHCFG_ALL },
crypto/openssh/servconf.c
701
{ "clientaliveinterval", sClientAliveInterval, SSHCFG_ALL },
crypto/openssh/servconf.c
702
{ "clientalivecountmax", sClientAliveCountMax, SSHCFG_ALL },
crypto/openssh/servconf.c
703
{ "authorizedkeysfile", sAuthorizedKeysFile, SSHCFG_ALL },
crypto/openssh/servconf.c
704
{ "authorizedkeysfile2", sDeprecated, SSHCFG_ALL },
crypto/openssh/servconf.c
706
{ "acceptenv", sAcceptEnv, SSHCFG_ALL },
crypto/openssh/servconf.c
707
{ "setenv", sSetEnv, SSHCFG_ALL },
crypto/openssh/servconf.c
708
{ "permittunnel", sPermitTunnel, SSHCFG_ALL },
crypto/openssh/servconf.c
709
{ "permittty", sPermitTTY, SSHCFG_ALL },
crypto/openssh/servconf.c
710
{ "permituserrc", sPermitUserRC, SSHCFG_ALL },
crypto/openssh/servconf.c
711
{ "match", sMatch, SSHCFG_ALL },
crypto/openssh/servconf.c
712
{ "permitopen", sPermitOpen, SSHCFG_ALL },
crypto/openssh/servconf.c
713
{ "permitlisten", sPermitListen, SSHCFG_ALL },
crypto/openssh/servconf.c
714
{ "forcecommand", sForceCommand, SSHCFG_ALL },
crypto/openssh/servconf.c
715
{ "chrootdirectory", sChrootDirectory, SSHCFG_ALL },
crypto/openssh/servconf.c
717
{ "revokedkeys", sRevokedKeys, SSHCFG_ALL },
crypto/openssh/servconf.c
718
{ "trustedusercakeys", sTrustedUserCAKeys, SSHCFG_ALL },
crypto/openssh/servconf.c
719
{ "authorizedprincipalsfile", sAuthorizedPrincipalsFile, SSHCFG_ALL },
crypto/openssh/servconf.c
721
{ "include", sInclude, SSHCFG_ALL },
crypto/openssh/servconf.c
722
{ "ipqos", sIPQoS, SSHCFG_ALL },
crypto/openssh/servconf.c
723
{ "authorizedkeyscommand", sAuthorizedKeysCommand, SSHCFG_ALL },
crypto/openssh/servconf.c
724
{ "authorizedkeyscommanduser", sAuthorizedKeysCommandUser, SSHCFG_ALL },
crypto/openssh/servconf.c
725
{ "authorizedprincipalscommand", sAuthorizedPrincipalsCommand, SSHCFG_ALL },
crypto/openssh/servconf.c
726
{ "authorizedprincipalscommanduser", sAuthorizedPrincipalsCommandUser, SSHCFG_ALL },
crypto/openssh/servconf.c
728
{ "authenticationmethods", sAuthenticationMethods, SSHCFG_ALL },
crypto/openssh/servconf.c
729
{ "streamlocalbindmask", sStreamLocalBindMask, SSHCFG_ALL },
crypto/openssh/servconf.c
730
{ "streamlocalbindunlink", sStreamLocalBindUnlink, SSHCFG_ALL },
crypto/openssh/servconf.c
731
{ "allowstreamlocalforwarding", sAllowStreamLocalForwarding, SSHCFG_ALL },
crypto/openssh/servconf.c
733
{ "disableforwarding", sDisableForwarding, SSHCFG_ALL },
crypto/openssh/servconf.c
734
{ "exposeauthinfo", sExposeAuthInfo, SSHCFG_ALL },
crypto/openssh/servconf.c
735
{ "rdomain", sRDomain, SSHCFG_ALL },
crypto/openssh/servconf.c
736
{ "casignaturealgorithms", sCASignatureAlgorithms, SSHCFG_ALL },
crypto/openssh/servconf.c
738
{ "requiredrsasize", sRequiredRSASize, SSHCFG_ALL },
crypto/openssh/servconf.c
739
{ "channeltimeout", sChannelTimeout, SSHCFG_ALL },
crypto/openssh/servconf.c
740
{ "unusedconnectiontimeout", sUnusedConnectionTimeout, SSHCFG_ALL },