How to change Teleport subnet for UDM

for some reason after you enabled teleport on your UDM(Pro), your device will be reserved next available subnet but it can not change or deleted

So after search on internet I found command line for change teleport subnet on UDM(Pro)

you need to enable ssh first!

podman exec -it unifi-os mongo --port 27117
use ace
db.setting.update({ key: "teleport" }, { $set: { subnet_cidr: "192.168.22.1/24" } })

--

--