Examples of BridgedIf


Examples of org.jclouds.virtualbox.domain.BridgedIf

   protected String getIpAddressFromBridgedNIC(INetworkAdapter networkAdapter) {
      // RetrieveActiveBridgedInterfaces
      List<BridgedIf> activeBridgedInterfaces = new RetrieveActiveBridgedInterfaces(scriptRunnerFactory)
            .apply(hostSupplier.get());
      BridgedIf activeBridgedIf = checkNotNull(Iterables.get(activeBridgedInterfaces, 0), "activeBridgedInterfaces");
      String network = activeBridgedIf.getIpAddress();

      // scan ip
      RunScriptOnNode ipScanRunScript = scriptRunnerFactory.create(hostSupplier.get(),
            new ScanNetworkWithPing(network), RunScriptOptions.NONE);
      ExecResponse execResponse = ipScanRunScript.init().call();
View Full Code Here

Examples of org.jclouds.virtualbox.domain.BridgedIf

  "Status:          Down\n" +
  "VBoxNetworkName: HostInterfaceNetworking-p2p0\n";

  @Test
  public void transformRawBridgedifToBridgedIf() {
    BridgedIf bridgedIfEn1 = new BridgedIfStringToBridgedIf().apply(en1);
        assertEquals(bridgedIfEn1.getName(), "en1: Wi-Fi (AirPort)");
  }
View Full Code Here

Examples of org.jclouds.virtualbox.domain.BridgedIf

   protected String getIpAddressFromBridgedNIC(INetworkAdapter networkAdapter) {
      // RetrieveActiveBridgedInterfaces
      List<BridgedIf> activeBridgedInterfaces = new RetrieveActiveBridgedInterfaces(scriptRunnerFactory)
            .apply(hostSupplier.get());
      BridgedIf activeBridgedIf = checkNotNull(Iterables.get(activeBridgedInterfaces, 0), "activeBridgedInterfaces");
      String network = activeBridgedIf.getIpAddress();

      // scan ip
      RunScriptOnNode ipScanRunScript = scriptRunnerFactory.create(hostSupplier.get(),
            new ScanNetworkWithPing(network), RunScriptOptions.NONE);
      ExecResponse execResponse = ipScanRunScript.init().call();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.