blob: 956f10da50ca07f7c2f21228210213c32e0693df (
plain)
1
2
3
4
5
6
7
8
9
10
|
class nodo::utils::network::analyzer {
package { [ 'tshark', 'arping', 'fping', 'oping', 'tcptraceroute', 'tcpstat', 'iperf', 'zmap' ]:
ensure => installed,
}
# https://www.linode.com/docs/networking/diagnosing-network-issues-with-mtr
package { 'mtr':
ensure => present,
}
}
|