mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
nixosTests.fail2ban: extend test coverage
This commit is contained in:
parent
0dbddf816a
commit
cd6f6791e9
1 changed files with 29 additions and 2 deletions
|
@ -7,13 +7,40 @@
|
|||
enable = true;
|
||||
bantime-increment.enable = true;
|
||||
};
|
||||
|
||||
services.openssh.enable = true;
|
||||
networking.nftables.enable = true;
|
||||
};
|
||||
|
||||
nodes.client = _: {
|
||||
environment.systemPackages = [
|
||||
pkgs.sshpass
|
||||
pkgs.libressl.nc
|
||||
];
|
||||
|
||||
};
|
||||
|
||||
testScript = ''
|
||||
machine.wait_for_unit("multi-user.target")
|
||||
start_all()
|
||||
|
||||
# Wait for everything to be ready.
|
||||
machine.wait_for_unit("multi-user.target")
|
||||
machine.wait_for_unit("fail2ban")
|
||||
machine.wait_for_unit("sshd")
|
||||
client.wait_for_unit("multi-user.target")
|
||||
|
||||
client_addr = "2001:db8:1::1"
|
||||
machine_addr = "2001:db8:1::2"
|
||||
|
||||
# Verify there is not ban and the port is reachable from the client.
|
||||
machine.succeed(f"test 0 -eq $(fail2ban-client get sshd banned {client_addr})")
|
||||
client.succeed(f"nc -w3 -z {machine_addr} 22")
|
||||
|
||||
# Cause authentication failure log entries.
|
||||
for _ in range(2):
|
||||
client.fail(f"sshpass -p 'wrongpassword' ssh -o StrictHostKeyChecking=no {machine_addr}")
|
||||
|
||||
# Verify there is a ban and the port is unreachable from the client.
|
||||
machine.wait_until_succeeds(f"test 1 -eq $(fail2ban-client get sshd banned {client_addr})")
|
||||
client.fail(f"nc -w3 -z {machine_addr} 22")
|
||||
'';
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue