Skip to content

Commit

Permalink
Disable IPv6 at kernel boot time
Browse files Browse the repository at this point in the history
- IPv6 is currently unsupported
  • Loading branch information
struanb committed Oct 15, 2023
1 parent 74c239f commit f7ec8ee
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,7 @@ In the below summary of RunCVM's current main features and limitations, [+] is u
- [+] `--hostname` (or `-h`) is supported
- [-] Only one network (that which is assigned during `docker run`) is supported per container. There is no support for `docker network connect`.
- [-] `--network=host` and `--network=container:name|id` are not supported
- [-] IPv6 is not supported
- Execution environment
- [+] `--user` (or `-u`) is supported
- [?] `--workdir` (or `-w`) is supported
Expand Down
3 changes: 3 additions & 0 deletions runcvm-scripts/runcvm-ctr-qemu
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,9 @@ if [ "$RUNCVM_BIOS_DEBUG" != "1" ]; then
OPTS+=(-fw_cfg opt/org.seabios/etc/sercon-port,string=0)
fi

# Disable IPv6, which is currently unsupported, at kernel boot time
APPEND+=(ipv6.disable=1)

ARGS=(
"${OPTS[@]}"
-no-user-config
Expand Down

0 comments on commit f7ec8ee

Please sign in to comment.