在linux中設定靜態ip位址

2022-08-20 22:45:16 字數 848 閱讀 1030

在linux中設定靜態ip位址

1、在終端中輸入:vi /etc/sysconfig/network-scripts/ifcfg-eth0

2、開始編輯,填寫ip位址、子網掩碼、閘道器、dns等

[root@centos 桌面]# cat /etc/sysconfig/network-scripts/ifcfg-eth0

device=eth0  #裝置名稱

type=ethernet #網路型別

uuid=bfafdad5-e1c9-4adf-864b-c772e4965ab7

onboot=yes #開機自啟動。 必須有

nm_controlled=yes

bootproto=static #靜態ip。 必須有

defroute=yes

ipv4_failure_fatal=yes

ipv6init=no

name="system eth0"

ipaddr=192.168.23.128 #ip位址。 必須有

prefix=24

gateway=192.168.23.2 #閘道器。 必須有

netmask=255.255.255.0 #子網掩碼。 必須有

dns1=192.168.23.2 #dns 。  必須有

hwaddr=00:0c:29:10:ec:9d  #mac位址

last_connect=1480146093

3、編輯完後,儲存退出。

4、重啟網路服務。service network restart或/etc/init.d/network restart

5、ping閘道器,ping外網進行測試。都能ping通表示網路正常。

linux設定靜態ip位址

使用root賬戶,或sudo命令 1 使用ifconfig命令檢視一下當前網路配置 可以看到有eth0這塊網絡卡,就設定這個 2 輸入vim etc sysconfig network scripts ifcfg eth0編輯網絡卡 修改bootproto為static 配置ipaddr為192.1...

如何在linux系統中設定靜態ip位址

分步閱讀 本篇主要是介紹一下在linux系統中設定靜態ip位址方法。在終端中輸入 vi etc sysconfig network scripts ifcfg eth0 開始編輯,填寫ip位址 子網掩碼 閘道器 dns等。其中 紅框內的資訊 是必須得有的。編輯完後,儲存退出。重啟網路服務。servi...

如何在linux系統中設定靜態ip位址

本篇主要是介紹一下在linux系統中設定靜態ip位址方法。1在終端中輸入 vi etc sysconfig network scripts ifcfg eth0 編輯完後,儲存退出。重啟網路服務。service network restart或 etc init.d network restart ...