centos 7 中配置 ip 地址的方法:1. 編輯網(wǎng)絡(luò)配置文件;2. 設(shè)置 ip 地址和網(wǎng)絡(luò)掩碼;3. 設(shè)置網(wǎng)關(guān)(可選);4. 啟用網(wǎng)絡(luò)服務(wù);5. 驗(yàn)證 ip 地址。
CentOS 7 中如何配置 IP 地址
要配置 CentOS 7 中的 IP 地址,請(qǐng)執(zhí)行以下步驟:
1. 編輯網(wǎng)絡(luò)配置文件
<code class="shell">vi /etc/sysconfig/network-scripts/ifcfg-eth0</code>
登錄后復(fù)制
2. 設(shè)置 IP 地址和網(wǎng)絡(luò)掩碼
<code>IPADDR=192.168.0.20 NETMASK=255.255.255.0</code>
登錄后復(fù)制
3. 設(shè)置網(wǎng)關(guān) (可選)
如果您需要通過網(wǎng)關(guān)訪問其他網(wǎng)絡(luò),請(qǐng)?jiān)O(shè)置網(wǎng)關(guān):
<code>GATEWAY=192.168.0.1</code>
登錄后復(fù)制
4. 啟用網(wǎng)絡(luò)服務(wù)
<code>systemctl start network</code>
登錄后復(fù)制
5. 驗(yàn)證 IP 地址
要驗(yàn)證 IP 地址是否已正確配置,請(qǐng)運(yùn)行以下命令:
<code class="shell">ifconfig eth0</code>
登錄后復(fù)制
您應(yīng)該會(huì)看到如下輸出:
<code>eth0: flags=4163<up> mtu 1500 inet 192.168.0.20 netmask 255.255.255.0 broadcast 192.168.0.255 inet6 fe80::20c:29ff:fe4f:f2b2 prefixlen 64 scopeid 0x20<link> ether 00:0c:29:4f:f2:b2 txqueuelen 1000 (Ethernet) RX packets 321 bytes 31134 (30.2 KiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 292 bytes 31329 (30.5 KiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0</up></code>
登錄后復(fù)制
其中 inet 192.168.0.20
表示已分配的 IP 地址。