nixos/tests/firewall.nix: ping now succeeds in the firewall's default configuration

+2 -2
+2 -2
nixos/tests/firewall.nix
··· 35 35 # Local connections should still work. 36 36 $walled->succeed("curl -v http://localhost/ >&2"); 37 37 38 - # Connections to the firewalled machine should fail. 38 + # Connections to the firewalled machine should fail, but ping should succeed. 39 39 $attacker->fail("curl --fail --connect-timeout 2 http://walled/ >&2"); 40 - $attacker->fail("ping -c 1 walled >&2"); 40 + $attacker->succeed("ping -c 1 walled >&2"); 41 41 42 42 # Outgoing connections/pings should still work. 43 43 $walled->succeed("curl -v http://attacker/ >&2");