public hypSpec_withWindbgKernel(
     string IPOrHostname, string snapshotName, string newSnapshotFullName,
     ushort debugPort      = 0, string debugKey = null,
     string serialPortName = null, string newKDProxyIPAddress = null,
     kernelConnectionMethod newDebugMethod = kernelConnectionMethod.none)
 {
     kernelDebugIPOrHostname = IPOrHostname;
     kernelDebugPort         = debugPort;
     kernelDebugSerialPort   = serialPortName;
     kernelDebugKey          = debugKey;
     KDProxyIPAddress        = newKDProxyIPAddress;
     debugMethod             = newDebugMethod;
     snapshotFriendlyName    = snapshotName;
     snapshotFullName        = newSnapshotFullName;
 }
Esempio n. 2
0
 public hypSpec_vmware(
     string kernelVmName,
     string kernelVmServer, string kernelVmServerUsername, string kernelVmServerPassword,
     string kernelVmUsername, string kernelVmPassword,
     string snapshotFriendlyName, string snapshotNASPath,
     ushort kernelDebugPort, string kernelVMKey, string vmIPIOrHostname,
     string kernelVmDebugSerialPort        = null, string newKDProxyIPAddress = null,
     kernelConnectionMethod newDebugMethod = kernelConnectionMethod.none)
     : base(vmIPIOrHostname, snapshotFriendlyName, snapshotNASPath, kernelDebugPort, kernelVMKey, kernelVmDebugSerialPort, newKDProxyIPAddress, newDebugMethod)
 {
     kernelVMName           = kernelVmName;
     kernelVMServer         = kernelVmServer;
     kernelVMServerUsername = kernelVmServerUsername;
     kernelVMServerPassword = kernelVmServerPassword;
     kernelVMUsername       = kernelVmUsername;
     kernelVMPassword       = kernelVmPassword;
 }
Esempio n. 3
0
 public hypSpec_iLo(string hostIP,
                    string hostUsername, string hostPassword,
                    string iloHostname, string iLoUsername, string iloPassword,
                    string iscsiServerIP, string iscsiServerUsername, string iscsiServerPassword,
                    string snapshotName, string snapshotPath,
                    UInt16 hostKernelDebugPort, string hostKernelDebugKey,
                    string hostKernelDebugSerialPort   = null, string KDProxyIPAddress = null,
                    kernelConnectionMethod debugMethod = kernelConnectionMethod.none)
     : base(hostIP, snapshotName, snapshotPath, hostKernelDebugPort, hostKernelDebugKey, hostKernelDebugSerialPort, KDProxyIPAddress, debugMethod)
 {
     this.hostUsername        = hostUsername;
     this.hostPassword        = hostPassword;
     this.iLoHostname         = iloHostname;
     this.iLoUsername         = iLoUsername;
     this.iLoPassword         = iloPassword;
     this.iscsiserverIP       = iscsiServerIP;
     this.iscsiServerUsername = iscsiServerUsername;
     this.iscsiServerPassword = iscsiServerPassword;
     this.snapshotFullName    = snapshotPath;
 }