1.配置ip位址
type="ethernet"
proxy_method="none"
browser_only="no"
#bootproto="dhcp"
bootproto="static"
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="ens33"
uuid="1208bfec-5b3f-402d-b5c4-4b361f1986b8"
device="ens33"
onboot="yes"
apaddr=1.1.1.1
netmask=255.255.255.0
geteway=1.1.1.254
dns1=1.1.1.1
dns2=8.8.8.8
*************************===
bootproto="static" ==>靜態分配
onboot="yes" ==>開機啟動
apaddr=1.1.1.1 ==>ip位址
netmask=255.255.255.0 ==>子網掩碼
geteway=1.1.1.254 ==>閘道器
dns1=1.1.1.1 ==>dns1
dns2=8.8.8.8 ==>dns2
*************************===
改完了記得重啟服務
systemctl restart network
2.關防火牆
檢視防火牆的執行狀態
systemctl status firewalld.service
關閉防火牆
systemctl stop firewalld.service
關閉防火牆的開機自啟
systemctl disable firewalld.service
3.關閉selinux
找到配置檔案
vim /etc/sysconfig/selinux
修改指定位置
selinux=disabled==>disabled為關閉 預設是"enforcing"
改完了需要重啟伺服器
centos7系統初始化
echo arp引數,檢查一次相鄰層記錄的有效性的週期。當相鄰層記錄失效 etc sysctl.conf echo e net.ipv4.neigh.default.gc stale time 120 n etc sysctl.conf echo 路由設定 etc sysctl.conf echo ...
Centos7 x防火牆配置
1 檢視firewall服務狀態 2 檢視firewall的狀態 firewall cmd state3 開啟 重啟 關閉 firewalld.service服務 開啟 service firewalld start 重啟 service firewalld restart 關閉 service f...
centos7系統初始化優化
防火牆優化 關閉防火牆 systemctl stop firewalld systemctl disable firewalld 開啟防火牆命令 新增乙個埠 firewall cmd zone public add port 80 tcp permanent permanent永久生效,沒有此引數重...