Ubiquiti Unifi Protect Viewport API - Enable SSH/ADB Access
By default Ubiquiti's Viewport only has port 8080 open for management through Unifi Protect. But it does also support plaintext credentials in HTTP POST requests. After a factory reset the default credentials are ubnt:ubnt or ui:ui on some devices. To enable SSH and ADB you need to send a POST request to the `settings` endpoint with a json object containing: { "username" : "ubnt" , "password" : "ubnt" , "device" : { "ssh" : true , "adb" : true } } Example curl command: curl -kvH 'Content-Type: application/json' -d '{"username": "ubnt", "password": "ubnt", "device": {"ssh": true, "adb": true}}' https://192.168.0.0:8080/api/settings Now ssh is enabled on port 22 and adb is listening on port 5555, this will stay until factory reset You can also force a firmware update with the `update_fw` endpoint: cur...