원클릭으로
mmt-help
General help for MMT-Probe — architecture, protocols, modules, troubleshooting, and ecosystem
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
General help for MMT-Probe — architecture, protocols, modules, troubleshooting, and ecosystem
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Configure MMT-Probe input, output channels, reports, security, and performance tuning
Install MMT-Probe and its dependencies from source, packages, or Docker
Run MMT-Probe, understand report output, use dynamic control, and troubleshoot operations
| name | mmt-help |
| version | 1.0.0 |
| description | General help for MMT-Probe — architecture, protocols, modules, troubleshooting, and ecosystem |
Provide general information about MMT-Probe, its architecture, capabilities, and troubleshooting guidance.
Use this skill when the user asks:
MMT-Probe is a C-based network traffic analysis probe developed by Montimage.
MMT-Probe uses a 3-process model:
start =========== monitor proc ================>> end
|\ | |
| '======= processing proc ===' |
| |
'========= control proc ========='
DYNAMIC_CONFIG_MODULE.Within the processing process:
thread-nb = 0: Single thread reads and processes packetsthread-nb = 1: One thread reads, one thread processesthread-nb = N: One reader thread dispatches to N processing threadsPackets are dispatched to threads by flow (same flow always goes to same thread). If a thread's queue is full, the packet is dropped.
Modules are selected at compile time via make targets.
| Module | Description | External Dependency |
|---|---|---|
QOS_MODULE | QoS metrics (RTT, response time) | None |
REDIS_MODULE | Redis pub/sub output | hiredis v1.0.2 |
KAFKA_MODULE | Kafka output | librdkafka v1.8.2 |
MONGODB_MODULE | MongoDB output | mongo-c-driver 1.9.5 |
MQTT_MODULE | MQTT output | libpaho-mqtt |
SOCKET_MODULE | Unix/TCP/UDP socket output | None |
SECURITY_MODULE | Security rule verification | MMT-Security + libxml2 |
PCAP_DUMP_MODULE | Dump packets to PCAP files | None |
LTE_MODULE | LTE eNodeB reporting | None |
DYNAMIC_CONFIG_MODULE | Runtime control via Unix socket | None |
TCP_REASSEMBLY_MODULE | TCP segment reassembly | None |
HTTP_RECONSTRUCT_MODULE | Reconstruct HTTP payload | None (implies TCP) |
FTP_RECONSTRUCT_MODULE | Reconstruct FTP files | None (implies TCP) |
LICENSE_MODULE | License key verification | None |
NETCONF_MODULE | NETCONF protocol support | sysrepo + libxml2 (implies DYNAMIC_CONFIG) |
Compile with ALL_MODULES to enable everything (all dependencies must be installed).
HTTP_RECONSTRUCT_MODULE automatically enables TCP_REASSEMBLY_MODULEFTP_RECONSTRUCT_MODULE automatically enables TCP_REASSEMBLY_MODULETCP_REASSEMBLY_MODULE requires enable-tcp-reassembly = true + enable-ip-defragmentation = true in configNETCONF_MODULE automatically enables DYNAMIC_CONFIG_MODULEDPDK_CAPTURE and STATIC_LINK cannot be used togetherMMT-Probe identifies protocols via MMT-DPI. Categories include:
Ethernet, IEEE 802.15.4, Linux cooked capture, ARP, PPP
IPv4, IPv6, ICMP, ICMPv6, GRE, GTP
TCP, UDP, SCTP
HTTP, HTTPS/SSL/TLS, DNS, FTP, SSH, SMTP, IMAP, POP3, RTP, RTSP, SIP, DHCP, NTP, SNMP, MQTT, CoAP, and 700+ application signatures (Facebook, YouTube, Netflix, etc.)
S1AP, NGAP, NAS, GTP-U, GTP-C, PFCP, Diameter, RADIUS
| Value | Protocol |
|---|---|
| 1 | Ethernet |
| 624 | Linux cooked capture |
| 800 | IEEE 802.15.4 |
| ID | Report Type |
|---|---|
| 1 | Startup (probe version info) |
| 10 | Security alerts |
| 30 | License status |
| 99 | Protocol statistics (non-session) |
| 100 | Session flow statistics |
| 200 | Probe status / liveness |
| 201 | System CPU/memory info |
| 301 | HTTP reconstruction metadata |
| 400 | eNodeB topology events |
| 401 | eNodeB QoS (bearer allocation) |
| 1000 | Custom event reports |
| Format | Description |
|---|---|
| CSV | Comma-separated, strings in ", complex values in [] |
| JSON | JSON objects |
| Sub-ID | Protocol | Extra Fields |
|---|---|---|
| 0 | Default | None |
| 1 | HTTP | Response time, hostname, MIME, URI, method, status |
| 2 | SSL | Server name, CDN flag |
| 3 | RTP | Loss rate, burstiness, jitter, order errors |
| 4 | FTP | Username, password, file info |
| 5 | GTP | Outer IP, TEIDs |
| Error | Cause | Solution |
|---|---|---|
ERROR: Not found MMT-DPI at folder /opt/mmt/dpi | MMT-DPI not installed | Install MMT-DPI first |
Not found MMT-Security at /opt/mmt/security | MMT-Security missing | Install it or remove SECURITY_MODULE |
-lhiredis / -lrdkafka / -lmongoc-1.0 not found | Library not installed | Install the library or remove the module |
| Undefined reference errors after module change | Stale object files | Run make clean before recompiling |
| Error | Cause | Solution |
|---|---|---|
error while loading shared libraries | Library not in LD path | Run ldconfig (or sudo ldconfig on host) |
Permission denied on interface | Missing root privileges | Run with sudo on host, or use --network=host in Docker |
sudo: command not found | Running inside Docker | Omit sudo — you are already root in Docker |
| Probe exits immediately | License check with no key | Remove LICENSE_MODULE or provide license.key |
| No config file found | Missing mmt-probe.conf | Use -c <path> or place config in ./ or /opt/mmt/probe/ |
file-output.enable is truefile-output.output-dir exists and is writablesession-report.enable is truenic-lost and mmt-lost countsthread-nb to add processing threadsthread-queue to buffer more packets per threadinput.buffer-size for NIC-level bufferingsession-timeout valuesoutput.cache-maxmicro-flows to aggregate small flows| Component | Description | Repository |
|---|---|---|
| MMT-DPI | Deep Packet Inspection library (core dependency) | montimage/mmt-dpi |
| MMT-Probe | Network traffic analysis probe (this project) | montimage/mmt-probe |
| MMT-Security | Security rule verification engine | Montimage/mmt-security |
| MMT-Operator | Web dashboard for visualization | montimage/mmt-operator |
| 5Greplay | 5G traffic replay and testing | montimage/5greplay |
Network Traffic -> MMT-Probe -> [Kafka/Redis/Files] -> MMT-Operator (Web UI)
|
MMT-Security (rule engine)
| Variable | Default | Description |
|---|---|---|
MMT_BASE | /opt/mmt | Base installation directory |
MMT_DPI_DIR | $MMT_BASE/dpi | MMT-DPI installation path |
MMT_SECURITY_DIR | $MMT_BASE/security | MMT-Security installation path |
RTE_SDK | (unset) | DPDK SDK path |
RTE_TARGET | build | DPDK build target |
| Resource | Minimum | Recommended |
|---|---|---|
| OS | Linux (x86_64) | Ubuntu 22.04 |
| RAM | 100 MB | 2 GB+ (DPDK) |
| Disk | ~50 MB | + space for reports |
| Privileges | root or CAP_NET_RAW (not needed in Docker) | root |
/mmt-install./mmt-configure./mmt-operate.