Hmm, I just looked at the mail archive and tried those steps, unfortunately I still can't access the machine remotely.
rhodocuccus:/home/lairdm # /usr/local/bin/ipmitool -I open -A none lan print 6 Set in Progress : Set Complete Auth Type Support : NONE MD2 MD5 PASSWORD Auth Type Enable : Callback : : User : : Operator : : Admin : NONE MD2 MD5 : OEM : IP Address Source : Static Address IP Address : 192.168.10.73 Subnet Mask : 255.255.255.128 MAC Address : 00:00:00:00:00:00 SNMP Community String : IP Header : TTL=0x40 Flags=0x40 Precedence=0x00 TOS=0x10 BMC ARP Control : ARP Responses Disabled, Gratuitous ARP Enabled Gratituous ARP Intrvl : 20.0 seconds Default Gateway IP : 192.168.10.1 Default Gateway MAC : 00:00:00:00:00:00 Backup Gateway IP : 0.0.0.0 Backup Gateway MAC : 00:00:00:00:00:00 Cipher Suite Priv Max : Not Available The Set is complete the IP address is correct, but the tool on the cluster head node still can't access the machine remotely. All my other machines work fine though. I'm wondering if it could be because those blank callback, user, and operator auth type lines which aren't blank on my other machines. Thoughts? Thanks. On Thu, 7 Sep 2006, Dan Carpenter wrote: > On 9/6/06, Matthew Laird <[EMAIL PROTECTED]> wrote: > > I did a dump of the network settings on this new machine and an existing > > machine and the only difference I can see is this "Set in Progress" line > > is set to "Set In Progress" on the new machine and "Set Complete" on the > > existing machine. > > > > On my hardware, I have to use the commit and the unlock for everything. > I've modified the code to do that unconditionally. Also I changed the > length "1" parameter on this function call __set_lan_param(intf, chan, > IPMI_LANP_SET_IN_PROGRESS, &val, 1, 0);. Before it was a "0" for the > UNLOCK call. > > See also this thread: > http://www.mail-archive.com/ipmitool-devel@lists.sourceforge.net/msg00095.html > > regards, > dan carpenter > > Index: lib/ipmi_lanp.c > =================================================================== > RCS file: /cvsroot/ipmitool/ipmitool/lib/ipmi_lanp.c,v > retrieving revision 1.49 > diff -u -r1.49 ipmi_lanp.c > --- lib/ipmi_lanp.c 28 Jun 2006 21:21:33 -0000 1.49 > +++ lib/ipmi_lanp.c 8 Sep 2006 03:17:16 -0000 > @@ -388,15 +388,12 @@ > static void > ipmi_lanp_unlock(struct ipmi_intf * intf, uint8_t chan) > { > - uint8_t val = IPMI_LANP_WRITE_COMMIT; > - int rc; > + uint8_t val; > > - rc = __set_lan_param(intf, chan, IPMI_LANP_SET_IN_PROGRESS, &val, 1, > 0); > - if (rc < 0) { > - lprintf(LOG_DEBUG, "LAN Parameter Commit not supported"); > - val = IPMI_LANP_WRITE_UNLOCK; > - __set_lan_param(intf, chan, IPMI_LANP_SET_IN_PROGRESS, > &val, 0, 0); > - } > + val = IPMI_LANP_WRITE_COMMIT; > + __set_lan_param(intf, chan, IPMI_LANP_SET_IN_PROGRESS, &val, 1, 0); > + val = IPMI_LANP_WRITE_UNLOCK; > + __set_lan_param(intf, chan, IPMI_LANP_SET_IN_PROGRESS, &val, 1, 0); > } > > /* set_lan_param - Wrap LAN parameter write with set-in-progress lock > > ------------------------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > Ipmitool-devel mailing list > Ipmitool-devel@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/ipmitool-devel > ------------------------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ Ipmitool-devel mailing list Ipmitool-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/ipmitool-devel