Linux 命令配置網路位址

2021-09-03 07:39:15 字數 798 閱讀 7230

auto eth0 #開機自動連線網路

iface lo inet loopback

allow-hotplug eth0

iface eth0 inet static #static表示使用固定ip,dhcp表述使用動態ip

address 198.9.146.131 #設定ip位址

netmask 255.255.255.0 #設定子網掩碼

gateway 198.9.146.254 #設定閘道器

btw:配置時可去掉注釋,因為我配置的時候加了注釋導致網絡卡起不來;如果遠端一定要auto,不然配置後網絡卡不自動啟。

nameserver 198.9.9.1 #設定首選dns

nameserver 198.9.9.2 #設定備用dns

最後重啟網路

service networking restart #重啟網路

檢視ip:

ifconfig eth0

以上是編輯檔案,可能會出錯,下面使用命令

#設定ip:

ifconfig eth1 10.3.1.74

#把ip: 129.158.215.204 , netmask: 255.255.255.0分配給eth0,

# ifconfig eth0 129.158.215.204 netmask 255.255.255.0

#自動獲取ip;

ifconfig eth1 dhcp start (從eth1走,不需要ip即可dhcp)

配置網路位址

配置網路位址 1.永久配置ip位址 etc sysconfig network scripts ifcfg eth0 2.永久配置主機名 vim etc hostname 格式 主機名.tedu.cn nmcli連線管理 1.檢視nmcli命令識別的網絡卡名字 nmcli connection sh...

linux 網路位址

linux下ip轉換工具 include include include strcut sockaddr in src src.sin addr.s addr inet addr 構建網路位址。printf s n inet ntoa src.sin addr 將網路位址轉換成字串。注意 inet ...

Centos 配置網路位址

檢視網路裝置 網路配置資訊的路徑 etc sysconfig network scripts ip addr設定網路位址 自動獲取網路位址 device eth0 hwaddr 00 0c 39 ad 11 48 type ethernet uuid c230a1e5 a535 487a aab5 ...