--- layout: page title: "Mosquitto MQTT broker" description: "Fast and reliable MQTT broker." date: 2017-04-30 13:28 sidebar: true comments: false sharing: true footer: true featured: true --- Set up [Mosquitto](https://mosquitto.org/) as MQTT broker. ```json { "logins": [ {"username": "local-user", "password": "mypw"} ], "anonymous": false, "customize": { "active": false, "folder": "mosquitto" }, "certfile": "fullchain.pem", "keyfile": "privkey.pem" } ```

Make sure you use logins and disable anonymous access if you want to secure the system.

{% configuration %} anonymous: description: Allow anonymous connections. If *logins* is set, the anonymous user can only read data. required: false default: false type: boolean logins: description: A list of local users that will be created with *username* and *password*. You don't need do this because you can use Home Assistant users too without any configuration. required: false type: list customize: description: If you enable it, it reads additional configuration files (`*.conf`) from `/share/mosquitto`. required: false type: [boolean, string] {% endconfiguration %} ### {% linkable_title Home Assistant user management %} This add-on is attached to the Home Assistant user system, so mqtt clients can make use of these credentials. Local users may also still be set independently within the configuration options for the add-on. For the internal Hass.io ecosystem we register `homeassistant` and `addons`, so these may not be used as user names. ### {% linkable_title Home Assistant configuration %} To use the Mosquitto as [broker](/docs/mqtt/broker/#run-your-own), go to the integration page and install the configuration with one click. If you have old MQTT settings available, remove this old integration and restart Home Assistant to see the new one. ### {% linkable_title Disable listening on insecure (1883) ports %} Remove the ports from the add-on page network card (set them as blank) to disable them. ### {% linkable_title Access Control Lists (ACLs) %} It is possible to restrict access to topics based upon the user logged in to Mosquitto. In this scenario it is recommended to create individual users for each of your clients and create an appropriate ACL. See the following links for more information: * [Mosquitto topic restrictions](http://www.steves-internet-guide.com/topic-restriction-mosquitto-configuration/) * [Mosquitto.conf man page](https://mosquitto.org/man/mosquitto-conf-5.html) Add the following configuration to enable ACLs: 1. Set the `active` flag within the `customize` section to `true` in your configuration. 2. Create a file in `/share/mosquitto` named `acl.conf` with the following contents: ```text acl_file /share/mosquitto/accesscontrollist ``` 3. Create a file in `/share/mosquitto` named `accesscontrollist` and add contents according to your requirements. The `/share` folder can be found on the host filesystem under `/usr/share/hassio/share`, or via the `Share` folder through SMB (Samba).