summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2025-08-10 16:10:06 +0200
committerFlorian Klink <flokli@flokli.de>2025-08-10 16:30:52 +0200
commitc204edcb7cd1b60342655e595b1d01d5f711b2bc (patch)
tree1381fbe27a5153a3f245f5f581684c90912e7040
parenttayga: 0.9.2 -> 0.9.5 (diff)
downloadnixpkgs-c204edcb7cd1b60342655e595b1d01d5f711b2bc.tar.gz
nixosTests.tayga: add tcpdump to systemPackages
This makes it much easier to debug broken connectivity interactively, especially if networking is broken.
-rw-r--r--nixos/tests/tayga.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/nixos/tests/tayga.nix b/nixos/tests/tayga.nix
index fa439b19f9b9..4a7d1e304f6a 100644
--- a/nixos/tests/tayga.nix
+++ b/nixos/tests/tayga.nix
@@ -63,6 +63,7 @@
};
};
programs.mtr.enable = true;
+ environment.systemPackages = [ pkgs.tcpdump ];
};
# The router is configured with static IPv4 addresses towards the server
@@ -139,6 +140,7 @@
"192.0.2.42" = "2001:db8::2";
};
};
+ environment.systemPackages = [ pkgs.tcpdump ];
};
router_nixos = {
@@ -204,6 +206,7 @@
"192.0.2.42" = "2001:db8::2";
};
};
+ environment.systemPackages = [ pkgs.tcpdump ];
};
# The client is configured with static IPv6 addresses. It has also a static
@@ -235,6 +238,7 @@
};
};
programs.mtr.enable = true;
+ environment.systemPackages = [ pkgs.tcpdump ];
};
};