Changes between Version 33 and Version 34 of VmServer


Ignore:
Timestamp:
Jun 4, 2008, 3:25:59 PM (16 years ago)
Author:
davea
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • VmServer

    v33 v34  
    3535=== Network Access === #server-network
    3636
     37
    3738VMWare provides two ways to access the network from the VM:
    3839Bridged Ethernet and NAT (Network Address Translation).
     
    4041We recommend that you start with Bridged Ethernet.
    4142
     43The first time you boot the VM, log on as root and delete the file
     44{{{
     45/etc/udev/rules.d/rules.d/z25_persistent-net.rules
     46}}}
     47
    4248=== Bridged Ethernet ===
    43 The VM will act like a real machine on your network.
     49
     50In this mode, the VM will act like a separate machine on your network.
    4451Scanning the network will reveal two machines, your host and the VM.
    4552Outgoing and incoming connections are possible.
    4653
    47 By default, the VM will get an IP address via DHCP.
    48 This will work if your network has a DHCP server configured to
    49 issue IP address to new hosts.
    50 
    51 
    52 Alternatively, you can give the VM a static IP address.
     54We recommend that you give the VM a static IP address.
    5355To do this, edit /etc/network/interfaces.
    5456For example:
     
    5658# The primary network interface
    5759auto eth0
    58 #iface eth0 inet dhcp
    59 #       pre-up iptables-restore < /etc/iptables.up.rules
     60
    6061iface eth0 inet static
    6162address 141.142.234.9
     
    8283If you're using a proxy to access the internet you should add 'debian.localdomain' to your list of exceptions in your browser.
    8384You won't need a proxy to resolve a local address.
     85
     86Alternatively, you can get an IP address via DHCP.
     87'''We don't recommend this because clients will get confused if the IP address changes.'''
     88To do this, edit /etc/network/interfaces to include:
     89{{{
     90iface eth0 inet dhcp
     91}}}
     92This will work if your network has a DHCP server configured to
     93issue IP address to new hosts.
    8494
    8595=== NAT ===