OS X
では、一般的なnetworking
の設定を編集できます。具体的には、.conf
のファイルを編集できます。
/Library/Preferences/VMware Fusion/networking
/Library/Preferences/VMware Fusion/vmnet8/nat.conf
/Library/Preferences/VMware Fusion/vmnet8/dhcpd.conf
が
answer VNET_8_HOSTONLY_SUBNET 172.16.134.0
nat.conf
# NAT gateway address
ip = 172.16.134.2
dhcpd.confのネットワーキング:DHCPと一緒にサブネットを変更するには、次のVMの一見のためのIPSを生成
subnet 172.16.134.0 netmask 255.255.255.0 {
range 172.16.134.128 172.16.134.254;
option broadcast-address 172.16.134.255;
option domain-name-servers 172.16.134.2;
option domain-name localdomain;
default-lease-time 1800; # default is 30 minutes
max-lease-time 7200; # default is 2 hours
option netbios-name-servers 172.16.134.2;
option routers 172.16.134.2;
}
host vmnet8 {
hardware ethernet 00:00:00:00:00:00; # vm mac address
fixed-address 172.16.134.1;
option domain-name-servers 0.0.0.0;
option domain-name "";
option routers 0.0.0.0;
}
VMWare Fusion
を再起動し、vmに新しいサブネット/ ipsが反映されている必要があります。
これはあなたが既にvmをシャットダウンし、あなたのvms/confs/settingsをバックアップしていることを前提としています。
windoze vmのローカル接続プロパティ(静的に割り当て)で変更するだけではどうですか... –
これはWindows VMではありません。それはカスタムVMです。 IPは 'ifconfig'の' vmnet8'の値によって定義されます。 –