From fdb57ca60ef744957fafc8f46d35b8913f04cfa7 Mon Sep 17 00:00:00 2001 From: J Logan Date: Wed, 4 Jun 2025 15:29:35 -0700 Subject: [PATCH] Fix typo in default subnet setting. (#12) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 98a3da65..a7768130 100644 --- a/README.md +++ b/README.md @@ -658,7 +658,7 @@ Normally, vmnet creates the container network using the CIDR address 192.168.64. - Run `container system stop` to terminate the services for `container`. - Using the macOS `defaults` command, update the default subnet value used by the network helper process. For example, if the bridge address shown by `ifconfig` is 192.168.66.1, run: ```bash - defaults write com.apple.container.defaults default.subnet 192.168.66.1 + defaults write com.apple.container.defaults default.subnet 192.168.66.1/24 ``` - Run `container system start` to launch services again. - Try running the container again and verify that its IP address matches the current bridge interface value.