Server Products
Data Center Products including boards, integrated systems, Intel® Xeon® Processors, RAID Storage, and Intel® Xeon® Processors
4761 Discussions

BMC RMM4 connection failure

TNils5
Beginner
610 Views

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

0 Kudos
2 Replies
SergioS_Intel
Moderator
459 Views

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. 

 

 https://www.intel.com/content/dam/support/us/en/documents/motherboards/server/sb/g31608015_s2600jf_tps_r2_41.pdf

 

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

0 Kudos
Max44
Beginner
459 Views

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);

               }

           }

       }

 

0 Kudos
Reply