summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2002-07-09 19:11:26 +0000
committerTim Potter <tpot@samba.org>2002-07-09 19:11:26 +0000
commitd2707f105989730c7c995e440d2355a274e8daa3 (patch)
tree396454f7b5d92cd4840122fa93446eaefbf72134 /source3
parent5ae8fa2df1e4e9b40200869ed946f3c8b9e4f2b3 (diff)
downloadsamba-d2707f105989730c7c995e440d2355a274e8daa3.tar.gz
samba-d2707f105989730c7c995e440d2355a274e8daa3.tar.bz2
samba-d2707f105989730c7c995e440d2355a274e8daa3.zip
Added -I option to rpcclient.
(This used to be commit 2674adf1b5c54da03e8a445ec1e12d382294d1c1)
Diffstat (limited to 'source3')
-rw-r--r--source3/rpcclient/rpcclient.c32
1 files changed, 20 insertions, 12 deletions
diff --git a/source3/rpcclient/rpcclient.c b/source3/rpcclient/rpcclient.c
index 3ef5da1fef..a62c3d8365 100644
--- a/source3/rpcclient/rpcclient.c
+++ b/source3/rpcclient/rpcclient.c
@@ -578,15 +578,16 @@ static void usage(void)
{
printf("Usage: rpcclient [options] server\n");
- printf("\t-A or --authfile authfile file containing user credentials\n");
- printf("\t-c or --command \"command string\" execute semicolon separated cmds\n");
- printf("\t-d or --debug debuglevel set the debuglevel\n");
- printf("\t-l or --logfile logfile logfile to use instead of stdout\n");
+ printf("\t-A or --authfile authfile File containing user credentials\n");
+ printf("\t-c or --command \"command string\" Execute semicolon separated cmds\n");
+ printf("\t-d or --debug debuglevel Set the debuglevel\n");
+ printf("\t-l or --logfile logfile Logfile to use instead of stdout\n");
printf("\t-h or --help Print this help message.\n");
- printf("\t-N or --nopass don't ask for a password\n");
- printf("\t-s or --conf configfile specify an alternative config file\n");
- printf("\t-U or --user username set the network username\n");
- printf("\t-W or --workgroup domain set the domain name for user account\n");
+ printf("\t-N or --nopass Don't ask for a password\n");
+ printf("\t-s or --conf configfile Specify an alternative config file\n");
+ printf("\t-U or --user username Set the network username\n");
+ printf("\t-W or --workgroup domain Set the domain name for user account\n");
+ printf("\t-I or --dest-ip ip Specify destination IP address\n");
printf("\n");
}
@@ -609,7 +610,8 @@ static void usage(void)
*opt_username=NULL,
*opt_domain=NULL,
*opt_configfile=NULL,
- *opt_logfile=NULL;
+ *opt_logfile=NULL,
+ *opt_ipaddr=NULL;
static int opt_debuglevel;
pstring logfile;
struct cmd_set **cmd_set;
@@ -631,7 +633,8 @@ static void usage(void)
{"command", 'c', POPT_ARG_STRING, &cmdstr},
{"logfile", 'l', POPT_ARG_STRING, &opt_logfile, 'l'},
{"help", 'h', POPT_ARG_NONE, 0, 'h'},
- { 0, 0, 0, 0}
+ {"dest-ip", 'I', POPT_ARG_STRING, &opt_ipaddr, 'I'},
+ { NULL }
};
@@ -688,7 +691,12 @@ static void usage(void)
}
break;
}
-
+ case 'I':
+ if (!inet_aton(opt_ipaddr, &server_ip)) {
+ fprintf(stderr, "%s not a valid IP address\n",
+ opt_ipaddr);
+ return 1;
+ }
case 'W':
pstrcpy(domain, opt_domain);
break;
@@ -733,7 +741,7 @@ static void usage(void)
/* Resolve the IP address */
- if (!resolve_name(server, &server_ip, 0x20)) {
+ if (!opt_ipaddr && !resolve_name(server, &server_ip, 0x20)) {
DEBUG(1,("Unable to resolve %s\n", server));
return 1;
}