aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xvbox11
1 files changed, 8 insertions, 3 deletions
diff --git a/vbox b/vbox
index a76baab..84f37ef 100755
--- a/vbox
+++ b/vbox
@@ -49,9 +49,16 @@ function vbox_clip {
exit
}
+function vbox_natresolver {
+ # See host's resolver as a DNS proxy in NAT mode
+ # https://www.virtualbox.org/manual/ch09.html#nat_host_resolver_proxy
+ VBoxManage modifyvm $VM --natdnshostresolver1 on
+}
+
# Build options
if [ ! -z "$VM" ]; then
if [ "$COMMAND" == "up" ]; then
+ vbox_natresolver
vbox_run startvm
elif [ "$COMMAND" == "down" ]; then
vbox_run controlvm savestate
@@ -81,9 +88,7 @@ elif [ "$COMMAND" == "list" ]; then
elif [ "$COMMAND" == "clip" ]; then
vbox_clip
elif [ "$COMMAND" == "natresolver" ]; then
- # See host's resolver as a DNS proxy in NAT mode
- # https://www.virtualbox.org/manual/ch09.html#nat_host_resolver_proxy
- VBoxManage modifyvm $VM --natdnshostresolver1 on
+ vbox_natresolver
else
usage
fi