Skip to content

zendesk-thittesdorf/MoobSharp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MoobSharp

C# Library for working with Dell iDracs

To use this library, first get a Lom from Rac. You can then authenticate and call either OpenJNLP to run the Java console or SetPxe to set the next boot.

Always make sure to call Logout when quitting your app so that the sessions don't get full on the iDrac.

Detect Drac Type and get iLom

var iLom = Rac.GetDracForHost(Username, Password, Hostname, NoSSL);
if (iLom != null)
{
  // Found a dell iDrac.  Do stuff here.
}

Authenticate

iLom.Authenticate();

Open JNLP Console

iLom.JNLP();

Set Next Boot to PXE

iLom.SetPxeBoot();

Logout

iLom.Logout();

About

C# Library for working with Dell iDracs

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages