- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I have a set of S2600JF with RMM4. BMC firmware BMC FW Rev : 01.16.4010.
I set it up but cannot connect to it (even if I attach a standalone PC to the NIC management port). When I connect it to the Switch, I see some ARP MAC addresses. I suspect the MAC address is not from the RMM4 but from a Baseboard MAC.
Can you propose any solution or troubleshooting guidance?
Thanks
Tore
Link Copied
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hello TNils5,
The interactive technical support for the Intel® Server Board S2600JF you have requested has been discontinued. We can provide you with resources and self-service support information through our website.
We highly suggest that you get information from the technical product specification site and all available technical information is included in the support site.
You can additionally check how to configure the Baseboard Management Controller (BMC).
https://www.intel.com/content/www/us/en/support/articles/000007913/server-products.html
I am going to proceed and move your thread to the Discontinued Products Community, so you can get recommendations from fellow community members.
Best regards,
Sergio S.
Intel Customer Support Technician
A Contingent Worker at Intel
For firmware updates and troubleshooting tips, visit :https://intel.com/support/serverbios
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Here’s our piece of code using RRM:
public static void Get()
{
var wsman = new WSManClass();
var options = (IWSManConnectionOptions) wsman.CreateConnectionOptions();
if (options != null)
{
try
{
options.UserName = "root";
options.Password = "root";
int iFlags = wsman.SessionFlagCredUsernamePassword();
var session =
(IWSManSession) wsman.CreateSession("http://10.182.171.195:8889/wsman", iFlags, options);
if (session != null)
{
try
{
var identity = session.Identify();
var s = "http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/ComputerSystem";
var reply = session.Get(s);
var doc = new XmlDocument();
doc.LoadXml(reply);
foreach (var elementName in new string[] {"p:Caption", "p:Description"})
{
var node = doc.GetElementsByTagName(elementName)[0];
if (node != null) Console.WriteLine(node.InnerText);
}
}
finally
{
Marshal.ReleaseComObject(session);
}
}
}
catch (Exception ex)
{
Console.WriteLine(ex);
}
finally
{
Marshal.ReleaseComObject(options);
}
}
}
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page