You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
412 B
Nix
31 lines
412 B
Nix
9 years ago
|
{ config, libs, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
];
|
||
|
|
||
|
environment.systemPackages = with pkgs; [
|
||
9 years ago
|
# Outils réseau
|
||
9 years ago
|
iperf
|
||
|
iptraf-ng
|
||
|
nload
|
||
|
telnet
|
||
9 years ago
|
vsftpd
|
||
9 years ago
|
|
||
|
## Diagnostic
|
||
|
arp-scan
|
||
9 years ago
|
wireshark
|
||
9 years ago
|
whois
|
||
|
|
||
|
## Routage
|
||
|
quagga
|
||
|
|
||
|
## Tunnel
|
||
|
openvpn
|
||
|
tinc
|
||
9 years ago
|
];
|
||
9 years ago
|
|
||
|
networking.firewall.allowedTCPPorts = [5201]; # iperf
|
||
|
networking.firewall.allowedUDPPorts = [5201]; # iperf
|
||
9 years ago
|
}
|