Merge pull request #2863 from yueguobin/docs/busybox-ifup-cidr-trap

docs: document the BusyBox ifup CIDR trap in the docker init path
This commit is contained in:
Jeremy Grossmann 2026-08-28 22:02:58 +02:00 committed by GitHub
commit cf00a4e863
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 10 additions and 0 deletions

View File

@ -511,6 +511,11 @@ class DockerVM(BaseNode):
f.write("""#
# This is a sample network config, please uncomment lines to configure the network
#
# NOTE: at boot /gns3/init.sh applies this file with BusyBox ifup ("ifup -a -f").
# BusyBox ifupdown only brings up "auto" stanzas and requires separate
# "address <ip>" and "netmask <mask>" lines: CIDR notation such as
# "address 10.0.0.1/24" is rejected and the interface stays unconfigured.
#
# Uncomment this line to load custom interface files
# source /etc/network/interfaces.d/*

View File

@ -87,6 +87,11 @@ sed -n 's/^ *\(eth[0-9]*\):.*/\1/p' < /proc/net/dev | while read dev; do
done
# configure network interfaces
# NOTE: unless the image ships its own ifupdown in /sbin this is BusyBox ifup,
# which only brings up 'auto' stanzas and does NOT understand CIDR notation:
# 'address <ip>' and 'netmask <mask>' must be separate lines, otherwise the
# stanza fails with "don't have all variables for <iface>/inet" and the
# interface comes up unconfigured.
ifup -a -f
# continue normal docker startup