LINUX設定網絡卡

2021-06-06 22:23:56 字數 670 閱讀 4843

一、臨時啟用網絡卡並配置ip:

ifconfgi eth1 192.168.8.201 netmask 255.255.255.0 up

二、通過直接配置/etc/sysconfig/network-scripts/ifcfg-eth1(一般為ifcfg-eth0)

#vi /etc/sysconfig/network-scripts/ifcfg-eth1

device=eth1  /*裝置名稱*/

hwaddr=00:0c:29:34:42:d0   /*網絡卡mac*/

nm_controlled=yes

onboot=yes  /*是否開機啟動*/

ipaddr=192.168.8.201 /*ip位址*/

bootproto=none

netmask=255.255.255.0 /*子網掩碼*/

type=ethernet

gateway=192.168.8.8  /*閘道器*/

dns1=202.96.134.133 /*首選dns*/

dns2=8.8.8.8  /*備選dns*/

ipv6init=no

userctl=no

配置完畢後使用:wq儲存並退出

並用service network restart 命令重啟網路服務使剛才配置的ip位址生效。

linux 設定網絡卡

配置網絡卡 修改 etc sysconfig network scripts ifcfg eth0檔案,如果有多張網絡卡,則修改相應的網絡卡 vim etc sysconfig network scripts ifcfg eth0 device eth0 網絡卡對應的裝置別名 bootproto s...

linux 網絡卡設定

1 進入網絡卡目錄 cd etc sysconfig network scripts 2 網絡卡配置檔案內容 type ethernet proxy method none browser only no bootproto none defroute yes ipv4 failure fatal ...

linux設定網絡卡

前段時間太久沒有在本地使用虛擬機器,網絡卡連了很久,做個筆記吧 本機介面卡選項中設定dns位址 vmare 設定nat連線模式 把虛擬機器設定跟本機同一閘道器 即第三位 150 虛擬機器編輯網絡卡設定為固定ip vim etc sysconfig network scripts ifcfg ens3...