~zulcss/samba/server-dailies-3.4

« back to all changes in this revision

Viewing changes to source3/utils/net_help_common.c

  • Committer: Chuck Short
  • Date: 2010-09-28 20:38:39 UTC
  • Revision ID: zulcss@ubuntu.com-20100928203839-pgjulytsi9ue63x1
Initial version

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
   Samba Unix/Linux SMB client library
 
3
   net help commands
 
4
   Copyright (C) 2002 Jim McDonough (jmcd@us.ibm.com)
 
5
 
 
6
   This program is free software; you can redistribute it and/or modify
 
7
   it under the terms of the GNU General Public License as published by
 
8
   the Free Software Foundation; either version 3 of the License, or
 
9
   (at your option) any later version.
 
10
 
 
11
   This program is distributed in the hope that it will be useful,
 
12
   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
   GNU General Public License for more details.
 
15
 
 
16
   You should have received a copy of the GNU General Public License
 
17
   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
18
*/
 
19
 
 
20
#include "includes.h"
 
21
#include "utils/net.h"
 
22
 
 
23
int net_common_methods_usage(struct net_context *c, int argc, const char**argv)
 
24
{
 
25
        d_printf("Valid methods: (auto-detected if not specified)\n");
 
26
        d_printf("\tads\t\t\t\tActive Directory (LDAP/Kerberos)\n");
 
27
        d_printf("\trpc\t\t\t\tDCE-RPC\n");
 
28
        d_printf("\trap\t\t\t\tRAP (older systems)\n");
 
29
        d_printf("\n");
 
30
        return 0;
 
31
}
 
32
 
 
33
int net_common_flags_usage(struct net_context *c, int argc, const char **argv)
 
34
{
 
35
        d_printf("Valid targets: choose one (none defaults to localhost)\n");
 
36
        d_printf("\t-S or --server=<server>\t\tserver name\n");
 
37
        d_printf("\t-I or --ipaddress=<ipaddr>\taddress of target server\n");
 
38
        d_printf("\t-w or --workgroup=<wg>\t\ttarget workgroup or domain\n");
 
39
 
 
40
        d_printf("\n");
 
41
        d_printf("Valid miscellaneous options are:\n"); /* misc options */
 
42
        d_printf("\t-p or --port=<port>\t\tconnection port on target\n");
 
43
        d_printf("\t-W or --myworkgroup=<wg>\tclient workgroup\n");
 
44
        d_printf("\t-d or --debuglevel=<level>\tdebug level (0-10)\n");
 
45
        d_printf("\t-n or --myname=<name>\t\tclient name\n");
 
46
        d_printf("\t-U or --user=<name>\t\tuser name\n");
 
47
        d_printf("\t-s or --configfile=<path>\tpathname of smb.conf file\n");
 
48
        d_printf("\t-l or --long\t\t\tDisplay full information\n");
 
49
        d_printf("\t-V or --version\t\t\tPrint samba version information\n");
 
50
        d_printf("\t-P or --machine-pass\t\tAuthenticate as machine account\n");
 
51
        d_printf("\t-e or --encrypt\t\t\tEncrypt SMB transport (UNIX extended servers only)\n");
 
52
        d_printf("\t-k or --kerberos\t\tUse kerberos (active directory) authentication\n");
 
53
        return -1;
 
54
}
 
55