private static VmNetworkInterface createNewViewableInterface(boolean plugged) {
   VmNetworkInterface iface = new VmNetworkInterface();
   iface.setId(Guid.newGuid());
   iface.setMacAddress(RandomUtils.instance().nextString(10));
   iface.setPlugged(plugged);
   return iface;
 }