summaryrefslogtreecommitdiff
path: root/src/op_mode/wireguard_client.py
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2021-04-25 00:13:30 +0200
committerChristian Poessinger <christian@poessinger.com>2021-04-25 09:30:09 +0200
commitdaf377aca3511e8ad74854828f3aaa1dd99f0a91 (patch)
treefbefdd2eebc5f370540a9196bd7e4ac1861c3df9 /src/op_mode/wireguard_client.py
parent92d62740a1dd84d27ed3006cdc8d2560673f6bca (diff)
downloadvyos-1x-daf377aca3511e8ad74854828f3aaa1dd99f0a91.tar.gz
vyos-1x-daf377aca3511e8ad74854828f3aaa1dd99f0a91.zip
wireguard: T1802: add client name to configuration
Diffstat (limited to 'src/op_mode/wireguard_client.py')
-rwxr-xr-xsrc/op_mode/wireguard_client.py42
1 files changed, 34 insertions, 8 deletions
diff --git a/src/op_mode/wireguard_client.py b/src/op_mode/wireguard_client.py
index b25aac2c8..7a620a01e 100755
--- a/src/op_mode/wireguard_client.py
+++ b/src/op_mode/wireguard_client.py
@@ -20,6 +20,7 @@ import os
from jinja2 import Template
from ipaddress import ip_interface
+from vyos.ifconfig import Section
from vyos.template import is_ipv4
from vyos.template import is_ipv6
from vyos.util import cmd
@@ -28,27 +29,47 @@ from vyos.util import popen
if os.geteuid() != 0:
exit("You need to have root privileges to run this script.\nPlease try again, this time using 'sudo'. Exiting.")
-tmpl = """
+server_config = """WireGuard client configuration for interface: {{ interface }}
+
+To enable this configuration on a VyOS router you can use the following commands:
+
+=== VyOS (server) configurtation ===
+
+{% for addr in address if address is defined %}
+set interfaces wireguard {{ interface }} peer {{ name }} allowed-ips '{{ addr }}'
+{% endfor %}
+set interfaces wireguard {{ interface }} peer {{ name }} pubkey '{{ pubkey }}'
+"""
+
+client_config = """
+=== RoadWarrior (client) configuration ===
+
[Interface]
PrivateKey = {{ privkey }}
{% if address is defined and address|length > 0 %}
Address = {{ address | join(', ')}}
{% endif %}
+DNS = 1.1.1.1
[Peer]
PublicKey = {{ system_pubkey }}
Endpoint = {{ server }}:{{ port }}
AllowedIPs = 0.0.0.0/0, ::/0
+
"""
if __name__ == '__main__':
parser = argparse.ArgumentParser()
+ parser.add_argument("-n", "--name", type=str, help='WireGuard peer name', required=True)
parser.add_argument("-i", "--interface", type=str, help='WireGuard interface the client is connecting to', required=True)
parser.add_argument("-s", "--server", type=str, help='WireGuard server IPv4/IPv6 address or FQDN', required=True)
parser.add_argument("-a", "--address", type=str, help='WireGuard client IPv4/IPv6 address', action='append')
args = parser.parse_args()
interface = args.interface
+ if interface not in Section.interfaces('wireguard'):
+ exit(f'WireGuard interface "{interface}" does not exist!')
+
wg_pubkey = cmd(f'wg show {interface} | grep "public key"').split(':')[-1].lstrip()
wg_port = cmd(f'wg show {interface} | grep "listening port"').split(':')[-1].lstrip()
@@ -58,6 +79,8 @@ if __name__ == '__main__':
pubkey,_ = popen('wg pubkey', input=privkey)
config = {
+ 'name' : args.name,
+ 'interface' : interface,
'system_pubkey' : wg_pubkey,
'privkey': privkey,
'pubkey' : pubkey,
@@ -71,10 +94,12 @@ if __name__ == '__main__':
v6_addr = 0
for tmp in args.address:
try:
- config['address'].append(str(ip_interface(tmp)))
+ ip = str(ip_interface(tmp).ip)
if is_ipv4(tmp):
+ config['address'].append(f'{ip}/32')
v4_addr += 1
elif is_ipv6(tmp):
+ config['address'].append(f'{ip}/128')
v6_addr += 1
except:
print(tmp)
@@ -83,10 +108,11 @@ if __name__ == '__main__':
if (v4_addr > 1) or (v6_addr > 1):
exit('Client can only have one IPv4 and one IPv6 address.')
- tmp = Template(tmpl, trim_blocks=True).render(config)
- qrcode,err = popen('qrencode -t ansiutf8', input=tmp)
-
- print(f'\nWireGuard client configuration for interface: {interface}')
- print(tmp)
- print('\n')
+ # Clear out terminal first
+ print('\x1b[2J\x1b[H')
+ server = Template(server_config, trim_blocks=True).render(config)
+ print(server)
+ client = Template(client_config, trim_blocks=True).render(config)
+ print(client)
+ qrcode,err = popen('qrencode -t ansiutf8', input=client)
print(qrcode)