您可以使用 DSCC 執行此作業。如需相關資訊,請參閱目錄服務控制中心介面與 DSCC 線上說明。
尋找目錄代理伺服器目前的配置。
$ dpconf get-server-prop -h host -p port |
allow-cert-based-auth : allow
allow-ldapv2-clients : true
allow-persistent-searches : false
allow-sasl-external-authentication : true
allow-unauthenticated-operations : true
allowed-ldap-controls : -
cert-data-view-routing-custom-list : none
cert-data-view-routing-policy : all-routable
cert-search-attr-mappings : none
cert-search-base-dn : none
cert-search-bind-dn : none
cert-search-bind-pwd : none
cert-search-user-attr : userCertificate
configuration-manager-bind-dn : cn=proxy manager
configuration-manager-bind-pwd : {3DES}RPdIFbvoWdvhLR8lU43zCMZyKFGPxfFg
connection-pool-wait-timeout : 3s
data-source-read-timeout : 20s
data-view-automatic-routing-mode : automatic
email-alerts-enabled : false
email-alerts-message-from-address : local
email-alerts-message-subject : Proxy Server Administrative Alert
email-alerts-message-subject-includes-alert-code : false
email-alerts-message-to-address : root@localhost
email-alerts-smtp-host : localhost
email-alerts-smtp-port : smtp
enable-remote-user-mapping : false
enable-user-mapping : false
enabled-admin-alerts : none
enabled-ssl-cipher-suites : JRE
enabled-ssl-protocols : SSLv3
enabled-ssl-protocols : TLSv1
encrypt-configuration : true
extension-jar-file-url : none
is-restart-required : false
number-of-search-threads : 20
number-of-worker-threads : 50
proxied-auth-check-timeout : 30m
remote-user-mapping-bind-dn-attr : none
scriptable-alerts-command : echo
scriptable-alerts-enabled : false
search-mode : parallel
search-wait-timeout : 10s
ssl-client-cert-alias : none
ssl-server-cert-alias : defaultServerCert
supported-ssl-cipher-suites : SSL_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA
supported-ssl-cipher-suites : SSL_DHE_DSS_WITH_3DES_EDE_CBC_SHA
supported-ssl-cipher-suites : SSL_DHE_DSS_WITH_DES_CBC_SHA
supported-ssl-cipher-suites : SSL_DHE_RSA_EXPORT_WITH_DES40_CBC_SHA
supported-ssl-cipher-suites : SSL_DHE_RSA_WITH_3DES_EDE_CBC_SHA
supported-ssl-cipher-suites : SSL_DHE_RSA_WITH_DES_CBC_SHA
supported-ssl-cipher-suites : SSL_DH_anon_EXPORT_WITH_DES40_CBC_SHA
supported-ssl-cipher-suites : SSL_DH_anon_EXPORT_WITH_RC4_40_MD5
supported-ssl-cipher-suites : SSL_DH_anon_WITH_3DES_EDE_CBC_SHA
supported-ssl-cipher-suites : SSL_DH_anon_WITH_DES_CBC_SHA
supported-ssl-cipher-suites : SSL_DH_anon_WITH_RC4_128_MD5
supported-ssl-cipher-suites : SSL_RSA_EXPORT_WITH_DES40_CBC_SHA
supported-ssl-cipher-suites : SSL_RSA_EXPORT_WITH_RC4_40_MD5
supported-ssl-cipher-suites : SSL_RSA_WITH_3DES_EDE_CBC_SHA
supported-ssl-cipher-suites : SSL_RSA_WITH_DES_CBC_SHA
supported-ssl-cipher-suites : SSL_RSA_WITH_NULL_MD5
supported-ssl-cipher-suites : SSL_RSA_WITH_NULL_SHA
supported-ssl-cipher-suites : SSL_RSA_WITH_RC4_128_MD5
supported-ssl-cipher-suites : SSL_RSA_WITH_RC4_128_SHA
supported-ssl-cipher-suites : TLS_DHE_DSS_WITH_AES_128_CBC_SHA
supported-ssl-cipher-suites : TLS_DHE_RSA_WITH_AES_128_CBC_SHA
supported-ssl-cipher-suites : TLS_DH_anon_WITH_AES_128_CBC_SHA
supported-ssl-cipher-suites : TLS_KRB5_EXPORT_WITH_DES_CBC_40_MD5
supported-ssl-cipher-suites : TLS_KRB5_EXPORT_WITH_DES_CBC_40_SHA
supported-ssl-cipher-suites : TLS_KRB5_EXPORT_WITH_RC4_40_MD5
supported-ssl-cipher-suites : TLS_KRB5_EXPORT_WITH_RC4_40_SHA
supported-ssl-cipher-suites : TLS_KRB5_WITH_3DES_EDE_CBC_MD5
supported-ssl-cipher-suites : TLS_KRB5_WITH_3DES_EDE_CBC_SHA
supported-ssl-cipher-suites : TLS_KRB5_WITH_DES_CBC_MD5
supported-ssl-cipher-suites : TLS_KRB5_WITH_DES_CBC_SHA
supported-ssl-cipher-suites : TLS_KRB5_WITH_RC4_128_MD5
supported-ssl-cipher-suites : TLS_KRB5_WITH_RC4_128_SHA
supported-ssl-cipher-suites : TLS_RSA_WITH_AES_128_CBC_SHA
supported-ssl-protocols : SSLv2Hello
supported-ssl-protocols : SSLv3
supported-ssl-protocols : TLSv1
syslog-alerts-enabled : false
syslog-alerts-facility : USER
syslog-alerts-host : localhost
use-cert-subject-as-bind-dn : true
use-external-schema : false
user-mapping-anonymous-bind-dn : none
user-mapping-anonymous-bind-pwd : none
user-mapping-default-bind-dn : none
user-mapping-default-bind-pwd : none
verify-certs : false
|
$ dpconf get-server-prop -h host -p port property-name ... |
例如,透過執行此指令找出是否允許未認證的作業:
$ dpconf get-server-prop -h host -p port allow-unauthenticated-operations allow-unauthenticated-operations : true |
$ dpconf set-server-prop -h host -p port property:value ... |
例如,透過執行此指令禁止未認證的作業:
$ dpconf set-server-prop -h host -p port allow-unauthenticated-operations:false |
如果嘗試執行非法的變更,便無法完成變更。例如,如果將 allow-unauthenticated-operations 參數設為 f 而非 false,會產生下列錯誤:
$ dpconf set-server-prop -h host -p port allow-unauthenticated-operations:f The value "f" is not a valid value for the property "allow-unauthenticated-operations". Allowed property values: BOOLEAN The "set-server-prop" operation failed. |
請視需要重新啟動目錄代理伺服器實例以使變更生效。
如需有關重新啟動目錄代理伺服器的資訊,請參閱重新啟動目錄代理伺服器。