We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7181037 commit 69ece08Copy full SHA for 69ece08
src/network.sh
@@ -222,6 +222,8 @@ configureNAT() {
222
fi
223
224
GATEWAY_MAC=$(echo "$VM_NET_MAC" | rev)
225
+ GATEWAY_MAC="02:${GATEWAY_MAC:0:14}"
226
+
227
if ! ip link set dev "$VM_NET_TAP" address "$GATEWAY_MAC"; then
228
warn "Failed to set gateway MAC address.."
229
src/reset.sh
@@ -266,4 +266,5 @@ echo "$user:{PLAIN}${PASS:-}" > /etc/nginx/.htpasswd
266
cp -r /var/www/* /run/shm
267
html "Starting $APP for Docker..."
268
nginx -e stderr
269
270
return 0
0 commit comments