Archive Legacy Setup And Add Ansible Control Plane

This commit is contained in:
Dmitry
2026-07-08 12:47:37 +03:00
parent 841d56380b
commit 4bafa7d09e
203 changed files with 1663 additions and 11 deletions
+19
View File
@@ -0,0 +1,19 @@
- name: Check OpenVPN tunnel from ru-vps
hosts: ru-vps
gather_facts: false
tasks:
- name: Ping VPN LXC OpenVPN address
ansible.builtin.command: ping -c 3 -W 2 10.78.0.2
changed_when: false
- name: Check mini-pc PVE port through OpenVPN gateway
ansible.builtin.command: nc -vz -w 5 192.168.1.10 8006
changed_when: false
- name: Check cloud-pc PVE port through OpenVPN gateway
ansible.builtin.command: nc -vz -w 5 192.168.1.5 8006
changed_when: false
- name: Check PBS port through OpenVPN gateway
ansible.builtin.command: nc -vz -w 5 192.168.1.20 8007
changed_when: false