Introduction

Bridged networking can be used to configure your Virtual Machines. Some tweaking is necessary to make the network configuration work on our network.

Lines highlighted in yellow in the configuration examples keywords in capital letters that you must change for your own values. For example; IP_FAIL_OVER which you must change for your failover IP.

 
DEFAULT_SERVER_IP: The primary IP of your dedicated server.
IP_FAIL_OVER: The Failover IP you want to configure
GATEWAY_VM: Your server IP with the last octet replaced by 254

Requirements

  • A dedicated server with an hypervisor installed (Ex: VMware ESXi, Citrix Xen Server, Proxmox, etc.)
  • Have assigned a mac to a virtual IP FailOver
  • Knowledge about SSH

Determining the gateway

To configure Virtual Machines, you need to know the gateway of your host machine (nsxxx.webhosting4u.gr; ksxxx.webhosting4u.gr ...). To do this, you must replace the last octet of the IP address assigned to your server with .254.

You can find the IP of your server in the WebHosting|4U Customers Area.

For example:

  • IP of your server : 123.456.789.012
  • Gateway’s IP is your server’s main IP ending in .254
  • So the gateway’s IP is: 123.456.789.254

Applying the configuration

Warning

The gateway you need to use in your virtual machine should not be, The IP of your dedicated server or IP failover but you must use the gateway provides for your dedicated server. You must in no case use:

route add default gw dev eth0

Otherwise you may cut your IP for the virtual server. To determine the correct gateway to use:

  • IP failover is: YYY.YYY.YYY.YYY
  • Main IP of your dedicated server: XXX.XXX.XXX.XXX
  • So the IP of the gateway for your virtual machine (GATEWAY_VM) : **XXX.XXX.XXX**.254

This gateway will be referred as GATEWAY_VM later in the guide.

Debian & derivatives (Ubuntu, CrunchBang, SteamOS...)

File: /etc/network/interfaces

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
auto lo eth0
iface lo inet loopback
iface eth0 inet static
    address IP.FAIL.OVER
    netmask 255.255.255.255
    broadcast IP.FAIL.OVER
    post-up route add GATEWAY_VM dev eth0
    post-up route add default gw GATEWAY_VM
    pre-down route del GATEWAY_VM dev eth0
    pre-down route del default gw GATEWAY_VM

File: /etc/resolv.conf

1
nameserver 8.8.8.8 # Google DNS Server

Note

For Debian 6, dns server configuration is done directly in the file /etc/network/interfaces where you have to find this section:

# dns-* options are implemented by the resolvconf package, if installed (default)
dns-nameservers 8.8.8.8 # Google DNS Server
dns-search webhosting4u.gr # For faster hosts resolution on the WebHosting|4U network

Redhat & derivatives (CentOS 6, Scientific Linux, ClearOS...)

File: /etc/sysconfig/network-scripts/ifcfg-eth0

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
DEVICE=eth0
BOOTPROTO=none
ONBOOT=yes
USERCTL=no
IPV6INIT=no
PEERDNS=yes
TYPE=Ethernet
NETMASK=255.255.255.255
IPADDR=IP.FAIL.OVER
GATEWAY=GATEWAY_VM
ARP=yes
HWADDR=MY:VI:RT:UA:LM:AC

File : /etc/sysconfig/network-scripts/route-eth0

1
2
GATEWAY_VM dev eth0
default via GATEWAY_VM dev eth0

File : /etc/resolv.conf

1
nameserver 8.8.8.8 # Google DNS Server

CentOS 7

Warning

For CentOS 7, the network adapter will vary depending on the installation. You will need to verify what is the adapter name and use it to configure your Virtual Machine. Use the command ipaddr to find your interface name.

File: /etc/sysconfig/network-scripts/ifcfg-(insert interface Name)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
DEVICE=(insert interface Name)
BOOTPROTO=none
ONBOOT=yes
USERCTL=no
IPV6INIT=no
PEERDNS=yes
TYPE=Ethernet
NETMASK=255.255.255.255
IPADDR=IP.FAIL.OVER
GATEWAY=GATEWAY_VM
ARP=yes
HWADDR=MY:VI:RT:UA:LM:AC

Note

If the file route-(insert interface Name) does not exist, you’ll have to create it. For CentOS 7, NETWORK_GW_VM= Network of the GATEWAY_VM which is the main IP of your server where you replace the last octet by 0.

File: /etc/sysconfig/network-scripts/route-(insert interface Name)

1
2
3
GATEWAY_VM - 255.255.255.255 (insert interface Name)
NETWORK_GW_VM - 255.255.255.0 (insert interface Name)
default GATEWAY_VM

File: /etc/resolv.conf

1
nameserver 213.186.33.99

OpenSUSE

Note

For OpenSUSE, NETWORK_GW_VM= Network of the GATEWAY_VM which is the main IP of your server where you replace the last octet by 0.

If the file ifcfg-ens32 does not exist, you’ll have to create it.

File : /etc/sysconfig/network/ifcfg-ens32

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
DEVICE=ens32
BOOTPROTO=static
ONBOOT=yes
ARP=yes
USERCTL=no
IPV6INIT=no
TYPE=Ethernet
STARTMODE=auto
IPADDR=IP.FAIL.OVER
NETMASK=255.255.255.255
GATEWAY=GATEWAY_VM
HWADDR=MY:VI:RT:UA:LM:AC

If the file ifroute-ens32 does not exist, you’ll have to create it.

File : /etc/sysconfig/network/ifroute-ens32

1
2
3
GATEWAY_VM - 255.255.255.255 ens32
NETWORK_GW_VM - 255.255.255.0 ens32
default GATEWAY_VM

In /etc/sysconfig/network/config, you need to have:

1
NETCONFIG_DNS_STATIC_SERVERS=”213.186.33.99”

FreeBSD 8.0

File : /etc/rc.conf

1
2
3
4
ifconfig_em0="inet IP.FAIL.OVER netmask 255.255.255.255 broadcast IP.FAIL.OVER"
static_routes="net1 net2"
route_net1="-net GATEWAY_VM/32 IP.FAIL.OVER"
route_net2="default GATEWAY_VM"

File : /etc/resolv.conf

1
nameserver 8.8.8.8 # Google DNS Server

Windows 2003

First, open the “Network Connections” panel (Start -> Control Panel -> Network Connections -> Local Area Connections)

Then, select Properties :

_images/network-bridging-windows-2003-1.jpg

Local Area Connections

Then, select Internet Protocol (TCP/IP):

_images/network-bridging-windows-2003-2.jpg

Local Area Connections

Finally, you will need your ip Failover in the field “IP Address”, the subnet mask 255.255.0.0, the gateway to your physical machine as default gateway and ip 213.186.33.99 as the preferred DNS server.

_images/network-bridging-windows-2003-3.jpg

Internet Protocol (TCP/IP)

For the second step, via the Start menu, click Run, then type regedit. Once in the application, you should find your ip-failover (Edit -> Search). Once the IP found, double-click the parameter SubnetMask? “and change 255.255.0.0 to 255.255.255.255, then you validate.

Close the registry editor

Finally, to validate the changes, you must restart the network interface (Start -> Control Panel -> Network Connections -> Connection LAN -> right click, then Disable)

Wait a few seconds and re-enable the network connection

Windows Server 2012 / Hyper-V

First you need to create Virtual Switch.

  1. On the command line of the host server run IPconfig /ALL

  2. Note the name of the network adapter that contains the IP address of the server’s assigned IP.

  3. In Hyper-V manager create the a new virtual switch.
    • Connection Type is External
    • Select the adapter with the server’s IP
    • Check Allow management OS to share this network adapter
_images/network-bridging-windows-2012-1.jpg

Virtual Switch Manager

Note

This step only is required once for a hyper-v server. For all VMs, a virtual switch is required to connect the VM’s virtual network adapters to the server’s physical adapter.

Then select the VM that you wish to add the Failover IP. Use the Hyper-V Manager to change the settings of the VM (it needs to be shutdown).

  1. Expand the Network Adapter and click on Advanced Features.
  2. Change the MAC address to Static and enter the Virtual MAC address for Failover IP.
  3. Press OK to apply changes.
_images/network-bridging-windows-2012-2.jpg

Hyper-V Manager

Start the VM and log in as an administrator.

  1. Control Panel > Network and Share Center
  2. Click on the Connections: Ethernet link
  3. Click on Properties Button to show Ethernet Properties
  4. Select Internet Protocol Version 4 (TCP/IPv4)
  5. Click on Properties Button to show IP V4 Properties
_images/network-bridging-windows-2012-3.jpg

Ethernet Properties

On the IPv4 Properties window:

  1. Select the Use the following IP address
  2. Enter the Failover IP into the IP Address
  3. Enter 255.255.255.255 into the Subnet Mask
  4. Enter your server’s gateway IP address into the Default Gateway (your server’s IP ending with 254)
  5. Enter 213.186.33.99 into the Preferred DNS Server.
  6. Press OK and ignore the warning message about the gateway IP and Assigned IP not being in the same subnet.
_images/network-bridging-windows-2012-4.jpg

Ethernet Properties

Finally, reboot server and the VM should be connected to the internet using the failover IP.

Other distributions

Here is the network configuration required in the Virtual Machine:

  • ip: IP_FAIL_OVER
  • netmask: 255.255.255.255

It is also required to add a default gateway to the Virtual Machine:

route add GATEWAY_VM dev eth0
route add default gw GATEWAY_VM

You will then need to configure the DNS of your machine so that it can make domain resolution. The IP of the Google DNS server is 8.8.8.8

Ήταν χρήσιμη αυτήν την απάντηση; 231 Χρήστες που βρήκαν αυτό χρήσιμο (452 Ψήφοι)