網絡卡配置檔案內容詳解

2021-09-24 09:25:18 字數 1094 閱讀 4783

linux網絡卡的配置檔案路徑為/etc/sysconfig/network-scripts/ifcfg-eno16777736

這裡的名卡名eno16777736每個人的可能都不一樣,需注意自己真實的網絡卡名是什麼。

type=ethernet     		 #網路型別 乙太網

bootproto=static

#1.這裡可以為=none(過指定方式的辦法來獲得位址,如果沒有指定的話可能會出現各種各樣的網路受限 )

#2.=dhcp 自動獲取ip位址

#3.=static 固定ip位址

defroute=yes

peerdns=yes

peerroutes=yes

ipv4_failure_fatal=no

ipv6init=yes

ipv6_autoconf=yes

ipv6_defroute=yes

ipv6_peerdns=yes

ipv6_peerroutes=yes

ipv6_failure_fatal=no

name=eno16777736 #網絡卡名稱(使用者看到的網絡卡名)

uuid=858e2bc3-1b47-4660-9297-b0029c8cac56 #網絡卡的唯一識別符號

device=eno16777736 #系統邏輯裝置名

onboot=yes #是否開機自啟網絡卡 選項(no/yes)centos7預設no

ipaddr=192.168.1.3 #指定的ip位址 如果你是dhcp這裡是沒有的

netmask=255.255.255.0 #子網掩碼

gateway=192.168.1.2 #閘道器

dns1=114.114.114.114 #指定的第乙個dns伺服器

centos 6及之前版本重啟網絡卡命令

/etc/init.d/network restart

centos 7重啟網絡卡命令

systemctl restart network

linux 網絡卡配置檔案詳解

配置檔案位置 etc sysconfig network scripts ifcfg eth0 1.device eth0 網絡卡的名字 2.hwaddr 00 0c 29 90 89 d9 hwaddr hardware address 硬體位址 mac位址 3.type ethernet 網路型...

Linux網絡卡配置檔案引數詳解

device eth0 指出裝置名稱 nm controlled yes network mamager的引數,實時生效,不需要重啟 onboot yes 設定為yes,開機自動啟用網路連線 ipaddr 192.168.21.129 ip位址 bootproto none 設定為none禁止dhc...

網絡卡配置檔案

vim etc sysconfig network scripts ifcfg eth0 device eth0 網絡卡名 onboot yes 開機啟動 nm controlled no 不受networkmanager控制 type ethernet 型別 bootproto static 獲取...