Skip to content

Commit f7ec8ee

Browse files
committed
Disable IPv6 at kernel boot time
- IPv6 is currently unsupported
1 parent 74c239f commit f7ec8ee

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,7 @@ In the below summary of RunCVM's current main features and limitations, [+] is u
191191
- [+] `--hostname` (or `-h`) is supported
192192
- [-] Only one network (that which is assigned during `docker run`) is supported per container. There is no support for `docker network connect`.
193193
- [-] `--network=host` and `--network=container:name|id` are not supported
194+
- [-] IPv6 is not supported
194195
- Execution environment
195196
- [+] `--user` (or `-u`) is supported
196197
- [?] `--workdir` (or `-w`) is supported

runcvm-scripts/runcvm-ctr-qemu

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,9 @@ if [ "$RUNCVM_BIOS_DEBUG" != "1" ]; then
114114
OPTS+=(-fw_cfg opt/org.seabios/etc/sercon-port,string=0)
115115
fi
116116

117+
# Disable IPv6, which is currently unsupported, at kernel boot time
118+
APPEND+=(ipv6.disable=1)
119+
117120
ARGS=(
118121
"${OPTS[@]}"
119122
-no-user-config

0 commit comments

Comments
 (0)