memory optimization [#549]

1. number of packet buffer : 65,536 -> 32,768
2. Packet SDU Size : 8,192 -> 2,048
3. Stabilize test program
This commit is contained in:
Sukchan Lee 2020-09-13 22:04:43 -04:00
parent d4a9c140a8
commit 818f3139d4
17 changed files with 72 additions and 74 deletions

View file

@ -20,10 +20,16 @@ RUN apt-get update && \
vim \
sudo \
iputils-ping \
wireshark \
net-tools && \
apt-get clean
RUN apt-get update && \
apt-get install -y software-properties-common && \
sudo add-apt-repository ppa:wireshark-dev/stable -y && \
apt-get update && \
DEBIAN_FRONTEND=noninteractive \
apt-get install -y wireshark
COPY setup.sh /root
ARG username=acetcom