VM을 만드는 동안 네트워킹을 NAT로 설정하십시오.
Linux 게스트 : ifconfig를 실행하여 하드웨어 주소 HWaddr
, 브로드 캐스트 주소 Bcast
, IPv4 인터넷 주소 inet addr
및 Mask
사용중인 마스크 를 가져 오십시오 .
UbuntuGuest$ifconfig
eth0 Link encap:Ethernet HWaddr 00:0c:29:53:bf:e5
inet addr:192.168.213.129 Bcast:192.168.213.255 Mask:255.255.255.0
<snip>
Linux 게스트 : 네임 서버 정보 조회
UbuntuGuest$cat /etc/resolv.conf
nameserver 192.168.213.2
domain localdomain
search localdomain
Linux 게스트 : 게이트웨이 주소를 조회하십시오 (대상으로 0.0.0.0이있는 행의 게이트웨이 열에 나열 됨).
UbuntuGuest$route -n
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
192.168.213.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
0.0.0.0 192.168.213.2 0.0.0.0 UG 100 0 0 eth0
OS X 호스트 : (NAT 가상 스위치)에 dhcpd.conf
대한 파일을 편집 vmnet8
하여 Linux 게스트에 고정 IP 주소를 지정하십시오. (네번째 줄에서 선택한 편집기를 사용하십시오)
OSXHost$cd /Library/Application\ Support/VMware\ Fusion/vmnet8/
OSXHost$sudo chmod u+w dhcpd.conf
OSXHost$sudo cp dhcpd.conf dhcpd.conf.bak.20100619
OSXHost$sudo emacs dhcpd.conf
OS X 호스트 : 파일이 다음과 같이 시작됩니다.
# Configuration file for ISC 2.0 vmnet-dhcpd operating on vmnet8.
#
# This file was automatically generated by the VMware configuration program.
# See Instructions below if you want to modify it.
#
# We set domain-name-servers to make some DHCP clients happy
# (dhclient as configured in SuSE, TurboLinux, etc.).
# We also supply a domain name to make pump (Red Hat 6.x) happy.
#
###### VMNET DHCP Configuration. Start of "DO NOT MODIFY SECTION" #####
# Modification Instructions: This section of the configuration file contains
# information generated by the configuration program. Do not modify this
# section.
# You are free to modify everything else. Also, this section must start
# on a new line
# This file will get backed up with a different name in the same directory
# if this section is edited and you try to configure DHCP again.
# Written at: 12/26/2009 10:35:10
allow unknown-clients;
default-lease-time 1800; # default is 30 minutes
max-lease-time 7200; # default is 2 hours
subnet 192.168.213.0 netmask 255.255.255.0 {
range 192.168.213.128 192.168.213.254;
option broadcast-address 192.168.213.255;
option domain-name-servers 192.168.213.2;
option domain-name localdomain;
default-lease-time 1800; # default is 30 minutes
max-lease-time 7200; # default is 2 hours
option routers 192.168.213.2;
}
host vmnet8 {
hardware ethernet 00:50:56:C0:00:08;
fixed-address 192.168.213.1;
option domain-name-servers 0.0.0.0;
option domain-name "";
option routers 0.0.0.0;
}
####### VMNET DHCP Configuration. End of "DO NOT MODIFY SECTION" #######
OS X 호스트 : 수정 안 함 섹션host
아래에 새 항목을 작성하십시오 . 이 항목은 Linux 게스트에 고정 IP를 할당합니다. Linux 게스트 에서 일치해야합니다 . 에 사용할 수있는 고정 주소를 선택하십시오 . , , 및 필요성은 주어진 옵션과 일치하는 섹션을 . (이미 Linux 게스트에서 수집 한 정보와 이미 일치 한 항목입니다.)이 예에서 호스트 항목은 다음과 같습니다.hardware ethernet
HWaddr
ifconfig
fixed-address
option broadcast-address
option domain-name-servers
option domain-name
option routers
subnet
dhcpd.conf
####### VMNET DHCP Configuration. End of "DO NOT MODIFY SECTION" #######
host serpents-hold {
hardware ethernet 00:0c:29:53:bf:e5;
fixed-address 192.168.213.3;
option broadcast-address 192.168.213.255;
option domain-name-servers 192.168.213.2;
option domain-name localdomain;
option routers 192.168.213.2;
}
OS X 호스트에서dhcpd.conf
편집기를 저장 하고 닫으십시오.
OS X 호스트 및 모든 게스트 : 모든 VM 및 VMware를 종료하십시오.
OS X 호스트 : VMware 서비스를 다시 시작하십시오.
OSXHost$cd /Library/Application\ Support/VMware\ Fusion/
OSXHost$sudo ./boot.sh --restart
OS X 호스트 : 찾는 위치 Activity Monitor
와 확인하십시오라는 두 개의 프로세스를 각각 것을 vmnet-dhcpd
실행하고 있습니다. (하나는 vmnet8
NAT 네트워크 용이고 다른 하나는 호스트 전용 네트워크 용입니다.) 둘 다 표시되지 않으면 vmnet8/dhcpd.conf
OS X 호스트 의 파일에 문제가있을 수 있습니다 . 이를 수정하고 VMware 서비스 다시 시작을 반복하십시오.
OS X 호스트 : VMware 및 Linux 게스트 VM을 시작하십시오.
Linux 게스트 에서 게스트 VM에서 설정이 예상 한대로 확인하십시오.
UbuntuGuest$ifconfig
eth0 Link encap:Ethernet HWaddr 00:0c:29:53:bf:e5
inet addr:192.168.213.3 Bcast:192.168.213.255 Mask:255.255.255.0
inet6 addr: fe80::20c:29ff:fe53:bfe5/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:103 errors:0 dropped:0 overruns:0 frame:0
TX packets:71 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:10961 (10.9 KB) TX bytes:9637 (9.6 KB)
lo <snip>
UbuntuGuest$cat /etc/resolv.conf
nameserver 192.168.213.2
domain localdomain
search localdomain
UbuntuGuest$route -n
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
192.168.213.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
0.0.0.0 192.168.213.2 0.0.0.0 UG 100 0 0 eth0
UbuntuGuest$
Linux 게스트 : 외부 세계에 도달 할 수 있는지 확인하십시오.
UbuntuGuest$ping google.com
PING google.com (72.14.213.104) 56(84) bytes of data.
64 bytes from pv-in-f104.1e100.net (72.14.213.104): icmp_seq=1 ttl=128 time=47.6 ms
64 bytes from 2.bp.blogspot.com (72.14.213.104): icmp_seq=2 ttl=128 time=48.7 ms
64 bytes from 2.bp.blogspot.com (72.14.213.104): icmp_seq=3 ttl=128 time=48.2 ms
^C
--- google.com ping statistics ---
4 packets transmitted, 3 received, 25% packet loss, time 3093ms
rtt min/avg/max/mdev = 47.687/48.223/48.714/0.491 ms
UbuntuGuest$
OS X 호스트 : 호스트 이름에 대한 맵핑을 hosts
파일에 추가 하십시오.
OSXHost$cd /etc
OSXHost$sudo emacs hosts
Linux 게스트의 호스트 이름과 위에 지정된 IP 주소를 사용하여 hosts 파일 끝에 줄을 추가하십시오.
192.168.213.2 serpents-hold
OS X 호스트 : 파일을 저장하고 emacs를 종료하십시오.
OS X 호스트 : 호스트 이름으로 Linux 게스트에 도달 할 수 있는지 테스트하십시오.
OSXHost$ping serpents-hold
PING serpents-hold (192.168.213.3): 56 data bytes
64 bytes from 192.168.213.3: icmp_seq=0 ttl=64 time=0.169 ms
64 bytes from 192.168.213.3: icmp_seq=1 ttl=64 time=0.244 ms
^C
--- serpents-hold ping statistics ---
2 packets transmitted, 2 packets received, 0.0% packet loss
round-trip min/avg/max/stddev = 0.169/0.207/0.244/0.037 ms
OSXHost$