diff -u -r --new-file --exclude .svn --exclude CVS samba-3.4.0pre1//docs/htmldocs/manpages/idmap_rid.8.html samba-3.4.0pre2//docs/htmldocs/manpages/idmap_rid.8.html --- samba-3.4.0pre1//docs/htmldocs/manpages/idmap_rid.8.html 2009-04-30 10:05:49.000000000 +0200 +++ samba-3.4.0pre2//docs/htmldocs/manpages/idmap_rid.8.html 2009-06-02 09:45:44.000000000 +0200 @@ -23,7 +23,7 @@ ID = RID - BASE_RID + LOW_RANGE_ID.
- Correspondingly, the formula for calculationg the RID for a + Correspondingly, the formula for calculating the RID for a given Unix ID is this:
RID = ID + BASE_RID - LOW_RANGE_ID. diff -u -r --new-file --exclude .svn --exclude CVS samba-3.4.0pre1//docs/htmldocs/manpages/net.8.html samba-3.4.0pre2//docs/htmldocs/manpages/net.8.html --- samba-3.4.0pre1//docs/htmldocs/manpages/net.8.html 2009-04-30 10:06:06.000000000 +0200 +++ samba-3.4.0pre2//docs/htmldocs/manpages/net.8.html 2009-06-02 09:46:01.000000000 +0200 @@ -447,22 +447,53 @@
| net eventlog dump - Dump a eventlog *.evt file on the screen. |
| net eventlog import - Import a eventlog *.evt into the samba internal tdb based representation of eventlogs. |
| net eventlog export - Export the samba internal tdb based representation of eventlogs into an eventlog *.evt file. |
-
+
filename eventlog
Imports a eventlog *.evt file defined by filename into the
samba internal tdb representation of eventlog defined by eventlog.
eventlog needs to part of the eventlog list
defined in smb.conf.
See the smb.conf(5) manpage for details.
-
filename eventlog
Exports the samba internal tdb representation of eventlog defined by eventlog
to a eventlog *.evt file defined by filename.
eventlog needs to part of the eventlog list
defined in smb.conf.
See the smb.conf(5) manpage for details.
-
Starting with version 3.2.0 Samba has support for remote join and unjoin APIs, both client and server-side. Windows supports remote join capabilities since Windows 2000. +
In order for Samba to be joined or unjoined remotely an account must be used that is either member of the Domain Admins group, a member of the local Administrators group or a user that is granted the SeMachineAccountPrivilege privilege. +
The client side support for remote join is implemented in the net dom commands which are: +
| net dom join - Join a remote computer into a domain. |
| net dom unjoin - Unjoin a remote computer from a domain. |
| net dom renamecomputer - Renames a remote computer joined to a domain. |
+
domain=DOMAIN ou=OU account=ACCOUNT password=PASSWORD reboot+Joins a computer into a domain. This command supports the following additional parameters: +
DOMAIN can be a NetBIOS domain name (also known as short domain name) or a DNS domain name for Active Directory Domains. As in Windows, it is also possible to control which Domain Controller to use. This can be achieved by appending the DC name using the \ separator character. Example: MYDOM\MYDC. The DOMAIN parameter cannot be NULL.
OU can be set to a RFC 1779 LDAP DN, like ou=mymachines,cn=Users,dc=example,dc=com in order to create the machine account in a non-default LDAP containter. This optional parameter is only supported when joining Active Directory Domains.
ACCOUNT defines a domain account that will be used to join the machine to the domain. This domain account needs to have sufficient privileges to join machines.
PASSWORD defines the password for the domain account defined with ACCOUNT.
REBOOT is an optional parameter that can be set to reboot the remote machine after successful join to the domain.
+Note that you also need to use standard net paramters to connect and authenticate to the remote machine that you want to join. These additional parameters include: -S computer and -U user. +
+ Example: + net dom join -S xp -U XP\\administrator%secret domain=MYDOM account=MYDOM\\administrator password=topsecret reboot. +
+This example would connect to a computer named XP as the local administrator using password secret, and join the computer into a domain called MYDOM using the MYDOM domain administrator account and password topsecret. After successful join, the computer would reboot. +
account=ACCOUNT password=PASSWORD reboot+Unjoins a computer from a domain. This command supports the following additional parameters: +
ACCOUNT defines a domain account that will be used to unjoin the machine from the domain. This domain account needs to have sufficient privileges to unjoin machines.
PASSWORD defines the password for the domain account defined with ACCOUNT.
REBOOT is an optional parameter that can be set to reboot the remote machine after successful unjoin from the domain.
+Note that you also need to use standard net paramters to connect and authenticate to the remote machine that you want to unjoin. These additional parameters include: -S computer and -U user. +
+ Example: + net dom unjoin -S xp -U XP\\administrator%secret account=MYDOM\\administrator password=topsecret reboot. +
+This example would connect to a computer named XP as the local administrator using password secret, and unjoin the computer from the domain using the MYDOM domain administrator account and password topsecret. After successful unjoin, the computer would reboot. +
newname=NEWNAME account=ACCOUNT password=PASSWORD reboot+Renames a computer that is joined to a domain. This command supports the following additional parameters: +
NEWNAME defines the new name of the machine in the domain.
ACCOUNT defines a domain account that will be used to rename the machine in the domain. This domain account needs to have sufficient privileges to rename machines.
PASSWORD defines the password for the domain account defined with ACCOUNT.
REBOOT is an optional parameter that can be set to reboot the remote machine after successful rename in the domain.
+Note that you also need to use standard net paramters to connect and authenticate to the remote machine that you want to rename in the domain. These additional parameters include: -S computer and -U user. +
+ Example: + net dom renamecomputer -S xp -U XP\\administrator%secret newname=XPNEW account=MYDOM\\administrator password=topsecret reboot. +
+This example would connect to a computer named XP as the local administrator using password secret, and rename the joined computer to XPNEW using the MYDOM domain administrator account and password topsecret. After successful rename, the computer would reboot. +