物理服务器OpenEuler系统DHCP网络环境配置

关于Taishan2280上的openeuler系统配置DHCP协议。

最后编辑于2022-05-05

学校有台Taishan2280服务器需要安装操作系统并且配置网络。需要安装的系统是OpenEuler。操作系统使用的是iBMC方式进行安装。这里不再赘述。

首先进入到服务器。

请在服务器对应的网口插入可以使用的网线。

1
nmcli dev status

使用上述命令查看网络硬件设备。

1
2
3
4
5
6
7
8
9
10
[root@localhost ~]# nmcli dev status
DEVICE TYPE STATE CONNECTION
enp125s0f0 ethernet 已连接 web
virbr0 bridge 连接(外部) virbr0
enp125s0f1 ethernet 已断开 --
enp125s0f2 ethernet 已断开 --
enp125s0f3 ethernet 已断开 --
lo loopback 未托管 --
virbr0-nic tun 未托管 --
[root@localhost ~]#

这里我的enp125s0f0已经配置好了。

选择TYPE类型为ethernet的设备。记录下其设备名称。

1
nmcli device connect device_name

使用上述命令启用设备连接。

例如:

1
2
[root@localhost ~]# nmcli device connect  enp125s0f1
错误:添加/激活新连接失败:Connection 'enp125s0f1' is not available on device enp125s0f1 because device has no carrier

这里由于我的一号网口没有插网线这里是失败的。所以你需要选择已插入网线的网口。网口顺序一般在服务器上都有标注。然后选择对应的设备即可。

连接完成后,使用以下指令启用DHCP。

1
nmcli connection add type ethernet con-name connection-name ifname interface-name

其中 connection-nameinterface-name需要填写自己的配置。 connection-name填写自己的网络配置名称,如果没有这个网络配置,将会自动创建。

interface-name填写你刚刚连接的网络设备。

1
2
[root@localhost ~]# nmcli connection  add type  ethernet  con-name  web ifname  enp125s0f0
Connection 'web' (fde481a7-0aba-432a-9201-e27603e556e8) successfully added.
1
2
3
4
5
6
7
8
[root@localhost ~]# nmcli con show
NAME UUID TYPE DEVICE
web fde481a7-0aba-432a-9201-e27603e556e8 ethernet enp125s0f0
virbr0 dcce16f4-1934-4663-a2d1-4a908901628e bridge virbr0
enp125s0f0 a86a2809-b241-4627-9969-9bc95bb42e81 ethernet --
enp125s0f1 dee58f2b-420f-4ab5-9986-66b3315c4616 ethernet --
enp125s0f2 4780278c-90f1-42d5-9dfb-ee9c306e03af ethernet --
enp125s0f3 2063cbc1-644b-47f9-a151-e9812b2c5ce5 ethernet --

这样DHCP服务就在对应的设备启用。接下来只需要Reboot即可。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Welcome to 5.10.0-60.18.0.50.oe2203.aarch64

System information as of time: 2022年 05月 04日 星期三 18:46:55 CST

System load: 0.08
Processes: 700
Memory used: 2.1%
Swap used: 0%
Usage On: 8%
IP address: 192.168.1.84
IP address: 192.168.122.1
Users online: 1


[root@localhost ~]#

可以看到我们的IP地址多了一个。这就成功了。对应网口已经分配得到了IP。

122.1那个地址是服务器iBMC地址。


本博客所有文章除特别声明外,均采用 CC BY-SA 4.0 协议 ,转载请注明出处!