From: Silvio Rhatto Date: Thu, 1 Dec 2016 17:24:21 +0000 (-0200) Subject: Run natresolver config when bringing up X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=86ab015ea867a24d5400e4683c305e6eb0568b3b;p=vbox.git Run natresolver config when bringing up --- 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