Centos7網絡卡配置檔案

2022-06-29 15:09:12 字數 2878 閱讀 9882

type=ethernet --

指定網路型別 乙太網ethernet 快速乙太網fastethernet

proxy_method=none --

網路啟動協議 none(static)靜態ip位址 dhcpd(dhcp) 動態獲取ip位址

browser_only=

nobootproto

=none

defroute

=yes

ipv4_failure_fatal

=yes

ipv6init

=yes

ipv6_autoconf

=yes

ipv6_defroute

=yes

ipv6_failure_fatal=no

ipv6_addr_gen_mode

=stable-

privacy

name

=eth0 --

主機網絡卡名稱 (邏輯名稱)

uuid=ecbd9d3f-be11-4bed-a3ee-6bb80a261061 --

虛擬主機,或給每個硬體乙個標識

device=eth0 --

主機網絡卡名稱(裝置名稱)

onboot=yes --

設定網絡卡是否處於開機狀態 yes開啟 no關閉

ipaddr=

192.168.203.100

--靜態配置的ip位址

prefix=

24--

子網掩碼

gateway=

192.168.203.2

--閘道器

dns1=

114.114.114.114

--dns

ipv6_privacy=no

另乙個修改dns配置的地方(優先順序沒有網絡卡配置高,如果網絡卡配置檔案中配置了dns重啟網路之後,resolv中的配置會同步網絡卡配置)

#

generated by networkmanager

nameserver 114.114.114.114

修改配置之後重啟網路:

--

方法1systemctl restart network --

重啟所有網絡卡

--方法2

ifdown eth0 --

停止eth0

ifup eth0 --

啟動eht0

--方法3 將方法2兩個命令合併執行

ifdown eth0 && ifup eth0

異常問題:網絡卡配置檔案正確,無法重啟網路服務

systemctl stop networkmanager --

關閉網路管理服務

posted on

2020-04-14 22:16

信奉上帝的小和尚 

閱讀(103) 

編輯收藏

type=ethernet --

指定網路型別 乙太網ethernet 快速乙太網fastethernet

proxy_method=none --

網路啟動協議 none(static)靜態ip位址 dhcpd(dhcp) 動態獲取ip位址

browser_only=

nobootproto

=none

defroute

=yes

ipv4_failure_fatal

=yes

ipv6init

=yes

ipv6_autoconf

=yes

ipv6_defroute

=yes

ipv6_failure_fatal=no

ipv6_addr_gen_mode

=stable-

privacy

name

=eth0 --

主機網絡卡名稱 (邏輯名稱)

uuid=ecbd9d3f-be11-4bed-a3ee-6bb80a261061 --

虛擬主機,或給每個硬體乙個標識

device=eth0 --

主機網絡卡名稱(裝置名稱)

onboot=yes --

設定網絡卡是否處於開機狀態 yes開啟 no關閉

ipaddr=

192.168.203.100

--靜態配置的ip位址

prefix=

24--

子網掩碼

gateway=

192.168.203.2

--閘道器

dns1=

114.114.114.114

--dns

ipv6_privacy=no

另乙個修改dns配置的地方(優先順序沒有網絡卡配置高,如果網絡卡配置檔案中配置了dns重啟網路之後,resolv中的配置會同步網絡卡配置)

#

generated by networkmanager

nameserver 114.114.114.114

修改配置之後重啟網路:

--

方法1systemctl restart network --

重啟所有網絡卡

--方法2

ifdown eth0 --

停止eth0

ifup eth0 --

啟動eht0

--方法3 將方法2兩個命令合併執行

ifdown eth0 && ifup eth0

異常問題:網絡卡配置檔案正確,無法重啟網路服務

systemctl stop networkmanager --

關閉網路管理服務

CentOS7 網絡卡配置檔案解釋

注 此網絡卡配置檔案摘自centos7.4.1708系統 linux 預設配置網絡卡的資訊 type ethernet 網絡卡型別 乙太網 proxy method none 方式 關閉狀態 browser only no 只是瀏覽器 yes no bootproto static 設定網絡卡獲得i...

CentOS7 網絡卡配置檔案解釋

linux 預設配置網絡卡的資訊type ethernet 網絡卡型別 乙太網 proxy method none 方式 關閉狀態 browser only no 只是瀏覽器 yes no bootproto static 設定網絡卡獲得ip位址的方式 static dhcp none bootp ...

Centos7 網絡卡配置

進入網絡卡配置檔案目錄 cd etc sysconfig network scripts編輯配置檔案 vim ifcfg ens33type ethernet proxy method none browser only no bootproto static 使用靜態ip位址,預設為dhcp ip...