Skip to main content

MKTXP

License Language Platform Diagnostics GitOps Prometheus Docker Pulls

MKTXP is an extensible toolkit for MikroTik RouterOS network engineering. It provides interactive terminal diagnostics, deterministic GitOps configuration management, and a Prometheus metrics exporter within a lightweight command-line tool.


Choose Your Workflow

I need to … Start with Full Guide
Troubleshoot a router now mktxp diag … CLI Diagnostics Guide
Clean up / version RouterOS configs mktxp rsc … GitOps RSC Guide
Monitor routers continuously mktxp export Prometheus Exporter Guide

Install

Standalone CLI & Exporter

# Recommended for local CLI usage pipx install mktxp

# Or via standard pip pip install mktxp

# Via Homebrew brew install mktxp

# Via Docker docker pull ghcr.io/akpw/mktxp:latest

Requirements: Python >= 3.9. Supported on Linux, macOS, and FreeBSD.

Ready-to-Run Monitoring & Logging Stack

If you need a turnkey environment without manually wiring services, MKTXP Stack is an out-of-the-box Docker Compose deployment that packages MKTXP alongside Prometheus / Grafana stack with pre-configured dashboards, and adds centralized MikroTik syslog processing via Loki and Promtail.


Quick Start: GitOps Configuration (mktxp rsc)

For local .rsc files, mktxp rsc works with zero configuration or router setup required:

# Deterministic formatting: single-line commands, standardized headers, and clean Git diffs mktxp rsc format -i backup.rsc -o clean_backup.rsc

# Modular domain splitting: break a monolithic export into numbered component files and extracted scripts mktxp rsc split -i backup.rsc -o ./config-repo/ --extract-scripts

📖 For AST architecture, custom domain handlers, live backups over SSH, and CI/CD automation, see the GitOps RSC Guide.


Connect to a Router

Both Live Diagnostics and the Prometheus Exporter connect to your routers via the standard RouterOS API.

MKTXP uses two configuration files:

  • mktxp.conf: Router connection profiles, credentials, custom labels, and metrics switches. Edit with mktxp edit.
  • _mktxp.conf: Daemon listen sockets, timeouts, parallel scraping, GitOps rules, and CLI diagnostic thresholds. Edit with mktxp edit -i.

Files are resolved automatically from ~/.config/mktxp/ (XDG standard) or /etc/mktxp/ (system/Docker). Check active paths anytime with mktxp show -cfg.

1. Minimal Configuration (mktxp.conf)

Add your router entry to mktxp.conf:

[My-Router]
    hostname = 192.168.88.1
    username = mktxp_user
    password = secret_password

(For Docker, simply mount your config directory: -v "$(pwd)/mktxp-config:/etc/mktxp")

2. Router User Setup

Create a dedicated monitoring user on your MikroTik router:

/user group add name=mktxp_group policy=api,read
/user add name=mktxp_user group=mktxp_group password=secret_password

(Note: For LTE metrics on RouterOS v6, the user also needs the test permission policy.)

📖 For complete parameter references, [default] section inheritance, custom labels, parallel fetching, and diagnostic tuning, see the Configuration Guide.


Quick Start: Live Diagnostics (mktxp diag)

Run targeted, domain-specific diagnostic one-liners directly in your terminal:

# Find sticky wireless clients clinging to distant APs with poor signal or low rates mktxp diag -en My-Router -cc --low-signal --low-rate 1M

# Surface top bandwidth consumers across the network mktxp diag -en My-Router -kc --top 5

# Audit mystery DHCP devices with no hostname mktxp diag -en My-Router -dc --unidentified

# Check active dynamic firewall threat bans mktxp diag -en My-Router -al blacklist --dynamic-only

# Pinpoint degraded cables or ports negotiating down (< 100 Mbps or half-duplex) mktxp diag -en My-Router -im --degraded

Sample output:

+----------------------+--------------+-------------------+-----------+------------------+--------+---------+---------+---------+
|      dhcp_name       | dhcp_address |    mac_address    | rx_signal |    interface     |  ssid  | tx_rate | rx_rate | uptime  |
+======================+==============+===================+===========+==================+========+=========+=========+=========+
| wlan0 (Conf Printer) | 10.20.10.49  | D8:1F:12:AD:3C:55 |    -87    | AP-Breakroom-2G  | Office | 36 Mbps | 1 Mbps  | 6 hours |
| wlan0 (Boardroom Tab)| 10.20.10.97  | 10:5A:17:0C:B9:C8 |    -84    | AP-Reception-2G  | Office | 24 Mbps | 1 Mbps  |  a day  |
+----------------------+--------------+-------------------+-----------+------------------+--------+---------+---------+---------+
Matching CAPsMAN clients: 2 (Total connected: 127)

💡 Tip: Appending -h to any command (e.g. mktxp diag -kc -h) dynamically scopes help to only that command's filters.
📖 For more diagnostic domains, table schemas, and recipes, see the Diagnostics Guide.


Quick Start: Prometheus Exporter (mktxp export)

Start the exporter daemon to scrape configured routers and serve metrics to Prometheus:

 mktxp export
# Serving Prometheus metrics at http://localhost:49090/metrics

Add the scrape target to /etc/prometheus/prometheus.yml:

scrape_configs:
  - job_name: 'mktxp'
    static_configs:
      - targets: ['localhost:49090']

Import the official Grafana Dashboard (ID: 13679):

Traffic & Interface Wireless Clients Device Health

💡 Tip: Want centralized RouterOS logs too? MKTXP Stack is an out-of-the-box Docker Compose deployment that packages MKTXP alongside Prometheus / Grafana stack with pre-configured dashboards, and adds centralized MikroTik syslog processing via Loki and Promtail.

MKTXP Stack Centralized Logging

💡 Tip: 📖 For dynamic multi-target discovery (/probe), Docker/Kubernetes, and systemd/FreeBSD service deployment, see the Exporter Guide.


Detailed Documentation


Blogs


License & Contributing

  • Distributed under the GNU General Public License v2.
  • Local development:
    • Create a virtual environment: python3 -m venv .venv && source .venv/bin/activate
    • Install editable with test dependencies: pip install -e ".[test]"
    • Run test suite: pytest
    • Install latest development build directly: pip install git+https://github.com/akpw/mktxp

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mktxp-2.0.3.tar.gz (108.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mktxp-2.0.3-py3-none-any.whl (198.0 kB view details)

Uploaded Python 3

File details

Details for the file mktxp-2.0.3.tar.gz.

File metadata

  • Download URL: mktxp-2.0.3.tar.gz
  • Upload date:
  • Size: 108.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.7

File hashes

Hashes for mktxp-2.0.3.tar.gz
Algorithm Hash digest
SHA256 0cc0b3619152b4be10070ccbb0e3c87657cdbff1902ef9d10cbe8cab07481a67
MD5 43076fc6f2284daf34180f0a8efa0531
BLAKE2b-256 f8acab2c925a43b0451e57c14183071f1ef83cb2fd2ff46f82e3fb5378b83280

See more details on using hashes here.

File details

Details for the file mktxp-2.0.3-py3-none-any.whl.

File metadata

  • Download URL: mktxp-2.0.3-py3-none-any.whl
  • Upload date:
  • Size: 198.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.7

File hashes

Hashes for mktxp-2.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 4855c5f26d000c0862b4fb17128db43c5d00896b7b001a50472dd1ab575b98e7
MD5 0e544de768d7b2b6f1c558a7aee5228f
BLAKE2b-256 e0c608454e70b41afd210f7c75abac5feaca39b62679732ce5ed66cf03583ecf

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

2.0.3 This release

2 files

2.0.2

2 files

2.0.1

2 files

2.0.0

2 files

1.2.20

2 files

1.2.19

2 files

1.2.18

2 files

1.2.17

2 files

1.2.15

2 files

1.2.14

2 files

1.2.12

2 files

1.2.11

2 files

1.2.10

1 file

1.2.9

1 file

1.2.7

1 file

1.2.6

1 file

1.2.5

1 file

1.2.4

1 file

1.2.3

1 file

1.2.2

1 file

1.2.1

1 file

1.2

1 file

1.1

1 file

1.0

1 file

0.42

1 file

0.41

1 file

0.40

1 file

0.39

1 file

0.38

1 file

0.37

1 file

0.36

1 file

0.35

1 file

0.34

1 file

0.32

1 file

0.31

1 file

0.30

1 file

0.29

1 file

0.28

1 file

0.26

1 file

0.25

1 file

0.24

1 file

0.23

1 file

0.21

1 file

0.20

1 file

0.18

1 file

0.17

1 file

0.16

1 file

0.15

1 file

0.14

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page