如何使用命令行禁用VirtualBox网络接口?

时间:2014-06-03 21:29:18

标签: networking virtualbox network-interface

列出虚拟网络接口时,不再需要其中一些接口:

vboxnet1: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> mtu 1500
    ether 0a:00:27:00:00:01 
vboxnet8: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> mtu 1500
    ether 0a:00:27:00:00:08 
vboxnet9: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> mtu 1500
    ether 0a:00:27:00:00:09 
vboxnet11: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> mtu 1500
    ether 0a:00:27:00:00:0b 
vboxnet12: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> mtu 1500
    ether 0a:00:27:00:00:0c 

如何让他们永远禁用它们?

2 个答案:

答案 0 :(得分:11)

事实证明VirtualBox本身带有一个专门针对这种需求的特殊命令:

e.g。删除网络接口vboxnet0, 执行以下命令

VBoxManage hostonlyif remove vboxnet0

答案 1 :(得分:2)

使用GUI,

打开Virtualbox,点击文件 - &gt;偏好 - &gt;网络 - &gt;仅限主机网络,删除Vboxnet#

Host-only Network

使用命令行

VBoxManage hostonlyif remove vboxnet#

(相应地更换&#39;#&#39;在您的情况下为1,8,9,11,12)