Network monitor

  • Last Updated 3/31/2023, 12:34:01 PM UTC
  • About 2 min read

Plugin info

name: net-audit

Performs very basic subnet auditing

# Prerequisites

nmap must be installed on node running this plugin

# Events

Event Description
myrmex/nodes/dead set to 1 to indicate that a network node is unavailable

# Metrics

None

# Configuration

This section describes the configuration settings for this plugin.

Name Type Required Default Description
timeout duration string No 30s How long to wait for a network scan to complete
ping_sweep Ping Sweep Yes Defines the network nodes to ping sweep

# Ping Sweep

Name Type Required Default Description
ports string No 22,80,443,135 ',' separated list of ports or port ranges to sweep
hosts []string Yes List of DNS names, IP address, or IP address ranges (CIDR or octet ranges) to scan

# Example Configuration

ping_sweep:
  ports: 22,80,443
  hosts:
    - something.somewhere.com
    - 172.31.1.10
    - 192.168.10.0/24     # CIDR range 192.168.10.0 -> 192.168.10.255 
    - 192.168.0-255.1-254 # octet range 192.168.0-255.X that skips all addresses in the range that end in .0 or .255
Last Updated: 3/31/2023, 12:34:01 PM