nodemcu-firmware/docs/en/modules/mdns.md

40 lines
1.5 KiB
Markdown
Raw Normal View History

2016-02-24 23:15:28 +01:00
# mDns Module
2016-02-24 23:15:28 +01:00
[Multicast DNS](https://en.wikipedia.org/wiki/Multicast_DNS) is used as part of Bonjour / Zeroconf. This allows system to identify themselves and the services that they provide on a local area network. Clients are then able to discover these systems and connect to them.
## mdns.register()
2016-02-24 23:15:28 +01:00
Register a hostname and start the mDNS service. If the service is already running, then it will be restarted with the new parameters.
#### Syntax
`mdns.register(hostname, servicename, port [, attributes])`
#### Parameters
- `hostname` The hostname for this device. Alphanumeric characters are best.
2016-02-24 23:15:28 +01:00
- `servicename` The service name for this device. Alphanumeric characters are best. This will get prefixed with `_` and suffixed with `._tcp`
- `port` The port number for the primary service.
- `attributes` A optional table of up to 10 attributes to be exposed. The keys must all be strings.
#### Returns
2016-02-24 23:15:28 +01:00
`nil`
#### Errors
2016-02-24 23:15:28 +01:00
Various errors can be generated during argument validation. The NodeMCU must have an IP address at the time of the call, otherwise an error is thrown.
#### Example
mdns.register("fishtank", "http", 80, { hardware='NodeMCU'})
2016-02-24 23:15:28 +01:00
Using `dns-sd` on OS X, you can see `fishtank.local` as providing the `_http._tcp` service. You can also browse directly to `fishtank.local`. In Safari you can get all the mDNS web pages as part of your bookmarks menu.
## mdns.close()
2016-02-24 23:15:28 +01:00
Shut down the mDNS service. This is not normally needed.
#### Syntax
`mdns.close()`
2016-02-24 23:15:28 +01:00
#### Parameters
none
#### Returns
2016-02-24 23:15:28 +01:00
`nil`