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.
There has to be a better way!
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.
- 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"
- Change /etc/sysconfig/network-scripts/ifcfg-eth1 file
DEVICE=eth1BOOTPROTO=noneNM_CONTROLLED=yesONBOOT=noTYPE=Ethernet - Add etc/sysconfig/network-scripts/ifcfg-eth1.
example ifcfg-eth1.662le
DEVICE=eth1.662BOOTPROTO=staticNM_CONTROLLED=yesONBOOT=yesTYPE=EthernetIPADDR=172.18.51.251NETMASK=255.255.255.0VLAN=yes - I opt for diablig of IPv6 by adding below to /etc/sysctl.conf
net.ipv6.conf.all.disable_ipv6 = 1net.ipv6.conf.default.disable_ipv6 = 1 - 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