Ignore:
Timestamp:
Jun 16, 2009, 5:52:30 PM (16 years ago)
Author:
Herwig Bauernfeind
Message:

Update 3.2 to 3.2.12

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/samba-3.2.x/docs-xml/manpages-3/net.8.xml

    r227 r272  
    3636                <arg choice="opt">-d debuglevel</arg>
    3737                <arg choice="opt">-V</arg>
     38                <arg choice="opt">--request-timeout seconds</arg>
    3839        </cmdsynopsis>
    3940</refsynopsisdiv>
     
    123124                <listitem><para>
    124125                Make queries to the external server using the machine account of the local server.
     126                </para></listitem>
     127                </varlistentry>
     128
     129                <varlistentry>
     130                <term>--request-timeout 30</term>
     131                <listitem><para>
     132                Let client requests timeout after 30 seconds the default is 10
     133                seconds.
    125134                </para></listitem>
    126135                </varlistentry>
     
    15611570
    15621571<refsect2>
     1572<title>DOM</title>
     1573
     1574<para>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.
     1575</para>
     1576<para>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.
     1577</para>
     1578
     1579<para>The client side support for remote join is implemented in the net dom commands which are:
     1580<simplelist>
     1581<member>net dom join - Join a remote computer into a domain.</member>
     1582<member>net dom unjoin - Unjoin a remote computer from a domain.</member>
     1583</simplelist>
     1584</para>
     1585
     1586<refsect3>
     1587<title>DOM JOIN <replaceable>domain=DOMAIN</replaceable> <replaceable>ou=OU</replaceable> <replaceable>account=ACCOUNT</replaceable> <replaceable>password=PASSWORD</replaceable> <replaceable>reboot</replaceable></title>
     1588
     1589<para>
     1590Joins a computer into a domain. This command supports the following additional parameters:
     1591</para>
     1592
     1593<itemizedlist>
     1594
     1595<listitem><para><replaceable>DOMAIN</replaceable> 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 <replaceable>DOMAIN</replaceable> parameter cannot be NULL.</para></listitem>
     1596
     1597<listitem><para><replaceable>OU</replaceable> can be set to a RFC 1779 LDAP DN, like <emphasis>ou=mymachines,cn=Users,dc=example,dc=com</emphasis> in order to create the machine account in a non-default LDAP containter. This optional parameter is only supported when joining Active Directory Domains.</para></listitem>
     1598
     1599<listitem><para><replaceable>ACCOUNT</replaceable> 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.</para></listitem>
     1600
     1601<listitem><para><replaceable>PASSWORD</replaceable> defines the password for the domain account defined with <replaceable>ACCOUNT</replaceable>.</para></listitem>
     1602
     1603<listitem><para><replaceable>REBOOT</replaceable> is an optional parameter that can be set to reboot the remote machine after successful join to the domain.</para></listitem>
     1604
     1605</itemizedlist>
     1606
     1607<para>
     1608Note 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.
     1609</para>
     1610<para>
     1611        Example:
     1612        net dom join -S xp -U XP\\administrator%secret domain=MYDOM account=MYDOM\\administrator password=topsecret reboot.
     1613</para>
     1614<para>
     1615This 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.
     1616</para>
     1617
     1618</refsect3>
     1619
     1620<refsect3>
     1621<title>DOM UNJOIN <replaceable>account=ACCOUNT</replaceable> <replaceable>password=PASSWORD</replaceable> <replaceable>reboot</replaceable></title>
     1622
     1623<para>
     1624Unjoins a computer from a domain. This command supports the following additional parameters:
     1625</para>
     1626
     1627<itemizedlist>
     1628
     1629<listitem><para><replaceable>ACCOUNT</replaceable> 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.</para></listitem>
     1630
     1631<listitem><para><replaceable>PASSWORD</replaceable> defines the password for the domain account defined with <replaceable>ACCOUNT</replaceable>.</para></listitem>
     1632
     1633<listitem><para><replaceable>REBOOT</replaceable> is an optional parameter that can be set to reboot the remote machine after successful unjoin from the domain.</para></listitem>
     1634
     1635</itemizedlist>
     1636
     1637<para>
     1638Note 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.
     1639</para>
     1640<para>
     1641        Example:
     1642        net dom unjoin -S xp -U XP\\administrator%secret account=MYDOM\\administrator password=topsecret reboot.
     1643</para>
     1644<para>
     1645This 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.
     1646</para>
     1647
     1648</refsect3>
     1649
     1650</refsect2>
     1651
     1652<refsect2>
     1653
    15631654<title>HELP [COMMAND]</title>
    15641655
Note: See TracChangeset for help on using the changeset viewer.