環境:centos7.3(最小安裝方式安裝)
檢視自動獲取的ip位址 ip addr
更改網絡卡配置,配置靜態ip
網絡卡配置檔案位置:/etc/sysconfig/network-scripts/ifcfg-ens3
網絡卡配置檔案引數:
device:網絡卡名稱
hwaddr:物理mac位址
type:網路型別
uuid:網絡卡唯一標識
onboot:開機或者重啟是否重啟網絡卡
nm_controlled:是否受network程式管理
ipaddr:設定ip
dateway:設定閘道器
netmask:子網掩碼
userctl:普通使用者是否可以控制網絡卡
dns:網域名稱解析服務
固定伺服器ip:
伺服器ip固定一般採用nat形式的連線方式,設定好之後,我們啟動伺服器,修改網絡卡配置:
設定bootproto引數為static;
設定ipaddr引數為自己需要的ip位址例如192.168.137.6;
設定gateway引數為:192.168.137.1
設定dns引數為:192.168.137.1
network引數可以選配,上述ip位址根據自己的ip網段進行設定
例:type=ethernet
#bootproto=dhcp
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
ipv6_addr_gen_mode=stable-privacy
name=ens3
uuid=441a587a-fa35-4243-b610-c54c4397f6bc
device=ens3
#onboot=yes
#static assignment
nm_controlled=no #表示該介面將通過該配置檔案進行設定,而不是通過網路管理器進行管理
onboot=yes #開機啟動
bootproto=static #靜態ip
ipaddr=10.153.49.112 #本機位址
gateway=10.153.48.1 #預設閘道器
netmask=255.255.252.0 #子網掩碼
hwaddr=0c:da:41:1d:73:a2 #mac位址
zone=public
dns1=10.72.66.37
設定完畢之後,重啟網絡卡:ifdown ens3(關閉網絡卡) ifup ens3(開啟網絡卡)輸入ip addr檢視自己的新**
Centos7網絡卡配置檔案
type ethernet 指定網路型別 乙太網ethernet 快速乙太網fastethernet proxy method none 網路啟動協議 none static 靜態ip位址 dhcpd dhcp 動態獲取ip位址 browser only nobootproto none defro...
CentOS7 網絡卡配置檔案解釋
注 此網絡卡配置檔案摘自centos7.4.1708系統 linux 預設配置網絡卡的資訊 type ethernet 網絡卡型別 乙太網 proxy method none 方式 關閉狀態 browser only no 只是瀏覽器 yes no bootproto static 設定網絡卡獲得i...
CentOS7 網絡卡配置檔案解釋
linux 預設配置網絡卡的資訊type ethernet 網絡卡型別 乙太網 proxy method none 方式 關閉狀態 browser only no 只是瀏覽器 yes no bootproto static 設定網絡卡獲得ip位址的方式 static dhcp none bootp ...