aboutsummaryrefslogtreecommitdiff
path: root/manifests/utils/network/analyzer.pp
blob: 306764d587f74cb67f0fd6fe892aa96a6da31cad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
class nodo::utils::network::analyzer (
  $ensure = 'installed',
) {
  package { [
    'tshark',
    'arping',
    'fping',
    'oping',
    'tcptraceroute',
    'tcpstat',
    'iperf',
    'zmap',
    'tcptrack',
  ]:
    ensure => $ensure,
  }

  # https://www.linode.com/docs/networking/diagnosing-network-issues-with-mtr
  package { [
    'mtr',
  ]:
    ensure => $ensure,
  }

  # Not in use
  package { [
    'heartbleeder',
    'psad',
  ]:
    ensure => absent,
  }
}