From 507877fe2e98149b403b41c1fed4b803571e0b34 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Sun, 3 Oct 2021 04:33:24 +0300 Subject: expand about the manual method --- assets/js/main.js | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'assets') diff --git a/assets/js/main.js b/assets/js/main.js index 79e0dd2..56cde4d 100644 --- a/assets/js/main.js +++ b/assets/js/main.js @@ -362,11 +362,15 @@ allowed-ips=${data.client_ipv4.value.for_server()};${data.client_ipv6.value.for_ `); } +var shell_info = +`# Make sure your .bash_history or whatever is +# secure before running this. +# Better yet, put into a file and run (possibly, using sudo).`; + function manual_client_script(data) { return new Script( `# On the client, run this to set up a connection. -# Make sure your .bash_history or whatever is -# secure before running this. +${shell_info} ip link add dev ${iface} type wireguard ip addr add ${data.client_ipv4.value.for_client()} dev ${iface} @@ -380,8 +384,7 @@ ip link set ${iface} up function manual_server_script(data) { return new Script( `# On the server, run this to tweak an existing connection. -# Make sure your .bash_history or whatever is -# secure before running this. +${shell_info} wg set ${iface} peer ${data.client_public.value} preshared-key <( echo ${data.server_preshared.value} ) allowed-ips ${data.client_ipv4.value.for_server()},${data.client_ipv6.value.for_server()} `); -- cgit v1.2.3