From a9f62d5caf3b7d366a4c48f0f4b19dc724211802 Mon Sep 17 00:00:00 2001 From: Stefano Bertelli Date: Tue, 31 Mar 2026 19:23:47 -0500 Subject: [PATCH] fix: add mock client configs and update gitignore --- .gitignore | 1 - docker/mock-clients/configs/client1.conf | 9 +++++++++ docker/mock-clients/configs/client2.conf | 9 +++++++++ docker/mock-clients/configs/client3.conf | 9 +++++++++ docker/mock-clients/configs/clients.env | 6 ++++++ 5 files changed, 33 insertions(+), 1 deletion(-) create mode 100644 docker/mock-clients/configs/client1.conf create mode 100644 docker/mock-clients/configs/client2.conf create mode 100644 docker/mock-clients/configs/client3.conf create mode 100644 docker/mock-clients/configs/clients.env diff --git a/.gitignore b/.gitignore index ac92cb7..f59019a 100644 --- a/.gitignore +++ b/.gitignore @@ -6,4 +6,3 @@ __pycache__/ logs/ .idea/ .coverage -docker/mock-clients/configs/ diff --git a/docker/mock-clients/configs/client1.conf b/docker/mock-clients/configs/client1.conf new file mode 100644 index 0000000..9e2d4e7 --- /dev/null +++ b/docker/mock-clients/configs/client1.conf @@ -0,0 +1,9 @@ +[Interface] +PrivateKey = SALYR6RYKISfffOs7+PeQkiI7M5r73qwXYn4fo5Bjl4= + +[Peer] +PublicKey = HdbPtoka8YH5EO0AE/c7qgpn+C+KJ3jb4PeKGwn38QU= +PresharedKey = NhqmMbL8ou6QfBREN8VmS/FX4aaYKwX+yvOESwVetTg= +Endpoint = wiregui:51820 +AllowedIPs = 10.3.2.0/24 +PersistentKeepalive = 5 diff --git a/docker/mock-clients/configs/client2.conf b/docker/mock-clients/configs/client2.conf new file mode 100644 index 0000000..918b1ff --- /dev/null +++ b/docker/mock-clients/configs/client2.conf @@ -0,0 +1,9 @@ +[Interface] +PrivateKey = YLu3dTKCT2yKaRHWAbhkV5iDO3uz9Ay+I8elcU9c6mE= + +[Peer] +PublicKey = HdbPtoka8YH5EO0AE/c7qgpn+C+KJ3jb4PeKGwn38QU= +PresharedKey = OEsRd6g/+b6Z5nhraXoC3cOAVCR0EAloKKKdeW/PKgk= +Endpoint = wiregui:51820 +AllowedIPs = 10.3.2.0/24 +PersistentKeepalive = 5 diff --git a/docker/mock-clients/configs/client3.conf b/docker/mock-clients/configs/client3.conf new file mode 100644 index 0000000..3f048f1 --- /dev/null +++ b/docker/mock-clients/configs/client3.conf @@ -0,0 +1,9 @@ +[Interface] +PrivateKey = EIvEgJvaZYF9g4iIyYaevV3GaEKoB4AXa6Z1M1b5qXQ= + +[Peer] +PublicKey = HdbPtoka8YH5EO0AE/c7qgpn+C+KJ3jb4PeKGwn38QU= +PresharedKey = 0QBrDLFpiqXZWYMeQ1uXm5pujSKrwmqx5VC2D0ETTAo= +Endpoint = wiregui:51820 +AllowedIPs = 10.3.2.0/24 +PersistentKeepalive = 5 diff --git a/docker/mock-clients/configs/clients.env b/docker/mock-clients/configs/clients.env new file mode 100644 index 0000000..e2abfd0 --- /dev/null +++ b/docker/mock-clients/configs/clients.env @@ -0,0 +1,6 @@ +CLIENT1_IP=10.3.2.101 +CLIENT1_PEERS=10.3.2.102 10.3.2.103 +CLIENT2_IP=10.3.2.102 +CLIENT2_PEERS=10.3.2.101 10.3.2.103 +CLIENT3_IP=10.3.2.103 +CLIENT3_PEERS=10.3.2.101 10.3.2.102