Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Parameter

Default value

Description

encryptionTypes

des-cbc-md5

The encryption types.

primaryRealm

EXAMPLE.COM

The primary realm.

servicePrincipal

kadmin/changepw@EXAMPLE.COM

The service principal name.

allowableClockSkew

5 minutes

The allowable clock skew.

emptyAddressesAllowed

true

Whether tickets issued with empty Host Addresses are allowed.

policyPasswordLength

6 characters

The policy for minimum password length.

policyCategoryCount

3 (out of 4)

The policy for number of character categories required (A - Z), (a - z), (0 - 9), non-alphanumeric (!, $, #, %, ... ).

policyTokenSize

3 characters

The policy for minimum token size. Passwords must not contain tokens larger than 'policyTokenSize' that occur in the user's principal name.

NTP-Specific configuration parameters

The NTP parameters are very limited :

Code Block
xml
xml

  <bean id="ntpConfiguration" class="org.apache.directory.server.ntp.NtpConfiguration">
    <!-- Whether to enable the NTP protocol.                                -->
    <property name="enabled" value="true" />

    <!-- The port to run the NTP protocol on.                               -->
    <property name="ipPort" value="123" />
  </bean>

Here is the table containing the default configuration :

Parameter

Default value

Description

Comments

enabled

true

Tells if the service is on or off

Should be OFF by default

ipPort

123

The default port

Note

Just wanted to know if the UDP and TCP should be enabled or if the server just accept TCP ?

DHCP-Specific configuration parameters

The NTP parameters are very limited :

Code Block
xml
xml

  <bean id="ntpConfiguration" class="org.apache.directory.server.ntp.NtpConfiguration">
    <!-- Whether to enable the NTP protocol.                                -->
    <property name="enabled" value="true" />

    <!-- The port to run the NTP protocol on.                               -->
    <property name="ipPort" value="123" />
  </bean>

Here is the table containing the default configuration :

Parameter

Default value

Description

Comments

enabled

true

Tells if the service is on or off

Should be OFF by default

ipPort

123

The default port

Note

Just wanted to know if the UDP and TCP should be enabled or if the server just accept TCP ?

Server Startup Configuration

...