Part 2.5 - Disaster Recovery with SRM and vSphere Replication

Networking Revised

After adding a few more NICs to bubblebridge for the production Vlan's I realize that this starts to become ridiculous.
50 Vlans means 51 NIC's in bubblebridge...

There has to be a better way!

So in my case I believe that this alternative setup for bubblebridge is more maintainable. In this scenario I create a vlan trunk for all vlans in the recovery setup. This means that there only has to be one NIC attached to the vlan trunk in the bubblebridge server. Unfortunately its still a ton of configuration to do.

This is the alternative setup and the steps to reach it.
  1. As root - fix the 70-persistent-net.rules file.
    # This file was automatically generated by the /lib/udev/write_net_rules
    # program, run by the persistent-net-generator.rules rules file.
    #
    # You can modify it, as long as you keep each rule on a single
    # line, and change only the value of the NAME= key.
    # PCI device 0x15ad:0x07b0 (vmxnet3)
    SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:50:56:96:7a:d6", ATTR{type}=="1", KERNEL=="eth*", NAME="eth0"
    # PCI device 0x15ad:0x07b0 (vmxnet3)
    SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:50:56:96:b2:81", ATTR{type}=="1", KERNEL=="eth*", NAME="eth1"
  2. Change /etc/sysconfig/network-scripts/ifcfg-eth1 file

    DEVICE=eth1
    BOOTPROTO=none
    NM_CONTROLLED=yes
    ONBOOT=no
    TYPE=Ethernet
  3. Add etc/sysconfig/network-scripts/ifcfg-eth1. example ifcfg-eth1.662le


    DEVICE=eth1.662
    BOOTPROTO=static
    NM_CONTROLLED=yes
    ONBOOT=yes
    TYPE=Ethernet
    IPADDR=172.18.51.251
    NETMASK=255.255.255.0
    VLAN=yes
  4. I opt for diablig of IPv6 by adding below to /etc/sysctl.conf


    net.ipv6.conf.all.disable_ipv6 = 1
    net.ipv6.conf.default.disable_ipv6 = 1
  5. To make it stick run


    sysctl -p 

Bubblebridge and VLan trunking
The result of above should be a configuration like the one above. Even though there will be a ifcfg-eth1.XXX per VLAN its still much simplified.

Comments

Anonymous said…
Disaster recovery plan is essential for data backup recovery of lost data from the system. This blog provide very good information on disaster recovery development.

Popular posts from this blog

Possible SYN flooding on port 3306 (MySQL)

Part 1 - Disaster Recovery with SRM and vSphere Replication

Part 2 - Disaster Recovery with SRM and vSphere Replication