diff options
author | Niklas Yann Wettengel <niyawe@niyawe.de> | 2018-02-10 20:42:58 +0100 |
---|---|---|
committer | Niklas Yann Wettengel <niyawe@niyawe.de> | 2018-02-10 20:42:58 +0100 |
commit | 261732bba0fc57b016a06067e2eda270406f85eb (patch) | |
tree | c715ce85147fe52251f2955a47dc84f88e6f3e82 /host_vars | |
parent | ce3ca9e97c60660f2e491204cd0359abb4a05aa4 (diff) |
added more sample files
Diffstat (limited to 'host_vars')
-rw-r--r-- | host_vars/ffrl_uplink_sample | 17 | ||||
-rw-r--r-- | host_vars/mullvad_uplink_sample | 18 |
2 files changed, 35 insertions, 0 deletions
diff --git a/host_vars/ffrl_uplink_sample b/host_vars/ffrl_uplink_sample new file mode 100644 index 0000000..ecd7a4e --- /dev/null +++ b/host_vars/ffrl_uplink_sample @@ -0,0 +1,17 @@ +--- +ansible_host: 123.123.123.123 +wireguard_bb_name: '< node name >' +wireguard_bb_endpoint: '< peer public ipv6 >' +wireguard_bb_priv_key: '< priv key >' +wireguard_bb_pub_key: '< pub key >' +wireguard_bb_port: < port > +wireguard_bb_ipv4: '< wg bb ipv4 >' +wireguard_bb_ipv6: '< wg bb ipv6 (fe80::) >' +ffrl_ip4: '< ffrl public ip >' +ffrl_peers: + - name: 'name' + remote: 'ffrl gateway ipv4' + ip4: 'tunnel ipv4' + peer_ip4: 'tunnel ipv4 ffrl side' + ip6: 'tunnel ipv6' + peer_ip6: 'tunnel ipv6 ffrl side' diff --git a/host_vars/mullvad_uplink_sample b/host_vars/mullvad_uplink_sample new file mode 100644 index 0000000..010d84f --- /dev/null +++ b/host_vars/mullvad_uplink_sample @@ -0,0 +1,18 @@ +--- +ansible_host: 123.123.123.123 +wireguard_bb_name: '< node name >' +wireguard_bb_endpoint: '< peer public ipv6 >' +wireguard_bb_priv_key: '< priv key >' +wireguard_bb_pub_key: '< pub key >' +wireguard_bb_port: < port > +wireguard_bb_ipv4: '< wg bb ipv4 >' +wireguard_bb_ipv6: '< wg bb ipv6 (fe80::) >' +mullvad_country: nl +mullvad_crt: | + -----BEGIN CERTIFICATE----- + ... + -----END CERTIFICATE----- +mullvad_key: | + -----BEGIN PRIVATE KEY----- + ... + -----END PRIVATE KEY----- |