- gNMI integration: NETCONF script to enable gRPC on all 9 routers, Telegraf container with gnmi input plugin, InfluxDB for time-series storage, 3 Grafana telemetry dashboards (utilization, errors, combined) - Traffic generator: Scapy-based dual-mode container (sender/responder) with Flask API, RFC 2544 test suite (throughput, latency, frame-loss, back-to-back), Vue 3 web UI with flow builder, test runner, real-time stats monitor, and results export - docker-compose.yml updated with influxdb, telegraf, traffic-gen, traffic-gen-ui services - Full documentation in DOCS.md sections 15-16 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
9 lines
286 B
Docker
9 lines
286 B
Docker
FROM python:3.11-slim
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
tcpreplay libpcap-dev procps && rm -rf /var/lib/apt/lists/*
|
|
RUN pip install --no-cache-dir flask scapy psutil
|
|
COPY . /traffic-gen/
|
|
WORKDIR /traffic-gen
|
|
EXPOSE 5051
|
|
CMD ["python3", "server.py"]
|