sudo yum install ipmitool
, 设置BMC IP源为静态:ipmitool lan set 1 ipsrc static
, 设置BMC的IP地址和子网掩码:ipmitool lan set 1 ipaddr xxx.xx.xx.xx
和ipmitool lan set 1 netmask xxx.xxx.xxx.xxx
, (可选)设置默认网关:ipmitool lan set 1 defgw ipaddr xxx.xx.xx.xx
, 验证配置:ipmitool lan print 1
,,2. **使用ifconfig或nmcli**:, 如果需要持久化设置,推荐使用nmcli:, ``bash, nmcli con show # 查看现有连接, nmcli con mod "YourConnectionName" ipv4.addresses "/" # 修改IP地址, nmcli con mod "YourConnectionName" ipv4.gateway "" # 修改网关, nmcli con mod "YourConnectionName" ipv4.dns "" # 修改DNS, nmcli con up "YourConnectionName" id "YourConnectionName" # 应用更改,
`, 或者使用ifconfig命令进行临时设置,但重启后会失效。,,3. **编辑网络配置文件**:, 确定网络接口名称,eth0
。, 编辑网卡配置文件,通常位于/etc/sysconfig/network-scripts/
目录下,文件名为ifcfg-接口名称
。, 设置参数如下:, ``ini, BOOTPROTO=static, ONBOOT=yes, IPADDR=192.168.1.100, NETMASK=255.255.255.0, GATEWAY=192.168.1.1, DNS1=8.8.8.8, DNS2=8.8.4.4,
``, 保存并退出编辑器,然后重启网络服务或整个系统以使更改生效。,,以上是在银河麒麟系统中设置服务器IP地址的几种常用方法。Powered By Z-BlogPHP 1.7.3