Home | 简体中文 | 繁体中文 | 杂文 | 知乎专栏 | 51CTO学院 | CSDN程序员研修院 | Github | OSChina 博客 | 腾讯云社区 | 阿里云栖社区 | Facebook | Linkedin | Youtube | 打赏(Donations) | About
知乎专栏多维度架构

第 25 章 Dell Server

目录

25.1. iDRAC - Integrated Dell Remote Access Controller 6 - Enterprise
25.1.1. default password
25.1.2. iDRAC6 Configuration Utility
25.1.3. 通过 ipmitool 查看iDRAC IP地址
25.1.4. 修改iDRAC密码
25.2. PERC H700 Integrated - Raid Card
25.2.1. Clear Config
25.2.2. Raid 0
25.2.3. Raid 1
25.2.4. Raid 5
25.2.5. Raid 6
25.2.6. Raid 10
25.2.7. Raid 50
25.2.8. HS
25.2.9. Virtual Disk
25.2.10. Save

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

25.1.1. default password

root: calvin

25.1.2. iDRAC6 Configuration Utility

我一般不再iDRAC中配置密码,因为我的密码比较复杂,输入起来比较麻烦。

比习惯使用 ipmitool set password 2 password "0KXcHhqPHXg7PrQ9" 设置比较复杂的密码。

25.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
			

25.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"