UniFi – 3.2.9-GA is Released for Soaking

UniFi – 3.2.9-GA will be the next official General Availability Release. We are going to put it in here to soak for a week to make sure no regressions are reported before moving to general release site.

Make sure you always do a backup before any updates, especially if you plan to upgrade your existing installation!

(more…)

UniFi – 3.2.8-GA is Released for Soaking

UniFi – 3.2.8-GA will be the next official General Availability Release. We are going to put it in here to soak for a week to make sure no regressions are reported before moving to general release site.

Make sure you always do a backup before any updates, especially if you plan to upgrade your existing installation!

(more…)

Automatically create routes in OS X using VPN

Very annoyed in OS X, that after the establishment of VPN-connections, you had to manually are forwarding some subnets inside VPN. After a while it got tired and was written a little script that is executed automatically immediately after the VPN-connection is established.

$ sudo nano -w /etc/ppp/ip-up
#!/bin/sh

# When the ppp link comes up, this script is called with the following parameters
#	$1	the interface name used by pppd (e.g. ppp0)
#	$2	the tty device name
#	$3	the tty device speed
#	$4	the local IP address for the interface
#	$5	the remote IP address
#	$6	the parameter specified by the 'ipparam' option to pppd

IFNAME="$1"
IPLOCAL="$4"
IPREMOTE="$5"

if [ "${IPREMOTE}" == "10.9.1.1" ]; then
    /sbin/route add -net 10.1 -interface ${IFNAME}
    /sbin/route add -net 10.2 -interface ${IFNAME}
    /sbin/route add -net 10.9 -interface ${IFNAME}
    /sbin/route add -host 10.20.30.40/32 -interface ${IFNAME}
fi

$ sudo chmod +x /etc/ppp/ip-up

How to Install UniFi Controller on Synology

  • The first thing you need to connect the repository «ACME Networks», to do this, open «Package Center» and click on the «Settings» button. In the «General» in the «Trust Level» select the item «Any publisher». Further, in the «Package Sources» push the button «Add» and enter the name of the repository – ACME Networks, and the location – http://synology.acmenet.ru/, after then click on the «OK» button. In the «Settings» window just click «OK». After that, click on the «Update» button. After the updating, in the “Community” should appear UniFi Controller Packages, where they can be installed.
  • (more…)