SSh into the device with the credentials given when installing the unifi network server.
syswrapper.sh restore-default
info
set-inform http://IP_of_the_network_server:8080/inform
When set-inform isn't working
A solution when the adotpion isn't working through SSH is to us DNS rewrite to point the unifi domain to the IP of the network server and restart the APs
Rewrite DNS to unifi -> controller IP so http://unifi:8080/inform works too
unifi >> http://IP_of_the_network_server
Radios
2.4 GHz Radio
Channel Width 20 MHz
Channel Auto
Transmit Power Low
5 GHz Radio
Channel Width 40 MHz
Channel Auto
Transmit Power Medium
Meshing
Meshing Auto
Band Steering
Band Steering Off
IP Settings
IP Configuration DHCP
Manage
LED = no
SNMP = no
If selfhosted
Docker compose for a working unifi-network-application container (as of 10 07 2024)
version: "2.1"
services:
unifi-network-application:
image: lscr.io/linuxserver/unifi-network-application:latest
container_name: unifi-network-application
depends_on:
unifi-db:
condition: service_healthy
networks:
br0:
ipv4_address: ${Local_IP}
unifi: {}
ports:
- 8443:8443 # application GUI/API
- 8843:8843 # optional - HTTPS portal redirection
- 8080:8080 # device and application communication
- 8880:8880 # optional - HTTP portal redirection
- 3478:3478/udp # STUN
- 10001:10001/udp # device discovery
#- 1900:1900/udp # optional - Make controller discoverable on L2 network
#- 6789:6789 # optional - Mobile Speed Test
#- 5514:5514/udp # optional - remote syslog capture
environment:
- PUID=99
- PGID=100
- UMASK=022
- TZ=Europe/Paris
- MONGO_USER=${MONGO_USER}
- MONGO_PASS=${MONGO_PASS}
- MONGO_HOST=${MONGO_HOST}
- MONGO_PORT=${MONGO_PORT}
- MONGO_DBNAME=${MONGO_DBNAME}
- MEM_LIMIT=1024 #optional
- MEM_STARTUP=1024 #optional
volumes:
- /mnt/user/appdata/unifi-network-application/config:/config
labels:
- com.centurylinklabs.watchtower.monitor-only=true
restart: always
unifi-db:
image: docker.io/mongo:5
container_name: unifi-db
networks:
unifi: {}
ports:
- 27017:27017
volumes:
- /mnt/user/appdata/unifi-network-application/mongo/db:/data/db
- /mnt/user/appdata/unifi-network-application/init-mongo.js:/docker-entrypoint-initdb.d/init-mongo.js:ro
healthcheck:
test:
- CMD
- mongo
- --eval
- db.adminCommand('ping')
interval: 10s
timeout: 10s
retries: 5
start_period: 20s
labels:
- com.centurylinklabs.watchtower.monitor-only=true
restart: always
networks:
br0:
external: true
unifi:
external: true
x-dockge:
urls:
- ${X_URL}
- ${X_URL_1}