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 "
|
---|
51 | "account\n"));
|
---|
52 | d_printf(_("\t-e or --encrypt\t\t\tEncrypt SMB transport "
|
---|
53 | "(UNIX extended servers only)\n"));
|
---|
54 | d_printf(_("\t-k or --kerberos\t\tUse kerberos (active directory) "
|
---|
55 | "authentication\n"));
|
---|
56 | return -1;
|
---|
57 | }
|
---|
58 |
|
---|