zoukankan      html  css  js  c++  java
  • virtualbox network

    https://www.virtualbox.org/manual/ch06.html

    [nat]
    VBoxManage modifyvm "VM name" --natpf1 "guestssh,tcp,127.0.0.1,2222,,22"
    VBoxManage modifyvm "VM name" --natpf1 delete "guestssh"

    VBoxManage natnetwork add --netname natnet1 --network "192.168.15.0/24" --enable
    VBoxManage natnetwork add --netname natnet1 --network "192.168.15.0/24" --enable --dhcp on
    VBoxManage natnetwork modify --netname natnet1 --dhcp on/off
    VBoxManage natnetwork start/stop/remove --netname natnet1

    VBoxManage natnetwork modify --netname natnet1 --port-forward-4 "ssh:tcp:[]:1022:[192.168.15.5]:22"
    VBoxManage natnetwork modify --netname natnet1 --port-forward-4 delete ssh
    VBoxManage setextradata global "NAT/win-nat-test-0/SourceIp4" 192.168.1.185
    VBoxManage list natnetworks

    [bridged]
    [internal]
    VBoxManage modifyvm "VM name" --nic<x> intnet
    VBoxManage modifyvm "VM name" --intnet<x> "network name"

    [host-only]
    VBoxManage modifyvm "VM name" --nic<x> hostonly
    VBoxManage hostonlyif create

    [udp tunnel]
    VBoxManage modifyvm "VM 01 on host 1" --nic<x> generic
    VBoxManage modifyvm "VM 01 on host 1" --nicgenericdrv<x> UDPTunnel
    VBoxManage modifyvm "VM 01 on host 1" --nicproperty<x> dest=10.0.0.2
    VBoxManage modifyvm "VM 01 on host 1" --nicproperty<x> sport=10001
    VBoxManage modifyvm "VM 01 on host 1" --nicproperty<x> dport=10002
    and

    VBoxManage modifyvm "VM 02 on host 2" --nic<y> generic
    VBoxManage modifyvm "VM 02 on host 2" --nicgenericdrv<y> UDPTunnel
    VBoxManage modifyvm "VM 02 on host 2" --nicproperty<y> dest=10.0.0.1
    VBoxManage modifyvm "VM 02 on host 2" --nicproperty<y> sport=10002
    VBoxManage modifyvm "VM 02 on host 2" --nicproperty<y> dport=10001

  • 相关阅读:
    android学习计划2
    在ubuntu12.04下编译android4.1.2添加JNI层出现问题
    android原生系统裁剪
    LM393,LM741可以用作电压跟随器吗?
    android-86-Can't create handler inside thread that has not called Looper.prepare()
    三星 PMU NXE2000,x-powers的AXP228,NXE2000
    当函数没有return时错误
    Perl OOP
    ORA-01031: 权限不足
    Oracle 10g 10.2.0.1 在Oracle Linux 5.4 32Bit RAC安装手冊(一抹曦阳)
  • 原文地址:https://www.cnblogs.com/anjuncc/p/5812834.html
Copyright © 2011-2022 走看看