├── Products ├── Controller │ ├── README.md │ └── config.properties └── USG │ ├── README.md │ ├── combined_config.gateway.json │ ├── dhcp_domain_name_config.gateway.json │ ├── dnscache_config.gateway.json │ ├── dnsdomainname_config.gateway.json │ ├── ipv6_comcast_config.gateway.json │ ├── ntp_config.gateway.json │ ├── ssh_key_config.gateway.json │ ├── static_dns_entry_config.gateway.json │ └── upnp_config.gateway.json ├── README.md └── Reference Documentation └── Vyatta └── 6.3 ├── Ref_InstallUpgradeAMI_v03.pdf ├── Ref_InstallUpgradeKVM_v01.pdf ├── VyattaRN_R6.3_v02.pdf ├── VyattaRN_R6.3_v03.pdf ├── Vyatta_BGP_R6.3_v01.pdf ├── Vyatta_BasicRouting_R6.3_v01.pdf ├── Vyatta_BasicSystem_R6.3_v01.pdf ├── Vyatta_Encapsulations_R6.3_v01.pdf ├── Vyatta_Firewall_R6.3_v01.pdf ├── Vyatta_GuideToDocumentation_R6.3_v01.pdf ├── Vyatta_GuidetoIPv6_R6.3_v01.pdf ├── Vyatta_HA_R6.3_v01.pdf ├── Vyatta_InstallingUpgrading_R6.3_v01.pdf ├── Vyatta_LANInterfaces_R6.3_v01.pdf ├── Vyatta_Licensing_R6.3_v01.pdf ├── Vyatta_NAT_R6.3_v01.pdf ├── Vyatta_OSPF_R6.3_v01.pdf ├── Vyatta_PPP-BasedEncaps_R6.3_v01.pdf ├── Vyatta_QoS_R6.3_v01.pdf ├── Vyatta_QuickStart_R6.3_v01.pdf ├── Vyatta_RIP_R6.3_v01.pdf ├── Vyatta_RIPng_R6.3_v01.pdf ├── Vyatta_RemoteAccessAPI2.0_R6.3_v01.pdf ├── Vyatta_RoutingPolicies_R6.3_v01.pdf ├── Vyatta_Security_R6.3_v01.pdf ├── Vyatta_Services_R6.3_v01.pdf ├── Vyatta_Tunnels_R6.3_v01.pdf ├── Vyatta_VPN_R6.3_v01.pdf └── Vyatta_WANInterfaces_R6.3_v01.pdf /Products/Controller/README.md: -------------------------------------------------------------------------------- 1 | # Ubiquiti Controller Configs 2 | Configuration file samples for the Ubiquiti Controller product. 3 | 4 | These documents are samples for the Ubiquiti Controller. They are usually located in the site data directory on the controller. On the Unifi Cloud Key controller, the directory is usually **/usr/lib/unifi/data/sites/default** 5 | 6 | The file must always be called **config.properties** and there is only one file allowed. Documentation on this file is linked below. 7 | 8 | ### Documents 9 | 10 | - [config.properties](https://github.com/ekrunch/ubiquiti_unifi_configs/blob/master/Products/Controller/config.properties) 11 | 12 | ### Additional Links 13 | 14 | - Unifi controller config.properties file (Affects all Unifi components attached to the controller) 15 | - 16 | - If you use a Cloud Key and want to manually change the firmware version (to run betas and such), this link explains how it's done. 17 | - 18 | 19 | -------------------------------------------------------------------------------- /Products/Controller/config.properties: -------------------------------------------------------------------------------- 1 | config.firewall.internet.local.icmp=false 2 | config.uapsd_enabled=true 3 | 4 | -------------------------------------------------------------------------------- /Products/USG/README.md: -------------------------------------------------------------------------------- 1 | ## USG Samples 2 | 3 | For the USG, the JSON files are placed in the site data directory of the controller. On the Unifi Cloud Key controller, the directory is usually **/usr/lib/unifi/data/sites/default** 4 | 5 | The file must always be called **config.gateway.json** and there is only one file allowed. Multiple JSON files have to be combined in order to use more than one configuration snippet. There is a "combined" sample in the repository that covers what it could look like with multiple services edited. 6 | 7 | When editing these configurations, it's helpful to know the USG's actual configuration file structure. That's what I always use as a reference for creating my config.gateway.json. I recommend that you log into the USG, set the commands that you're testing, then run **mca-ctrl -t dump-cfg > config.txt** and look at the output file. \(You can get it via SFTP or use 'cat' on the USG itself.\) Note that this file will be different than the output of 'show configuration' on the USG. It will have the proper quoting and array structure that is required. 8 | 9 | _NOTE_ : If the config.gateway.json file has errors, the USG could go into a reboot loop. If that happens, fix the JSON file and restart the controller. When the USG reboots, it should be fine. I highly recommend the use of a JSON validator before applying to your gateway. Search for **JSON Validator** or **JSON Lint** to find one. Using a text editor with syntax highlighting helps a lot as well. 10 | 11 | ### Current Versions 12 | All tests listed below were performed on the following firmware 13 | 14 | USG : v4.3.17 (Currently beta as of 2016/07/27) 15 | Controller : 5.1.1 (Currently beta as of 2016/07/27) 16 | 17 | ### Documents 18 | 19 | | Filename | Description | Status | Notes | 20 | | :------- | :---------- | :----: | :---- | 21 | | combined_config.gateway.json | Combination of several files, to illustrate how it works | **Working** || 22 | | dhcp_domain_name_config.gateway.json | Combination of several files, to illustrate how it works | **Working** | Make sure to look at the existing USG configuration to get the proper network name | 23 | | dnscache_config.gateway.json | Increase DNS Cache size | **Working** | Requires USG 4.3.17 / Controller 5.1.1 | 24 | | dnsdomainname_config.gateway.json | Set USG domain name properly | **Working** || 25 | | ipv6_comcast_config.gateway.json | Experimental IPv6 Configuration for use in residental setups. Currently uses DHCPv6-PD and works with Comcast | **Working** | Tested on USG 4.3.20 / Controller 5.2.0 - I've noticed that after the first provisioning with this configuration, a reboot might be required to make everything work correctly. If you can't ping anything on the Internet via IPv6, reboot the USG and it should work. | 26 | | ntp_config.gateway.json | Set NTP Servers | **Working** || 27 | | ssh_key_config.gateway.json | Set SSH Key for logging in without a password | **Working** | Tested on USG 4.3.20 / Controller 5.2.0 - It is highly recommended that you use the "loadkey" command from the USG and then view the resulting configuration to understand the structure here. This one isn't something you'll want to type in manually. | 28 | | static_dns_entry_config.gateway.json | Create static entries in the DNS server | **Working** | Tested on USG 4.3.20 / Controller 5.2.0 - I still think there's a better way to do this with the DNS Server configuration directly, but this works fine. | 29 | | upnp_config.gateway.json | Enable UPnP / NAT-PMP on the USG | **Working** || 30 | 31 | ### Reference Documentation 32 | 33 | - The USG is built on Ubiquiti's EdgeOS, which is based on Vyatta Core. To the best of my knowledge, it was forked from Vyatta Core 6.3, so I have put up the [Vyatta 6.3 documentation](https://github.com/ekrunch/ubiquiti_unifi_configs/tree/master/Reference%20Documentation/Vyatta/6.3) as well. 34 | 35 | ### Additional Links 36 | 37 | - More discussion around the config.gateway.json file (Affects USG devices attached to the controller) 38 | - 39 | 40 | -------------------------------------------------------------------------------- /Products/USG/combined_config.gateway.json: -------------------------------------------------------------------------------- 1 | { 2 | "service": { 3 | "dns": { 4 | "forwarding": { 5 | "cache-size": 1000 6 | } 7 | }, 8 | "upnp2": { 9 | "listen-on": [ 10 | "eth1" 11 | ], 12 | "nat-pmp": "enable", 13 | "secure-mode": "enable", 14 | "wan": "eth0" 15 | } 16 | }, 17 | "system": { 18 | "domain-name": "internal.yourdomain.com", 19 | "ntp": { 20 | "server": { 21 | "0.ubnt.pool.ntp.org": "''", 22 | "1.ubnt.pool.ntp.org": "''", 23 | "2.ubnt.pool.ntp.org": "''", 24 | "3.ubnt.pool.ntp.org": "''" 25 | } 26 | }, 27 | "static-host-mapping": { 28 | "host-name": { 29 | "happy.internal.yourdomain.com": { 30 | "alias": [ 31 | "happy" 32 | ], 33 | "inet": [ 34 | "172.16.31.1" 35 | ] 36 | }, 37 | "jarvis.internal.yourdomain.com": { 38 | "alias": [ 39 | "jarvis" 40 | ], 41 | "inet": [ 42 | "172.16.31.2" 43 | ] 44 | }, 45 | "pepper.internal.yourdomain.com": { 46 | "alias": [ 47 | "pepper" 48 | ], 49 | "inet": [ 50 | "172.16.31.3" 51 | ] 52 | } 53 | } 54 | } 55 | } 56 | } 57 | 58 | -------------------------------------------------------------------------------- /Products/USG/dhcp_domain_name_config.gateway.json: -------------------------------------------------------------------------------- 1 | { 2 | "service": { 3 | "dhcp-server": { 4 | "shared-network-name": { 5 | "LAN_172.16.31.0-24": { 6 | "subnet": { 7 | "172.16.31.0/24": { 8 | "domain-name": "internal.yourdomain.com" 9 | } 10 | } 11 | } 12 | } 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Products/USG/dnscache_config.gateway.json: -------------------------------------------------------------------------------- 1 | { 2 | "service": { 3 | "dns": { 4 | "forwarding": { 5 | "cache-size": 1000 6 | } 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Products/USG/dnsdomainname_config.gateway.json: -------------------------------------------------------------------------------- 1 | { 2 | "system": { 3 | "domain-name": "yourdomain.com" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /Products/USG/ipv6_comcast_config.gateway.json: -------------------------------------------------------------------------------- 1 | { 2 | "firewall": { 3 | "ipv6-name": { 4 | "WANv6_IN": { 5 | "default-action": "drop", 6 | "description": "WAN inbound traffic forwarded to LAN", 7 | "enable-default-log": "''", 8 | "rule": { 9 | "10": { 10 | "action": "accept", 11 | "description": "Allow established/related sessions", 12 | "state": { 13 | "established": "enable", 14 | "invalid": "disable", 15 | "new": "disable", 16 | "related": "enable" 17 | } 18 | }, 19 | "20": { 20 | "action": "drop", 21 | "description": "Drop invalid state", 22 | "state": { 23 | "established": "disable", 24 | "invalid": "enable", 25 | "new": "disable", 26 | "related": "disable" 27 | } 28 | } 29 | } 30 | }, 31 | "WANv6_LOCAL": { 32 | "default-action": "drop", 33 | "description": "WAN inbound traffic to the router", 34 | "enable-default-log": "''", 35 | "rule": { 36 | "10": { 37 | "action": "accept", 38 | "description": "Allow established/related sessions", 39 | "state": { 40 | "established": "enable", 41 | "related": "enable" 42 | } 43 | }, 44 | "20": { 45 | "action": "drop", 46 | "description": "Drop invalid state", 47 | "state": { 48 | "invalid": "enable" 49 | } 50 | }, 51 | "30": { 52 | "action": "accept", 53 | "description": "Allow IPv6 icmp", 54 | "protocol": "ipv6-icmp" 55 | }, 56 | "40": { 57 | "action": "accept", 58 | "description": "allow dhcpv6", 59 | "destination": { 60 | "port": "546" 61 | }, 62 | "protocol": "udp", 63 | "source": { 64 | "port": "547" 65 | } 66 | } 67 | } 68 | } 69 | }, 70 | "ipv6-receive-redirects": "disable", 71 | "ipv6-src-route": "disable" 72 | }, 73 | "interfaces": { 74 | "ethernet": { 75 | "eth0": { 76 | "dhcpv6-pd": { 77 | "pd": { 78 | "0": { 79 | "interface": { 80 | "eth1": { 81 | "host-address": "::1", 82 | "prefix-id": ":1", 83 | "service": "slaac" 84 | } 85 | }, 86 | "prefix-length": "/60" 87 | } 88 | }, 89 | "rapid-commit": "enable" 90 | }, 91 | "firewall": { 92 | "in": { 93 | "ipv6-name": "WANv6_IN" 94 | }, 95 | "local": { 96 | "ipv6-name": "WANv6_LOCAL" 97 | } 98 | }, 99 | "ipv6": { 100 | "dup-addr-detect-transmits": "1", 101 | "router-advert": { 102 | "cur-hop-limit": "64", 103 | "link-mtu": "0", 104 | "managed-flag": "true", 105 | "max-interval": "600", 106 | "other-config-flag": "false", 107 | "reachable-time": "0", 108 | "retrans-timer": "0", 109 | "send-advert": "true" 110 | } 111 | } 112 | } 113 | } 114 | } 115 | } 116 | -------------------------------------------------------------------------------- /Products/USG/ntp_config.gateway.json: -------------------------------------------------------------------------------- 1 | { 2 | "system": { 3 | "ntp": { 4 | "server": { 5 | "0.ubnt.pool.ntp.org": "''", 6 | "1.ubnt.pool.ntp.org": "''", 7 | "2.ubnt.pool.ntp.org": "''", 8 | "3.ubnt.pool.ntp.org": "''" 9 | } 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Products/USG/ssh_key_config.gateway.json: -------------------------------------------------------------------------------- 1 | { 2 | "system": { 3 | "login": { 4 | "user": { 5 | "admin": { 6 | "authentication": { 7 | "public-keys": { 8 | "laptopsshkey": { 9 | "key": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", 10 | "type": "ssh-rsa" 11 | } 12 | } 13 | } 14 | } 15 | } 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /Products/USG/static_dns_entry_config.gateway.json: -------------------------------------------------------------------------------- 1 | { 2 | "system": { 3 | "static-host-mapping": { 4 | "host-name": { 5 | "happy.internal.yourdomain.com": { 6 | "alias": [ 7 | "happy" 8 | ], 9 | "inet": [ 10 | "172.16.31.80" 11 | ] 12 | }, 13 | "jarvis.internal.yourdomain.com": { 14 | "alias": [ 15 | "jarvis" 16 | ], 17 | "inet": [ 18 | "172.16.31.75" 19 | ] 20 | }, 21 | "pepper.internal.yourdomain.com": { 22 | "alias": [ 23 | "pepper" 24 | ], 25 | "inet": [ 26 | "172.16.31.81" 27 | ] 28 | } 29 | } 30 | } 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /Products/USG/upnp_config.gateway.json: -------------------------------------------------------------------------------- 1 | { 2 | "service": { 3 | "upnp2": { 4 | "listen-on": [ 5 | "eth1" 6 | ], 7 | "nat-pmp": "enable", 8 | "secure-mode": "enable", 9 | "wan": "eth0" 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Ubiquiti Unifi Configs 2 | Configuration file samples for the Ubiquiti Unifi series of products. 3 | 4 | These documents are samples for various Ubiquiti Unifi products. I've created them to help new users with the Ubiquiti Unifi products. Please submit updates and changes. Patches are welcome. There are no comments in any of the files as comments are not supported in JSON. Please see the descriptions below. Using the CLI of the various devices and some Google searching for available commands can help as well. 5 | 6 | ## Products 7 | 8 | - Ubiquiti Universal Security Gateway \(USG\) - [Sample Files](https://github.com/ekrunch/ubiquiti_unifi_configs/tree/master/Products/USG) 9 | - Ubiquiti Controller - [Sample Files](https://github.com/ekrunch/ubiquiti_unifi_configs/tree/master/Products/Controller) 10 | 11 | -------------------------------------------------------------------------------- /Reference Documentation/Vyatta/6.3/Ref_InstallUpgradeAMI_v03.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekrunch/ubiquiti_unifi_configs/5c640070faf29213690eb6eb36811394c29450ca/Reference Documentation/Vyatta/6.3/Ref_InstallUpgradeAMI_v03.pdf -------------------------------------------------------------------------------- /Reference Documentation/Vyatta/6.3/Ref_InstallUpgradeKVM_v01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekrunch/ubiquiti_unifi_configs/5c640070faf29213690eb6eb36811394c29450ca/Reference Documentation/Vyatta/6.3/Ref_InstallUpgradeKVM_v01.pdf -------------------------------------------------------------------------------- /Reference Documentation/Vyatta/6.3/VyattaRN_R6.3_v02.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekrunch/ubiquiti_unifi_configs/5c640070faf29213690eb6eb36811394c29450ca/Reference Documentation/Vyatta/6.3/VyattaRN_R6.3_v02.pdf -------------------------------------------------------------------------------- /Reference Documentation/Vyatta/6.3/VyattaRN_R6.3_v03.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekrunch/ubiquiti_unifi_configs/5c640070faf29213690eb6eb36811394c29450ca/Reference Documentation/Vyatta/6.3/VyattaRN_R6.3_v03.pdf -------------------------------------------------------------------------------- /Reference Documentation/Vyatta/6.3/Vyatta_BGP_R6.3_v01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekrunch/ubiquiti_unifi_configs/5c640070faf29213690eb6eb36811394c29450ca/Reference Documentation/Vyatta/6.3/Vyatta_BGP_R6.3_v01.pdf -------------------------------------------------------------------------------- /Reference Documentation/Vyatta/6.3/Vyatta_BasicRouting_R6.3_v01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekrunch/ubiquiti_unifi_configs/5c640070faf29213690eb6eb36811394c29450ca/Reference Documentation/Vyatta/6.3/Vyatta_BasicRouting_R6.3_v01.pdf -------------------------------------------------------------------------------- /Reference Documentation/Vyatta/6.3/Vyatta_BasicSystem_R6.3_v01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekrunch/ubiquiti_unifi_configs/5c640070faf29213690eb6eb36811394c29450ca/Reference Documentation/Vyatta/6.3/Vyatta_BasicSystem_R6.3_v01.pdf -------------------------------------------------------------------------------- /Reference Documentation/Vyatta/6.3/Vyatta_Encapsulations_R6.3_v01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekrunch/ubiquiti_unifi_configs/5c640070faf29213690eb6eb36811394c29450ca/Reference Documentation/Vyatta/6.3/Vyatta_Encapsulations_R6.3_v01.pdf -------------------------------------------------------------------------------- /Reference Documentation/Vyatta/6.3/Vyatta_Firewall_R6.3_v01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekrunch/ubiquiti_unifi_configs/5c640070faf29213690eb6eb36811394c29450ca/Reference Documentation/Vyatta/6.3/Vyatta_Firewall_R6.3_v01.pdf -------------------------------------------------------------------------------- /Reference Documentation/Vyatta/6.3/Vyatta_GuideToDocumentation_R6.3_v01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekrunch/ubiquiti_unifi_configs/5c640070faf29213690eb6eb36811394c29450ca/Reference Documentation/Vyatta/6.3/Vyatta_GuideToDocumentation_R6.3_v01.pdf -------------------------------------------------------------------------------- /Reference Documentation/Vyatta/6.3/Vyatta_GuidetoIPv6_R6.3_v01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekrunch/ubiquiti_unifi_configs/5c640070faf29213690eb6eb36811394c29450ca/Reference Documentation/Vyatta/6.3/Vyatta_GuidetoIPv6_R6.3_v01.pdf -------------------------------------------------------------------------------- /Reference Documentation/Vyatta/6.3/Vyatta_HA_R6.3_v01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekrunch/ubiquiti_unifi_configs/5c640070faf29213690eb6eb36811394c29450ca/Reference Documentation/Vyatta/6.3/Vyatta_HA_R6.3_v01.pdf -------------------------------------------------------------------------------- /Reference Documentation/Vyatta/6.3/Vyatta_InstallingUpgrading_R6.3_v01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekrunch/ubiquiti_unifi_configs/5c640070faf29213690eb6eb36811394c29450ca/Reference Documentation/Vyatta/6.3/Vyatta_InstallingUpgrading_R6.3_v01.pdf -------------------------------------------------------------------------------- /Reference Documentation/Vyatta/6.3/Vyatta_LANInterfaces_R6.3_v01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekrunch/ubiquiti_unifi_configs/5c640070faf29213690eb6eb36811394c29450ca/Reference Documentation/Vyatta/6.3/Vyatta_LANInterfaces_R6.3_v01.pdf -------------------------------------------------------------------------------- /Reference Documentation/Vyatta/6.3/Vyatta_Licensing_R6.3_v01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekrunch/ubiquiti_unifi_configs/5c640070faf29213690eb6eb36811394c29450ca/Reference Documentation/Vyatta/6.3/Vyatta_Licensing_R6.3_v01.pdf -------------------------------------------------------------------------------- /Reference Documentation/Vyatta/6.3/Vyatta_NAT_R6.3_v01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekrunch/ubiquiti_unifi_configs/5c640070faf29213690eb6eb36811394c29450ca/Reference Documentation/Vyatta/6.3/Vyatta_NAT_R6.3_v01.pdf -------------------------------------------------------------------------------- /Reference Documentation/Vyatta/6.3/Vyatta_OSPF_R6.3_v01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekrunch/ubiquiti_unifi_configs/5c640070faf29213690eb6eb36811394c29450ca/Reference Documentation/Vyatta/6.3/Vyatta_OSPF_R6.3_v01.pdf -------------------------------------------------------------------------------- /Reference Documentation/Vyatta/6.3/Vyatta_PPP-BasedEncaps_R6.3_v01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekrunch/ubiquiti_unifi_configs/5c640070faf29213690eb6eb36811394c29450ca/Reference Documentation/Vyatta/6.3/Vyatta_PPP-BasedEncaps_R6.3_v01.pdf -------------------------------------------------------------------------------- /Reference Documentation/Vyatta/6.3/Vyatta_QoS_R6.3_v01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekrunch/ubiquiti_unifi_configs/5c640070faf29213690eb6eb36811394c29450ca/Reference Documentation/Vyatta/6.3/Vyatta_QoS_R6.3_v01.pdf -------------------------------------------------------------------------------- /Reference Documentation/Vyatta/6.3/Vyatta_QuickStart_R6.3_v01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekrunch/ubiquiti_unifi_configs/5c640070faf29213690eb6eb36811394c29450ca/Reference Documentation/Vyatta/6.3/Vyatta_QuickStart_R6.3_v01.pdf -------------------------------------------------------------------------------- /Reference Documentation/Vyatta/6.3/Vyatta_RIP_R6.3_v01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekrunch/ubiquiti_unifi_configs/5c640070faf29213690eb6eb36811394c29450ca/Reference Documentation/Vyatta/6.3/Vyatta_RIP_R6.3_v01.pdf -------------------------------------------------------------------------------- /Reference Documentation/Vyatta/6.3/Vyatta_RIPng_R6.3_v01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekrunch/ubiquiti_unifi_configs/5c640070faf29213690eb6eb36811394c29450ca/Reference Documentation/Vyatta/6.3/Vyatta_RIPng_R6.3_v01.pdf -------------------------------------------------------------------------------- /Reference Documentation/Vyatta/6.3/Vyatta_RemoteAccessAPI2.0_R6.3_v01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekrunch/ubiquiti_unifi_configs/5c640070faf29213690eb6eb36811394c29450ca/Reference Documentation/Vyatta/6.3/Vyatta_RemoteAccessAPI2.0_R6.3_v01.pdf -------------------------------------------------------------------------------- /Reference Documentation/Vyatta/6.3/Vyatta_RoutingPolicies_R6.3_v01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekrunch/ubiquiti_unifi_configs/5c640070faf29213690eb6eb36811394c29450ca/Reference Documentation/Vyatta/6.3/Vyatta_RoutingPolicies_R6.3_v01.pdf -------------------------------------------------------------------------------- /Reference Documentation/Vyatta/6.3/Vyatta_Security_R6.3_v01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekrunch/ubiquiti_unifi_configs/5c640070faf29213690eb6eb36811394c29450ca/Reference Documentation/Vyatta/6.3/Vyatta_Security_R6.3_v01.pdf -------------------------------------------------------------------------------- /Reference Documentation/Vyatta/6.3/Vyatta_Services_R6.3_v01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekrunch/ubiquiti_unifi_configs/5c640070faf29213690eb6eb36811394c29450ca/Reference Documentation/Vyatta/6.3/Vyatta_Services_R6.3_v01.pdf -------------------------------------------------------------------------------- /Reference Documentation/Vyatta/6.3/Vyatta_Tunnels_R6.3_v01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekrunch/ubiquiti_unifi_configs/5c640070faf29213690eb6eb36811394c29450ca/Reference Documentation/Vyatta/6.3/Vyatta_Tunnels_R6.3_v01.pdf -------------------------------------------------------------------------------- /Reference Documentation/Vyatta/6.3/Vyatta_VPN_R6.3_v01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekrunch/ubiquiti_unifi_configs/5c640070faf29213690eb6eb36811394c29450ca/Reference Documentation/Vyatta/6.3/Vyatta_VPN_R6.3_v01.pdf -------------------------------------------------------------------------------- /Reference Documentation/Vyatta/6.3/Vyatta_WANInterfaces_R6.3_v01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekrunch/ubiquiti_unifi_configs/5c640070faf29213690eb6eb36811394c29450ca/Reference Documentation/Vyatta/6.3/Vyatta_WANInterfaces_R6.3_v01.pdf --------------------------------------------------------------------------------