Skip to content

Instantly share code, notes, and snippets.

@plucena24
Forked from rosco-pc/unifi.md
Created June 7, 2023 13:53
Show Gist options
  • Save plucena24/ccd918e5d47522259409a6b0ce422510 to your computer and use it in GitHub Desktop.
Save plucena24/ccd918e5d47522259409a6b0ce422510 to your computer and use it in GitHub Desktop.
Unifi commands.md

Unifi AP useful commands

using SSH:

  • log in to AP: $ ssh ubnt@<IP>
  • default username & password: ubnt & ubnt

Generic

Command Example Function
info info Displays device information
set-default set-default Factory reset device
set-inform set-inform http://192.168.1.1:8080/inform Set URL of the controller for adoption.
upgrade upgrade https://<firmware-url>.bin Upgrade firmware
fwupdate fwupdate --url https://<firmware-url>.bin Update firmware
reboot reboot Reboot the device
poweroff poweroff Shutdown device
uptime uptime shows device uptime

Network related

The following Unifi SSh Commands can really help you with finding network-related issues with your Unifi Device.

Command Example Function
ifconfig ifconfig Show network interface information
ip address add ip address add 192.168.1.143/24 dev br0 Set static IP Address
ip route Display current gateway
ip route add default via 192.168.1.1 Set default gateway
ip neigh Show IPv6 neighbors
echo "nameserver 192.168.1.1" > /etc/resolv.conf Set DNS Server
ping ping 1.1.1.1 Check network connection to device
arp apr -a Show arp table

Unifi OS

When you connect to your UDM Pro (or another controller that is running Unifi OS), then you will have a couple of other options:

Command Example Function
ubnt-systool ubnt-systool cputemp Show CPU Temp
ubnt-systool cpuload Show CPU load
ubnt-systool portstatus Show port status
ubnt-systool hostname <newname> Set new hostname
ubnt-systool reboot Reboot device
ubnt-systool reset2defaults Factory reset device
ubnt-device-info ubnt-device-info summary Show system information
ubnt-tools ubnt-tools ubnt-discover Show Unifi devices in the network
cat /mnt/data/udapi-config/dnsmasq.lease Show DHCP Leases
cat /mnt/data/udapi-config/unifi Show configuration
/etc/init.d/S95unifios restart Restart Unifi OS Web interface

Unifi Log files

There are a lot of log files that you can access to help you debug any Unifi related problem:

Command Example Function
messages cat /var/log/messages Output the error log
tail -f /var/log/messages Monitor log file
various cat /mnt/data/unifi-os/unifi-core/config/settings.yaml Server settings
cat /mnt/data/unifi-os/unifi-core/logs/discovery.log Discovery log
cat /mnt/data/unifi-os/unifi-core/logs/system.log System log
cat /mnt/data/unifi-os/unifi/logs/server.log Server log
cat /mnt/data/unifi-os/unifi-core/logs/errors.log Http errors

LED

Command Example Function
Disable LED sed -i 's/mgmt.led_enabled=true/mgmt.led_enabled=false/g' /var/etc/persistent/cfg/mgmt it takes up to ~15 seconds
echo '0' >/proc/gpio/led_pattern immediately, but not persistent
Enable LED (blue or default color) sed -i 's/mgmt.led_enabled=false/mgmt.led_enabled=true/g' /var/etc/persistent/cfg/mgmt it takes up to ~15 seconds
echo '1' >/proc/gpio/led_pattern immediately, but not persistent
white color echo '2' >/proc/gpio/led_pattern
set custom color echo -n 255,0,0 > /proc/ubnt_ledbar/custom_color
blinking white echo '02' >/proc/gpio/led_pattern

ℹ️ Note: official LED statuses:


Getting info:

Device info, uptime:

  • info
example output:
  	Model:       U6-Lite
  	Version:     5.60.23.13051
  	MAC Address: 78:45:xx:xx:xx:xx
  	IP Address:  192.168.88.2
  	Hostname:    U6-Lite
  	Uptime:      430867 seconds

  	Status:      unknown
  • cat /var/sysinfo/model
  • uname -a
    • example output: Linux U6-Lite 4.4.198 #0 SMP Thu Aug 30 12:10:54 2018 mips GNU/Linux
  • uptime

CPU info:

  • cat /proc/stat | grep '^cpu '
  • cat /proc/cpuinfo
  • cat /proc/ubnthal/system.info
example output:
  cpu=MT7621
  cpuid=1617657f
  flashSize=33554432
  ramsize=268435456
  vendorid=0777
  systemid=a612
  boardrevision=15
  serialno=7845xxx61xxx
  manufid=0002
  mfgweek=202129
  qrid=WErxxx
  eth0.macaddr=78:45:xx:xx:xx:xx
  radio0.name=MT7603
  radio1.name=MT7915
  device.hashid=10643aexxx2d8xxx
  device.anonid=5429fxxx-d4xx-4fxx-8064-3ae26f2dxxxx
  ra0.macaddr=78:45:xx:xx:xx:21
  rai0.macaddr=78:45:xx:xx:xx:22
  bt0.macaddr=78:45:xx:xx:xx:23
  regdmn[]=0000ffffffffffffffffffffffffffff
  cpu_rev_id=00030103

Memory (RAM) info:

  • free | grep 'Mem:'
  • free

Storage:

  • df -h

    example output:
       Filesystem                Size      Used Available Use% Mounted on
       tmpfs                   123.9M    856.0K    123.1M   1% /tmp
       tmpfs                   512.0K         0    512.0K   0% /dev
    

Log:

  • cat /var/log/messages

Get connected clients (MACs):

  • CLIENTS=`mca-dump |grep \"mac\" | grep -v "<AP MAC>"` && echo "$CLIENTS"

Some configs:

  • cat /var/running.cfg
  • cat /var/system.cfg

Network: IP

  • netstat -rt -n (cisco: show ip route)

Show interfaces:

  • ifconfig (cisco: show interfaces)

Show config:

  • cat /mnt/data/udapi-config/unifi
  • cat /tmp/system.cfg

tcpdump:

  • tcpdump

⚠️ Reset & potentially dangerous commands

Reset device to factory defaults:

  • syswrapper.sh restore-default or
  • set-default

Enter CLI:

  • mca-cli

Adopt a UniFi device into a controller device:

  • set-inform http://<IP.your.unifi.controller>:8080/inform

Set password:

  • passwd

Reboot, shutdown AP:

  • reboot
  • poweroff
  • /usr/etc/rc.d/rc.softrestart save (not tested)

Manually Upgrade AP:

  • syswrapper.sh upgrade http://ip-of-controller:8080/dl/firmware/BZ2/xxxxx/firmware.bin

Upgrade AP (online):


Show other commands:

  • ubntbox

Sources:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment