How to install ipmitool to support IPMI on Debian Lenny for Dell PE sc1435
[
2010/04/27 14:40 | by askwan ]
2010/04/27 14:40 | by askwan ]
The Intelligent Platform Management Interface (IPMI) specification is an Intel led standard which defines a set of common interfaces to a computer system which system administrators can use to monitor system health and manage the system.
DELL PE sc1435 have Standard Baseboard Management Controller with IPMI 2.0 support,so we can use this feature to manage our servers .
IPMItool is a command line utility for managing and configuring systems with IPMI support. This tool allows you the ability to communicate directly with the IPMI card installed in the server or over a network using TCP/IP.
First , Power On PowerEdge sc1435 server ,when BIOS check , input Ctrl-E to keyboard:
then configure IMPI to the server, and also you can refer this guide document:
http://www.dell.com/downloads/global/power/ps4q04-20040204-Murphy.pdf
then,start OS(Debian Lenny 5.0.3 amd64)
http://ipmitool.sourceforge.net/manpage.html
Reference:
ftp://download.intel.com/design/servers/ipmi/IPMIv2_0rev1_0.pdf
http://en.wikipedia.org/wiki/Intelligent_Platform_Management_Interface
http://www.mainehost.com/DellPowerEdge-SC1435.pdf
http://openipmi.sourceforge.net/IPMI.pdf
http://lab.advancedclustering.com/twiki/bin/view/Documentation/IPMITools
http://lonesysadmin.net/2007/06/21/how-to-configure-ipmi-on-a-dell-poweredge-running-red-hat-enterprise-linux/
-------END------
DELL PE sc1435 have Standard Baseboard Management Controller with IPMI 2.0 support,so we can use this feature to manage our servers .
IPMItool is a command line utility for managing and configuring systems with IPMI support. This tool allows you the ability to communicate directly with the IPMI card installed in the server or over a network using TCP/IP.
First , Power On PowerEdge sc1435 server ,when BIOS check , input Ctrl-E to keyboard:
then configure IMPI to the server, and also you can refer this guide document:
http://www.dell.com/downloads/global/power/ps4q04-20040204-Murphy.pdf
then,start OS(Debian Lenny 5.0.3 amd64)
#apt-get install ipmitool #apt-get install openipmi libopenipmi-dev
# modprobe ipmi_watchdog # modprobe ipmi_poweroff # modprobe ipmi_devintf # modprobe ipmi_si # modprobe ipmi_msghandlerCheck if ipmi_xxx related kernel modules have loaded or not:
# lsmod |grep ipmi ipmi_si 43628 2 ipmi_devintf 13200 0 ipmi_poweroff 13776 0 ipmi_watchdog 22896 0 ipmi_msghandler 38520 4 ipmi_si,ipmi_devintf,ipmi_poweroff,ipmi_watchdogNow,as you see, it have loaded,create the IPMI device:
mknod /dev/ipmi0 c `cat /proc/devices | grep ipmidev | awk '{print $1}' ` 0
you can then use ipmitool now !
#ipmitool lan print 1
Set in Progress : Set Complete
Auth Type Support : NONE MD2 MD5 PASSWORD
Auth Type Enable : Callback : MD2 MD5
: User : MD2 MD5
: Operator : MD2 MD5
: Admin : MD2 MD5
: OEM : MD2 MD5
IP Address Source : Static Address
IP Address : 192.168.101.3
Subnet Mask : 255.255.255.0
MAC Address : 00:18:8b:89:52:84
SNMP Community String : public
IP Header : TTL=0x40 Flags=0x40 Precedence=0x00 TOS=0x10
Default Gateway IP : 192.168.101.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
802.1q VLAN ID : Disabled
802.1q VLAN Priority : 0
RMCP+ Cipher Suites : 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14
Cipher Suite Priv Max : aaaaaaaaaaaaaaa
: X=Cipher Suite Unused
: c=CALLBACK
: u=USER
: o=OPERATOR
: a=ADMIN
: O=OEM
and you can reconfigure ipmi sets:
# ipmitool -I open lan set 1 ipsrc static # ipmitool -I open lan set 1 ipaddr 192.168.101.154 Setting LAN IP Address to 192.168.101.154 # ipmitool -I open lan set 1 defgw ipaddr 192.168.101.1 Setting LAN Default Gateway IP to 192.168.101.1 # ipmitool -I open lan set 1 netmask 255.255.255.0 Setting LAN Subnet Mask to 255.255.255.0 # ipmitool -I open lan set 1 access on #ipmitool -I open user set password 2 askwan.comlogo to another server,check the server's system event log:
# ipmitool -I lan -H 192.168.101.154 -U root -a sel list Password:
1 | 01/08/2010 | 03:45:19 | Event Logging Disabled #0x72 | Log area reset/cleared | Asserted 2 | Pre-Init Time-stamp | Power Supply #0x65 | Power Supply AC lost | Asserted 3 | Pre-Init Time-stamp | Power Supply #0x74 | Redundancy Lost 4 | 01/31/2010 | 06:19:46 | Power Supply #0x65 | Failure detected | Asserted 5 | 01/31/2010 | 06:19:50 | Power Supply #0x74 | Redundancy Lost 6 | 02/04/2010 | 22:52:58 | Power Supply #0x65 | Power Supply AC lost | Asserted 7 | 02/04/2010 | 22:53:08 | Power Supply #0x65 | Power Supply AC lost | Deasserted 8 | 02/04/2010 | 22:53:10 | Power Supply #0x74 | Fully Redundant 9 | 02/21/2010 | 19:41:41 | Power Supply #0x65 | Failure detected | Asserted a | 02/21/2010 | 19:41:44 | Power Supply #0x74 | Redundancy Lost b | 04/05/2010 | 21:13:58 | Power Supply #0x74 | Fully Redundantfor more usage of ipmitool ,please refer ipmitool man page :
http://ipmitool.sourceforge.net/manpage.html
Reference:
ftp://download.intel.com/design/servers/ipmi/IPMIv2_0rev1_0.pdf
http://en.wikipedia.org/wiki/Intelligent_Platform_Management_Interface
http://www.mainehost.com/DellPowerEdge-SC1435.pdf
http://openipmi.sourceforge.net/IPMI.pdf
http://lab.advancedclustering.com/twiki/bin/view/Documentation/IPMITools
http://lonesysadmin.net/2007/06/21/how-to-configure-ipmi-on-a-dell-poweredge-running-red-hat-enterprise-linux/
-------END------

????? ? ????
???????????????????????????????????????????????
??????……
??????????????????????????????????????????????????P??
"??"????????????????????????????”????“???????……
How to configure bounce handling in PhpList
[
2010/04/02 14:17 | by askwan ]
2010/04/02 14:17 | by askwan ]
One of the strengths of phpList is its handling of "bounces".
A bounce is an email message that is returned because it could not be delivered for a number of reasons: The mailbox of the recipient might be full, the email address might no longer be valid or temporarily disabled, the email address might be misspelled, etc. A bounce is not the same as an out-of-office reply. For more info, see this Wikipedia article on bounces.
editor config.php file
look for "Settings for handling bounces" section
then save it .
now, install exim4 and dovecot
then you can use foxmail receive email from you phplist host that have bounced !
A bounce is an email message that is returned because it could not be delivered for a number of reasons: The mailbox of the recipient might be full, the email address might no longer be valid or temporarily disabled, the email address might be misspelled, etc. A bounce is not the same as an out-of-office reply. For more info, see this Wikipedia article on bounces.
editor config.php file
look for "Settings for handling bounces" section
$message_envelope = 'hawking@localhost';
$bounce_protocol = 'mbox';
define ("MANUALLY_PROCESS_BOUNCES",1);
$bounce_mailbox_port = "110/pop3/notls";
# when the protocol is pop, specify these three
$bounce_mailbox_host = 'localhost';
$bounce_mailbox_user = 'askwan@localhost';
$bounce_mailbox_password = 'askwan.com';
$bounce_unsubscribe_threshold = 3;
then save it .
now, install exim4 and dovecot
apt-get install exim4 exim4-base exim4-config dovecot-common dovecot-pop3dconfigure exim4 and dovecot.conf
protocols = pop3 disable_plaintext_auth = no ssl_disable = yes mail_location = mbox:~/mail:INBOX=/var/mail/%ulast, restart dovecot and exim4
then you can use foxmail receive email from you phplist host that have bounced !
That a "machine" you are sitting in front of the machine?
[
2010/03/30 22:12 | by askwan ]
2010/03/30 22:12 | by askwan ]
"??? ???? " ???????? ?????



