mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 18:18:55 +00:00
Tests that DNS still works in the client with established connections after the portal and/or relay go down.
14 lines
222 B
Bash
Executable File
14 lines
222 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
source "./scripts/tests/lib.sh"
|
|
|
|
install_iptables_drop_rules
|
|
|
|
client_curl_resource "172.20.0.100/get"
|
|
|
|
docker compose stop api # Stop portal
|
|
|
|
client_curl_resource "172.20.0.100/get"
|