Home | 簡體中文 | 繁體中文 | 雜文 | 打賞(Donations) | ITEYE 博客 | OSChina 博客 | Facebook | Linkedin | 知乎專欄 | Search | Email

第 26 章 Dell Server

目錄

26.1. iDRAC - Integrated Dell Remote Access Controller 6 - Enterprise
26.1.1. default password
26.1.2. iDRAC6 Configuration Utility
26.1.3. 通過 ipmitool 查看iDRAC IP地址
26.1.4. 修改iDRAC密碼
26.2. PERC H700 Integrated - Raid Card
26.2.1. Clear Config
26.2.2. Raid 0
26.2.3. Raid 1
26.2.4. Raid 5
26.2.5. Raid 6
26.2.6. Raid 10
26.2.7. Raid 50
26.2.8. HS
26.2.9. Virtual Disk
26.2.10. Save

26.1. iDRAC - Integrated Dell Remote Access Controller 6 - Enterprise

26.1.1. default password

root: calvin

26.1.2. iDRAC6 Configuration Utility

我一般不再iDRAC中配置密碼,因為我的密碼比較複雜,輸入起來比較麻煩。

比習慣使用 ipmitool set password 2 password "0KXcHhqPHXg7PrQ9" 設置比較複雜的密碼。

26.1.3. 通過 ipmitool 查看iDRAC IP地址

# ipmitool -I open 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      :
IP Address Source       : Static Address
IP Address              : 172.16.5.46
Subnet Mask             : 255.255.255.0
MAC Address             : 18:03:73:f5:ef:87
SNMP Community String   : public
IP Header               : TTL=0x40 Flags=0x40 Precedence=0x00 TOS=0x10
Default Gateway IP      : 172.16.5.254
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          : 1
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
			

26.1.4. 修改iDRAC密碼

登陸Linux伺服器使用ipmitool命令行修改drac密碼

ipmitool user list [channel number] 			# 列舉用戶及用戶ID
ipmitool user set password [user id] [password] # 更改密碼
			
/sbin/service ipmi start

# ipmitool user list 2
ID  Name             Enabled Callin  Link Auth  IPMI Msg   Channel Priv Limit
2   root             true    true    true       true       ADMINISTRATOR

ipmitool set password 2 password "chen" 	#dell 1950用法
ipmitool set password 2 "chen" 				#dell 2950用法,去掉後一個password關鍵字
			

R160 用法

# ipmitool user list 2
ID  Name	     Callin  Link Auth	IPMI Msg   Channel Priv Limit
2   root             true    true       true       ADMINISTRATOR

# ipmitool user set password 2 your_password
			

FreeBSD

cd /usr/ports/sysutils/ipmitool
make install
kldload ipmi
ipmitool user set password 2 "chen"