2011-03-11 13:38:52 +00:00
|
|
|
# Test the firewall module.
|
|
|
|
|
|
|
|
{ pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
nodes =
|
2011-09-14 18:20:50 +00:00
|
|
|
{ walled =
|
2011-03-11 13:38:52 +00:00
|
|
|
{ config, pkgs, nodes, ... }:
|
|
|
|
{ networking.firewall.enable = true;
|
|
|
|
networking.firewall.logRefusedPackets = true;
|
|
|
|
services.httpd.enable = true;
|
|
|
|
services.httpd.adminAddr = "foo@example.org";
|
|
|
|
};
|
|
|
|
|
2011-09-14 18:20:50 +00:00
|
|
|
attacker =
|
2011-03-11 13:38:52 +00:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
{ services.httpd.enable = true;
|
|
|
|
services.httpd.adminAddr = "foo@example.org";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
testScript =
|
|
|
|
{ nodes, ... }:
|
|
|
|
''
|
|
|
|
startAll;
|
|
|
|
|
|
|
|
$walled->waitForJob("firewall");
|
|
|
|
$walled->waitForJob("httpd");
|
2012-10-24 10:58:58 +00:00
|
|
|
$attacker->waitForJob("network.target");
|
2011-03-11 13:38:52 +00:00
|
|
|
|
|
|
|
# Local connections should still work.
|
|
|
|
$walled->succeed("curl -v http://localhost/ >&2");
|
|
|
|
|
|
|
|
# Connections to the firewalled machine should fail.
|
|
|
|
$attacker->fail("curl -v http://walled/ >&2");
|
|
|
|
$attacker->fail("ping -c 1 walled >&2");
|
|
|
|
|
|
|
|
# Outgoing connections/pings should still work.
|
|
|
|
$walled->succeed("curl -v http://attacker/ >&2");
|
|
|
|
$walled->succeed("ping -c 1 attacker >&2");
|
|
|
|
|
|
|
|
# If we stop the firewall, then connections should succeed.
|
|
|
|
$walled->succeed("stop firewall");
|
|
|
|
$attacker->succeed("curl -v http://walled/ >&2");
|
|
|
|
'';
|
|
|
|
|
|
|
|
}
|