Re: [Ipmitool-devel] /dev/ipmi0 not seen by ipmitool?

2008-02-21 Thread Kurt Yoder
The device looks correct: # ls -l /dev/ipmi* crw-r--r-- 1 root root 254, 0 2008-02-19 11:59 /dev/ipmi0 the major node looks correct as well: # cat /proc/devices | grep ipmi 254 ipmidev the kernel modules appear to be loaded: # lsmod | grep ipmi ipmi_watchdog 20156 0 ipmi_devintf

Re: [Ipmitool-devel] /dev/ipmi0 not seen by ipmitool?

2008-02-21 Thread David Ranch
You DO need the 'si' driver (as least I do). The SI driver should give a better error report than '17'. Look at the src code and see if there are any better descriptions there. --david - Original Message - From: Kurt Yoder [EMAIL PROTECTED] To: David Ranch Cc:

Re: [Ipmitool-devel] /dev/ipmi0 not seen by ipmitool?

2008-02-21 Thread Corey Minyard
What Linux version are you running? That error means that the driver was unable to register with the I/O subsystem because the name was already registered. Which is very strange, because this is the only thing that is using that name. So you are trying to load a module and the function is

Re: [Ipmitool-devel] /dev/ipmi0 not seen by ipmitool?

2008-02-21 Thread Kurt Yoder
I'm using varying versions of Ubuntu stock kernels: 2.6.17-10 2.6.22-14 2.6.20-15 I just tried installing the modules and device on a different machine with 2.6.20-15, and got a different error than the -17. On the command line: FATAL: Error inserting ipmi_si

Re: [Ipmitool-devel] /dev/ipmi0 not seen by ipmitool?

2008-02-21 Thread David A. Ranch
This might be an issue with needing to specify specific memory locations for your specific BMC. Try unloading ALL IPMI kernel modules and then run this script but you'll need to research and specify the right memory regions: ipmimod.sh -- #!/bin/bash #IPMI kernel module installer for

Re: [Ipmitool-devel] /dev/ipmi0 not seen by ipmitool?

2008-02-21 Thread Cress, Andrew R
Check dmidecode to see if it puts out a type 38 (IPMI) record. If so, the Base Address should be listed there. Andy -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of David A. Ranch Sent: Thursday, February 21, 2008 4:25 PM To: Kurt Yoder Cc:

Re: [Ipmitool-devel] /dev/ipmi0 not seen by ipmitool?

2008-02-21 Thread Garrick Staples
On Thu, Feb 21, 2008 at 02:04:35PM -0800, David A. Ranch alleged: Hmm.. that doesn't work for me. dmidecode shows: /usr/sbin/dmidecode | grep 38 Handle 0x0030, DMI type 38, 12 bytes. but I have to use: IPMI_SI_MODULE_OPTIONS=type=kcs ports=0xca8 regspacings=4 I think the number you

Re: [Ipmitool-devel] /dev/ipmi0 not seen by ipmitool?

2008-02-21 Thread David A. Ranch
You are using udev? It's very strange that /dev/ipmi0 was created. Can you send: The contents of /proc/ipmi/0 That's interesting. I have various reliability and performance issues with these Supermicro BMCs and I see the following: # cat /proc/ipmi/0/si_stats interrupts_enabled:

Re: [Ipmitool-devel] /dev/ipmi0 not seen by ipmitool?

2008-02-21 Thread Corey Minyard
Kurt Yoder wrote: On Feb 21, 2008, at 4:58 PM, Corey Minyard wrote: Kurt Yoder wrote: I'm using varying versions of Ubuntu stock kernels: 2.6.17-10 2.6.22-14 2.6.20-15 I just tried installing the modules and device on a different machine with 2.6.20-15, and got a different error than