1 .\" -*- tab-width: 4 -*-
3 .\" Copyright (c) 2004 Apple Computer, Inc. All Rights Reserved.
5 .\" Licensed under the Apache License, Version 2.0 (the "License");
6 .\" you may not use this file except in compliance with the License.
7 .\" You may obtain a copy of the License at
9 .\" http://www.apache.org/licenses/LICENSE-2.0
11 .\" Unless required by applicable law or agreed to in writing, software
12 .\" distributed under the License is distributed on an "AS IS" BASIS,
13 .\" WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 .\" See the License for the specific language governing permissions and
15 .\" limitations under the License.
17 .Dd April 2004 \" Date
18 .Dt mDNS 1 \" Document Title
19 .Os Darwin \" Operating System
23 .Nd Multicast DNS (mDNS) & DNS Service Discovery (DNS-SD) Test Tool \" For whatis
26 .Nm Fl R Ar name type domain port Op Ar key=value ...
28 .Nm Fl B Ar type domain
30 .Nm Fl L Ar name type domain
35 command is a network diagnostic tool, much like
39 However, unlike those tools, most of its functionality is not implemented in the
41 executable itself, but in library code that is available to any application.
45 .Pa /usr/include/DNSServiceDiscovery/DNSServiceDiscovery.h .
46 Note that this Mach-based API, first introduced in Mac OS X 10.2,
47 is now deprecated in favour of the newer
48 .Pa /usr/include/dns_sd.h
49 API, which is built on Unix Domain Sockets and is supported on
51 The command-line tool to exercise the cross-platform
58 command is primarily intended for interactive use.
59 Because its command-line arguments and output format are subject to change,
60 invoking it from a shell script will generally be fragile. Additionally,
61 the asynchronous nature of DNS Service Discovery does
62 not lend itself easily to script-oriented programming. For example,
63 calls like "browse" never complete; the action of performing a "browse"
64 sets in motion machinery to notify the client whenever instances of
65 that service type appear or disappear from the network. These
66 notifications continue to be delivered indefinitely, for minutes,
67 hours, or even days, as services come and go, until the client
68 explicitly terminates the call. This style of asynchronous interaction
69 works best with applications that are either multi-threaded, or use a
70 main event-handling loop to receive keystrokes, network data, and other
71 asynchronous event notifications as they happen.
73 If you wish to perform DNS Service Discovery operations from a
74 scripting language, then the best way to do this is not to execute the
76 command and then attempt to decipher the textual output, but instead to
77 directly call the DNS-SD APIs using a binding for your chosen language.
79 For example, if you are programming in Ruby, then you can
80 directly call DNS-SD APIs using the dnssd package documented at
81 .Pa <http://rubyforge.org/projects/dnssd/> .
83 Similar bindings for other languages are also in development.
86 .It Nm Fl R Ar name type domain port Op Ar key=value ...
87 register (advertise) a service in the specified
93 as listening (on the current machine) on
97 can be arbitrary unicode text, containing any legal unicode characters
98 (including dots, spaces, slashes, colons, etc. without restriction),
99 up to 63 UTF-8 bytes long.
101 must be of the form "_app-proto._tcp" or "_app-proto._udp", where
102 "app-proto" is an application protocol name registered at
103 .Pa http://www.dns-sd.org/ServiceTypes.html .
106 is the domain in which to register the service.
107 In current implementations, only the local multicast domain "local" is
108 supported. In the future, registering will be supported in any arbitrary
109 domain that has a working DNS Update server [RFC 2136]. The
111 "." is a synonym for "pick a sensible default" which today
115 is a number from 0 to 65535, and is the TCP or UDP port number upon
116 which the service is listening.
118 Additional attributes of the service may optionally be described by
119 key/value pairs, which are stored in the advertised service's DNS TXT
120 record. Allowable keys and values are listed with the service
122 .Pa http://www.dns-sd.org/ServiceTypes.html .
123 .It Nm Fl B Ar type domain
124 browse for instances of service
132 .Pa http://www.dns-sd.org/ServiceTypes.html
133 as described above. Omitting the
135 or using "." means "pick a sensible default."
136 .It Nm Fl L Ar name type domain
137 look up and display the information necessary to contact and use the
138 named service: the hostname of the machine where that service is
139 available, the port number on which the service is listening, and (if
140 present) TXT record attributes describing properties of the service.
142 Note that in a typical application, browsing happens rarely, while lookup
143 (or "resolving") happens every time the service is used. For example, a
144 user browses the network to pick a default printer fairly rarely, but once
145 a default printer has been picked, that named service is resolved to its
146 current IP address and port number every time the user presses Cmd-P to
151 To advertise the existence of LPR printing service on port 515 on this
152 machine, such that it will be discovered by the Mac OS X printing software
153 and other DNS-SD compatible printing clients, use:
155 .Dl Nm Fl R Ns \ \&"My Test\&" _printer._tcp. \&. 515 pdl=application/postscript
157 For this registration to be useful, you need to actually have LPR service
158 available on port 515. Advertising a service that does not exist is not
159 very useful, and will be confusing and annoying to other people on the
162 Similarly, to advertise a web page being served by an HTTP
163 server on port 80 on this machine, such that it will show up in the
164 Bonjour list in Safari and other DNS-SD compatible Web clients, use:
166 .Dl Nm Fl R Ns \ \&"My Test\&" _http._tcp \&. 80 path=/path-to-page.html
168 To find the advertised web pages on the local network (the same list that
171 .Dl Nm Fl B Ns \ _http._tcp
173 While that command is running, in another window, try the
175 example given above to advertise a web page, and you should see the
176 "Add" event reported to the
178 window. Now press Ctrl-C in the
180 window and you should see the "Remove" event reported to the
185 .Pa /usr/bin/mDNS \" Pathname
193 bugs are tracked in Apple Radar component "mDNSResponder".
198 command first appeared in Mac OS X 10.3 (Panther).