| 1 | /*
|
|---|
| 2 | Samba Unix/Linux SMB client library
|
|---|
| 3 | net help commands
|
|---|
| 4 | Copyright (C) 2002 Jim McDonough ([email protected])
|
|---|
| 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 |
|
|---|