linux 網路配置

2021-09-27 08:43:11 字數 979 閱讀 4057

進入/etc/sysconfig/network-scripts/目錄

cd /etc/sysconfig/network-scripts/
檢視網絡卡檔案,檔名一般為ifcfg-***,如:ifcfg-eth0, ifcfg-em1

device=eth0#網絡卡裝置名稱

onboot=yes#啟動時是否啟用 yes | no

bootproto=static#協議型別 dhcp:自動獲取ip,static:靜態ip(ipaddr的值)

ipaddr=192.168.1.90#網路ip位址

netmask=255.255.255.0#網路子網位址

gateway=192.168.1.1#閘道器位址

broadcast=192.168.1.255#廣播位址

hwaddr=00:0c:29:fe:1a:09#網絡卡mac位址

type=ethernet#網絡卡型別為乙太網

修改檔案後重啟網絡卡使其生效

service iptables restart
vim /etc/resolv.conf
檔案內容大致如下,每乙個nameserver是乙個dns伺服器位址

nameserver 183.60.83.19

nameserver 183.60.82.98

vim /etc/hosts
檔案內容大致如下,格式為

ip 主機名 別名

127.0.0.1 vm_0_9_centos vm_0_9_centos

127.0.0.1 localhost.localdomain localhost

127.0.0.1 localhost4.localdomain4 localhost4

網路 linux網路配置

zlm ubuntu sudo ifconfig eth0 192.168.1.109 netmask 255.255.255.0 broadcast 192.168.1.255 zlm ubuntu sudo route add del default gw 192.168.1.1 新增刪除閘道器...

linux配置 網路配置

ip位址,子網掩碼,閘道器 設定ip位址,子網掩碼並啟用 ifconfig eth0 10.192.77.250 netmask 255.255.255.0 up 注 ip,掩碼,閘道器都設定到 etc sysconfig network scripts ifcfg eth0裡面了。設定多ip 可以...

linux網路管理 Linux網路配置

1.1 linux配置ip位址 1 ifconfig命令臨時配置ip位址 能不能自動獲取ip位址和dns位址,要看有沒有dhcp伺服器 win10上,輸入ipconfig all 會看到是否有dhcp伺服器 ifconfig命令 對此命令更加詳細的解說 傳送門 2 setup工具永久配置ip位址 r...