Skip to content

Commit

Permalink
Updated ceos link MTUs to 10000 (#720) (#721)
Browse files Browse the repository at this point in the history
  • Loading branch information
networkRob authored May 10, 2023
1 parent da2c2fa commit cfdda00
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion nested-labvm/atd-docker/ceosbuilder/ceosbuilder.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
NOTIFY_BASE = 1250
CEOS_VERSION = '4.24.1.1F'
REGIS_PATH = 'us.gcr.io/beta-atds'
MTU = 9500
MTU = 10000
VETH_PAIRS = []
CEOS = {}

Expand Down
2 changes: 1 addition & 1 deletion nested-labvm/atd-docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ services:
- /home/atdadmin/KVM_scripts:/home/atdadmin/kvm:rw
ceosbuilder:
container_name: atd-ceosbuilder
image: us.gcr.io/beta-atds/atddocker_ceosbuilder:2.2.1
image: us.gcr.io/beta-atds/atddocker_ceosbuilder:2.2.2
restart: on-failure
environment:
- PYTHONUNBUFFERED=1
Expand Down
4 changes: 2 additions & 2 deletions nested-labvm/services/eosStartup/eosStartup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -89,13 +89,13 @@ then
done
bash /opt/ceos/scripts/Startup.sh
# ===============================================
# Adding below section to adjust veth pair MTUs to 9500
# Adding below section to adjust veth pair MTUs to 10000
# ===============================================
sleep 5
for i in $(ifconfig | grep veth | awk '{print $1}')
do
echo $i
ip link set $i mtu 9500
ip link set $i mtu 10000
done
# ===============================================
# End veth mtu adjustment section
Expand Down

0 comments on commit cfdda00

Please sign in to comment.