You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by el...@apache.org on 2012/11/06 05:31:01 UTC

svn commit: r1406038 - /directory/site/trunk/content/apacheds/advanced-ug/2-server-config.mdtext

Author: elecharny
Date: Tue Nov  6 04:31:01 2012
New Revision: 1406038

URL: http://svn.apache.org/viewvc?rev=1406038&view=rev
Log:
More content added

Modified:
    directory/site/trunk/content/apacheds/advanced-ug/2-server-config.mdtext

Modified: directory/site/trunk/content/apacheds/advanced-ug/2-server-config.mdtext
URL: http://svn.apache.org/viewvc/directory/site/trunk/content/apacheds/advanced-ug/2-server-config.mdtext?rev=1406038&r1=1406037&r2=1406038&view=diff
==============================================================================
--- directory/site/trunk/content/apacheds/advanced-ug/2-server-config.mdtext (original)
+++ directory/site/trunk/content/apacheds/advanced-ug/2-server-config.mdtext Tue Nov  6 04:31:01 2012
@@ -104,7 +104,7 @@ First, here is the list of elements that
 
 * DnsServerBean -> DSBasedServerBean
 	
-* KdcServerBean -> DSBasedServerBean
+* [KdcServerBean](#kerberos-server) -> DSBasedServerBean
 	* _long_ krbAllowableClockSkew
 	* _boolean_ krbEmptyAddressesAllowed
 	* _boolean_ krbForwardableAllowed
@@ -243,9 +243,31 @@ As we can see, we can start more than on
 
 There is a distinction though between the servers backed by a Directory Service, and those that aren't (like the HTTP and NTP servers). 
 
+All the servers share some common parameters, which are exposed in the following tables :
+
+| Parameter | AttributeType | type | default value | Description |
+|---|---|---|---|---|
+| searchBaseDn | ads-searchBaseDN | _Dn_ |  | The place were to start looking for authentication informations |
+| serverId | ads-serverId | _String_ |  | The server unique name |
+| transports | ads-transports | _List<TransportBean>_ |  | The transports used by this server |
+
+A server can define more than one transports : for instance, the Kerberos server uses UDP and TCP transports.
+
+Here are the parameters for the Transport structure :
+
+| Parameter | AttributeType | type | default value | Description |
+|---|---|---|---|---|
+| transportId | ads-transportId | _String_ |  | The identification |
+| transportAddress | ads-transportAddress | _String_ |  | The IP Address |
+| systemPort | ads-systemPort | _int_ | -1 | The port |
+| transportEnableSsl | ads-transportEnableSsl | _boolean_ | false | Tells if SSL is activated (not used for UDP) |
+| transportNbThreads | ads-transportNbThreads | _int_ | 3 | he number of dedicated threads to process the messages |
+| transportBackLog | ads-transportBackLog | _int_ | 50 | The number of messages on hold if the server is overloaded (not used for UDP) |
+
+
 #### Ldap Server
 
-Let's start with the main server : the LDAP one. 
+Let's start with the main server : the LDAP server. 
 
 The list of attributes that can be modified is exposed in the following table. 
 
@@ -263,3 +285,7 @@ The list of attributes that can be modif
 | replConsumers | ads-replConsumers | _List<ReplConsumerBean>_ |  | TODO |
 | saslMechHandlers | ads-saslMechHandlers | _List<SaslMechHandlerBean>_ |  | The list of SASL mechanism handlers |
 | extendedOpHandlers | ads-extendedOpHandlers | _List<ExtendedOpHandlerBean>_ |  | The list of extended operation handlers |
+	
+Most of the parameters are 
+
+#### Kerberos Server
\ No newline at end of file