2021-10-16 03:51:26 +00:00
2021-08-26 03:13:18 +00:00
2021-08-26 03:48:38 +00:00
2021-08-26 04:28:57 +00:00
2021-08-26 23:30:45 +00:00
2021-08-26 03:13:18 +00:00
2021-08-26 03:13:18 +00:00
2021-08-26 04:28:57 +00:00

Ansible Role for Nebula

Quickly and easily deploy the Nebula Overlay VPN software onto all of your hosts.

What Is Nebula

Nebula is a scalable overlay networking tool with a focus on performance, simplicity and security. It lets you seamlessly connect computers anywhere in the world.

You can read more about Nebula on the official repo

Example Playbook

---
- name: Deploy Nebula
  hosts: all
  gather_facts: yes
  user: ansible
  become: yes
  vars:
    nebula_version: 1.4.0
    nebula_network_name: "Company Nebula Mgmt Net"
    nebula_network_cidr: 16

    nebula_lighthouse_internal_ip_addr: 10.43.0.1
    nebula_lighthouse_public_hostname: lighthouse.company.com
    nebula_lighthouse_public_port: 4242

    nebula_default_inbound_rules:
      - { port: 22, proto: "tcp", host: "any" }
      - { port: "any", proto: "icmp", host: "any" }
    nebula_default_outbound_rules:
      - { port: 22, proto: "tcp", host: "any" }
      - { port: "any", proto: "icmp", host: "any" }
      - { port: 4505, proto: "tcp", host: "10.43.0.1/32" }
      - { port: 4506, proto: "tcp", host: "10.43.0.1/32" }
  roles:
    - role: nebula

Example Inventory

[nebula_lighthouse]
lighthouse01.company.com

[servers]
web01.company.com nebula_internal_ip_addr=10.43.0.2
docker01.company.com nebula_internal_ip_addr=10.43.0.3
zabbix01.company.com nebula_internal_ip_addr=10.43.0.4
backup01.company.com nebula_internal_ip_addr=10.43.0.5
pbx01.company.com nebula_internal_ip_addr=10.43.0.6

Running the Playbook

ansible-playbook -i inventory nebula.yml
Description
Nebula VPN Overlay Network Installer With Ansible
Readme 133 KiB
Languages
Jinja 100%