在linux作業系統中一切皆檔案,ip位址的配置檔案是/etc/sysconfig/network-scripts/ifcfg-eth0
,如果有多個網絡卡名稱可以是ifcfg-eth1、ifcfg-eth2等等,也可能是其它名稱ifcfg-*
在系統開機的時候,會載入該配置檔案,進行ip位址等網路資訊的配置
/etc/sysconfig/network-scripts/ifcfg-eth0 #網絡卡、閘道器、dns等
/etc/resolv.conf #dns配置
/etc/hosts #網域名稱和ip的對映
/etc/sysconfig/network #閘道器配置等
type=ethernet #網絡卡型別
device=eth0 #網絡卡介面名稱
onboot=yes #系統啟動時是否自動載入,刪除此項即關閉開機網絡卡自啟動
bootproto=none #啟用位址協議,dhcp動態ip分配;none不使用啟動協議,用在靜態ip分配時
ipaddr=192.168.1.11 #ip位址
netmask=255.255.255.0 #子網掩碼
gateway=192.168.1.1 #閘道器位址
dns1=10.203.104.41 #網絡卡dns位址1
dns2=8.8.8.8 #網絡卡dns位址2
hwaddr=00:0c:29:13:5d:74 #網絡卡裝置mac位址
broadcast=192.168.1.255 #網絡卡廣播位址
管理全部網路介面
*************************
[root@192_168_31_106 ~]# /etc/init.d/network
usage: /etc/init.d/network
生產環境操作網絡卡要額外注意,一旦配置錯誤,可能導致ssh連線掉線
管理單個網路介面
*************************
ifdown eth0 #關閉eth0介面
ifup eth0 #開啟eth0介面
ifconfig #檢視網絡卡資訊
ip addr show #檢視網絡卡資訊
ip a #同上,簡寫形式
netstat -r #檢視路由表
route #檢視路由表
[root@192_168_31_106 ~]# cat /etc/sysconfig/network-scripts/ifcfg-eth0
type="ethernet"
proxy_method="none"
browser_only="no"
bootproto="none"
defroute="yes"
ipv4_failure_fatal="no"
ipv6init="yes"
ipv6_autoconf="yes"
ipv6_defroute="yes"
ipv6_failure_fatal="no"
ipv6_addr_gen_mode="stable-privacy"
name="eth0"
uuid="8feec78a-efc7-481c-afbc-68bad55d0a74"
device="eth0"
onboot="yes"
ipaddr=192.168.31.106
netmask=255.255.255.0
gateway=192.168.31.1
dns1=192.168.31.1
dns2=8.8.8.8
[root@192_168_1_237 ~]# cat /etc/sysconfig/network-scripts/ifcfg-eth0
# created by cloud-init on instance boot automatically, do not edit.
# if you don't want cloud-init genrated automatically,you can disable it in /etc/cloud/cloud.cfg
# for more information, please refer to:
#bootproto=dhcp
device=eth0
onboot=yes
startmode=auto
type=ethernet
userctl=no
# cat /etc/sysconfig/network-scripts/ifcfg-eth1
device=eth0
onboot=yes
hwaddr=78:8b:cb:20:2b:36
type=ethernet
bootproto=none
ipaddr=10.10.188.21
netmask=255.255.255.0
Centos7 網絡卡配置
進入網絡卡配置檔案目錄 cd etc sysconfig network scripts編輯配置檔案 vim ifcfg ens33type ethernet proxy method none browser only no bootproto static 使用靜態ip位址,預設為dhcp ip...
CentOS7網絡卡配置
安裝完centos之後,通過ip addr命令檢視ip資訊 root localhost yum.repos.d ip addr 1 lo mtu 65536 qdisc noqueue state unknown group default qlen 1000 link loopback 00 0...
CentOS7網絡卡配置
安裝完centos之後,通過ip addr命令檢視ip資訊 root localhost yum.repos.d ip addr 1 lo mtu 65536 qdisc noqueue state unknown group default qlen 1000 link loopback 00 0...