xoxys.unifi/defaults/main.yml

50 lines
1.4 KiB
YAML
Raw Normal View History

2018-07-08 18:50:35 +02:00
---
unifi_version: 5.6.39
2018-07-10 22:30:54 +02:00
unifi_openjdk_version: 1.8.0
2018-07-11 23:08:25 +02:00
unifi_restore_after_upgrade: False
2018-07-08 18:50:35 +02:00
unifi_group: ubnt
unifi_user: ubnt
unifi_lvm_enabled: False
# unifi_lvm_pvs:
# - /dev/sda
# unifi_lvm_vg: vg_unifi
# unifi_lvm_lv: lv_unifi
# unifi_lvm_size: 10G
2018-07-10 22:30:54 +02:00
# unifi_lvm_fstype: xfs
2018-07-08 18:50:35 +02:00
unifi_base_dir: /opt/unifi
2018-07-10 23:11:32 +02:00
unifi_tmp_dir: "{{ unifi_base_dir }}/tmp"
2018-07-11 22:37:44 +02:00
2018-07-11 22:40:37 +02:00
unifi_iptables_enabled: True
2018-07-11 22:37:44 +02:00
unifi_open_ports:
2018-07-12 00:48:14 +02:00
- name: allow_unifi_web
rules: |
-A INPUT -m state --state NEW -p tcp --dport 8443 -j ACCEPT
state: present
- name: allow_unifi_comm
rules: |
-A INPUT -m state --state NEW -p tcp --dport 8080 -j ACCEPT
-A OUTPUT -m state --state NEW -p tcp --dport 8080 -j ACCEPT
state: present
- name: allow_unifi_stun
rules: |
-A INPUT -m state --state NEW -p udp --dport 3478 -j ACCEPT
-A OUTPUT -m state --state NEW -p udp --dport 3478 -j ACCEPT
state: present
- name: allow_unifi_discover
rules: |
-A INPUT -m state --state NEW -p udp --dport 10001 -j ACCEPT
-A OUTPUT -m state --state NEW -p udp --dport 10001 -j ACCEPT
state: present
- name: allow_unifi_sped
rules: |
-A INPUT -m state --state NEW -p tcp --dport 6789 -j ACCEPT
state: present
2018-07-12 23:02:27 +02:00
2018-07-12 23:07:34 +02:00
unifi_tls_deploment_enabled: False
2018-07-12 23:02:27 +02:00
unifi_tls_pkcs12_path: /tmp/unifi.p12
unifi_tls_cert_path: /etc/pki/tls/certs/cert.pem
unifi_tls_key_path: /etc/pki/tls/private/key.pem
2018-07-12 23:19:32 +02:00
unifi_tls_lookup_user: "{{ ansible_user_dir }}"