diff options
author | Eloy Paris <peloy@samba.org> | 1998-10-17 03:01:07 +0000 |
---|---|---|
committer | Eloy Paris <peloy@samba.org> | 1998-10-17 03:01:07 +0000 |
commit | 676cac1e42ecbc30fe6ded64751163c1c33466d1 (patch) | |
tree | 790bd10d1068b7547054b7c37e9b1ef1121ca1d4 /docs | |
parent | 4e621f638a91e13f65a81f880912c11f77385d0f (diff) | |
download | samba-676cac1e42ecbc30fe6ded64751163c1c33466d1.tar.gz samba-676cac1e42ecbc30fe6ded64751163c1c33466d1.tar.bz2 samba-676cac1e42ecbc30fe6ded64751163c1c33466d1.zip |
Added man page for nmblookup(1)
(This used to be commit 69c7b8e2af225f3711d601a136ad3dbc9aaa476e)
Diffstat (limited to 'docs')
-rw-r--r-- | docs/manpages/nmblookup.1 | 126 |
1 files changed, 126 insertions, 0 deletions
diff --git a/docs/manpages/nmblookup.1 b/docs/manpages/nmblookup.1 new file mode 100644 index 0000000000..50cbbe2c2d --- /dev/null +++ b/docs/manpages/nmblookup.1 @@ -0,0 +1,126 @@ +.TH NMBLOOKUP 1 "09 Oct 1998" "nmblookup 2.0.0-alpha11" +.SH NAME +nmblookup \- NBT client used to lookup netbios names +.SH SYNOPSIS +.B nmblookup +[ +.B \-M +] [ +.B \-R +] [ +.B \-S +] [ +.B \-r +] [ +.B \-A +] [ +.B \-B +.I broadcast address +] [ +.B \-U +.I unicast address +] [ +.B \-d +.I debuglevel +] +.B name +.SH DESCRIPTION +This program is part of the Samba suite. + +.B nmblookup +is used to find out NetBIOS names in a network. +.SH OPTIONS +.B \-d +.I debuglevel + +.RS 3 +This option sets the debug level. See +.BR smb.conf (5). +.RE + +.B \-B +.I broadcast address +.RS 3 + +Send the query to the broadcast address +.I broadcast address. +The default behavior of nmblookup is to send the query to the broadcast +address of the primary network interface. +.RE + +.B \-U +.I unicast address +.RS 3 + +Do a unicast query to the specified address or host +.I unicast address. +This is needed to query a WINS server. +.RE + +.B \-M + +.RS 3 +Searches for a master browser. +.RE + +.B \-R + +.RS 3 +Do a recursive lookup (needed to direct the query to the WINS portion +of the server rather than the broadcast portion.) + +.RE + +.B \-S + +.RS 3 +Lookup node status as well. +.RE + +.B \-r + +.RS 3 +Use root port 137 (Win95 only replies to this.) +.RE + +.B \-A + +.RS 3 +Do a node status on <name> as an IP Address. +.RE + +.SH EXAMPLES + +.B nmblookup +can be used to query a WINS server (in the same way +.B nslookup +is used to query DNS servers). To query a WINS server, +.B nmblookup +must be called like this: + +.B nmblookup +-U server -R 'query' + +For example, running ' +.B nmblookup +-U samba.anu.edu.au -R IRIX#1B' would query the WINS server +samba.anu.edu.au for the domain master browser (1B name) for the +IRIX workgroup. + +.SH VERSION + +This man page is (mostly) correct for version 1.9.16 of the Samba +suite, plus some of the recent patches to it. These notes will +necessarily lag behind development of the software, so it is possible +that your version of the server has extensions or parameter semantics +that differ from or are not covered by this man page. Please notify +these to the address below for rectification. +.SH SEE ALSO +.BR samba (8), +.BR nmbd (8), +.BR smb.conf (5) +.SH CREDITS +The original Samba software and related utilities were created by +Andrew Tridgell (samba-bugs@samba.anu.edu.au). Andrew is also the Keeper +of the Source for this project. + |