From 09633dead134fc80f35c3deb0a479f25a440c378 Mon Sep 17 00:00:00 2001 From: Tommy Verrall Date: Thu, 28 Nov 2024 10:38:13 +0100 Subject: [PATCH] add the enable ip forwarding method --- scripts/network_tunnel_manager.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/network_tunnel_manager.sh b/scripts/network_tunnel_manager.sh index e54e561bf6..c135864d90 100644 --- a/scripts/network_tunnel_manager.sh +++ b/scripts/network_tunnel_manager.sh @@ -209,6 +209,9 @@ joke_through_wg_tunnel) configure_dns_and_icmp_wg) configure_dns_and_icmp_wg ;; +adjust_ip_forwarding) + adjust_ip_forwarding + ;; *) echo "Usage: $0 [command]" echo "Commands:" @@ -224,6 +227,7 @@ configure_dns_and_icmp_wg) echo " joke_through_the_mixnet - Fetch a joke via nymtun0." echo " joke_through_wg_tunnel - Fetch a joke via nymwg." echo " configure_dns_and_icmp_wg - Allows icmp ping tests for probes alongside configuring dns" + echo " adjust_ip_forwarding - Enable IPV6 and IPV4 forwarding" exit 1 ;; esac