Adds sender/responder mode switching via API, QuickPing component, echo-mode responder with dedicated container, improved flow state sync, and RFC2544 test runner enhancements. Includes UI improvements across all traffic-gen components. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
9 lines
299 B
Docker
9 lines
299 B
Docker
FROM python:3.11-slim
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
tcpreplay libpcap-dev procps iputils-ping && 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"]
|