Answers:
可能有一个实用程序,但我不知道它是什么。您可以在创建一个文件,/etc/sysconfig/network-scripts/ifcfg-eth0
其内容类似于:
DEVICE=eth0
BOOTPROTO=static
ONBOOT=yes
IPADDR=192.168.0.199
NETMASK=255.255.255.0
GATEWAY=192.168.0.1
HWADDR=
包含设备MAC地址的字段。这一步是ifcfg-ethN
手工创建的最大痛苦点之一。
我使用以下命令:system-config-network-tui
手动创建文件也是一个很好的答案,但这将为您提供MAC地址。
ONBOOT=yes
价值,所以我仍然必须进行编辑,但这比从头开始手写整个东西要好得多。
nmtui
所以这对我有用。
历史:
我添加了一个新的虚拟网卡,其重新引导后未生成其ifcfg-eth2文件。
我浏览了network-scripts目录,并按以下顺序运行了命令。
# cd /etc/sysconfig/network-scripts
# ./net.hotplug
# ./ifup-eth
# ifup eth2
-- the ifcfg-eth2 file was generated at this point, but was missing the "HWADDR" field --
# system-config-network
-- Select your Device and edit settings if needed, before saving the settings --
-- After saving the Configuration settings, the "HWADDR" filed was added as well --
system-config-network
重新创建ifcfg-eth0文件后,运行似乎是一个好主意。