Changes between Version 6 and Version 7 of VmServer
- Timestamp:
- May 16, 2007, 12:56:28 PM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
VmServer
v6 v7 20 20 The passwords can be found in the file 'README-vmware-image' that is part of the zip file.[[BR]] 21 21 22 === Network Access === 23 24 You can either use NAT (Network Address Translation) or Bridged Ethernet to get network access from within the VM: 25 26 NAT:: 27 means that you share the IP address of the host machine in order to make outgoing connections (access internet sites from within your VM). Incoming connections from other machines (except the host machine) are not possible. Scanning the network will only reveal one machine, your host. 28 29 Bridget:: 30 means that the VM will act like a real machine within your network. It tries to get an IP over DHCP within the same range like your host machine. Outgoing and Incoming connections are possible. Scanning the network will reveal two machines, your host and the VM. 31 22 32 On Windows, you may need to do the following to get network access in the VM: 23 33 {{{ … … 29 39 In the NAT tab: VMnet host: VMnet8 30 40 }}} 41 42 You should also add the IP address and hostname of the VM to your windows hosts file. To do this edit c:\windows\system32\drivers\etc\hosts with an editor and add for example: 43 {{{ 44 192.168.190.128 debian.localdomain 45 }}} 46 With this you can connect a client from your host machine to your VM. 31 47 32 48 == Virtual machines for building and testing apps ==