關於redhat7/centos7建議網路方面先做如下配置:
systemctl stop networkmanager.service
systemctl disable networkmanager.service
systemctl enable network.service
systemctl start network.service
yum install iptables-services
systemctl mask firewalld.service
systemctl enable iptables.service
systemctl enable ip6tables.service
systemctl stop firewalld.service
systemctl start iptables.service
systemctl start ip6tables.service
說明:centos 7.0預設安裝好之後是沒有自動開啟網路連線的!
cd /etc/sysconfig/network-scripts/ #進入網路配置檔案目錄
vi ifcfg-eno16777736 #編輯配置檔案,新增修改以下內容
hwaddr=00:0c:29:8d:24:73#mac位址通過ifcfg eno16777736檢視 然後修改ip addr #檢視ip位址type=ethernet
bootproto=static #啟用靜態ip位址
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
name=eno16777736
uuid=ae0965e7-22b9-45aa-8ec9-3f0a20a85d11 #uuid請務必保證唯一
onboot=yes #開啟自動啟用網路連線
ipaddr0=192.168.21.128 #設定ip位址
prefixo0=24 #設定子網掩碼
gateway0=192.168.21.2 #設定閘道器
dns1=8.8.8.8 #設定主dns
dns2=8.8.4.4 #設定備dns
:wq! #儲存退出
service network restart #重啟網路
ping www.baidu.com #測試網路是否正常
hostname www #設定主機名為www
vi /etc/hostname #編輯配置檔案
www #修改localhost.localdomain為www
:wq! #儲存退出
vi /etc/hosts #編輯配置檔案
127.0.0.1 localhost www #修改localhost.localdomain為www
:wq! #儲存退出
shutdown -r now #重啟系統
Centos 7開啟網絡卡自動獲取IP
centos7預設安裝是沒有開啟配置網絡卡資訊的,無法訪問外網。下邊配置開啟網路自動獲取ip位址 1.檢視網絡卡資訊 執行ifconfig eno16777736 flags 4163mtu 1500 inet6 fe80 20c 29ff fee8 8637 prefixlen 64 scopei...
Centos 7 靜態IP設定
在做專案時由於公司區域網採用自動獲取 的方式,導到每次伺服器重啟主機 都會變化。為了解決這個問題,我參考了的文章然後根據自己的情況設定靜態ip解決了這個問題,處理方式如下 device eth0 描述網絡卡對應的裝置別名,例如ifcfg eth0的檔案中它為eth0 bootproto static...
Centos7設定靜態IP
bootproto static dhcp改為static 修改 onboot yes 開機啟用本配置,一般在最後一行 修改 ipaddr 192.168.1.132 靜態ip 增加 netmask 255.255.255.0 子網掩碼 增加 nm controlled no表示該介面將通過該配置檔...