CentOS 7.x版本中沒有ifcfg-eth0文件 只有ifcfg-ens33文件(爲了符合平常習慣)php
(1)將文件ifcfg-ens33重命名爲ifcfg-eth0;(root用戶下)python
mv ifcfg-ens33 ifcfg-eth0mysql
(2)將ifcfg-eth0文件中的NAME=ens33改成NAME=eth0linux
vi /etc/sysconfig/network-scripts/ifcfg-eth0web
(3)sql
#修改apache
BOOTPROTO=static #這裏將dhcp修改爲staticcentos
ONBOOT=yes #這裏將no修改爲yes服務器
#新增網絡
IPADDR=192.168.20.100 #靜態IP
GETWAY=192.168.20.1#默認網關
DNS1=192.168.20.1
NETMASK=255.255.255.0 #子網掩碼
(4)重啓網卡
service network restart
/etc/resolv.conf
nameserver 8.8.8.8
nameserver 114.114.114.114
1.Linux系統
(1)查看本機的主機名
hostname
(2)配置主機名稱
vi /etc/sysconfig/network
配置內容:NETWORKING=yes
HOSTNAME=hadoop100
vi /etc/hosts
配置內容:192.168.20.100 hadoop100
(3)重啓生效
2.修改window系統中的hosts文件
(1)進入C:\Windows\System32\drivers\etc路徑
(2)打開hosts文件並添加以下內容
192.168.20.100 hadoop100
(1)查看防火牆狀態 services iptables status
CentOS 7.0默認開始使用的是firewall做爲防火牆
CentOS 7.0開始使用systemctl來管理服務和程序,包括了service和chkconfig
(1)查看防火牆狀態 firewall-cmd --state
:
systemctl is-enabled firewalld.service;echo $?
(1)sync (功能描述:將數據由內存同步到硬盤中)
(2)重啓:shutdown [選項] 時間 -r
關機:shutdown [選項] 時間 -h
(3)halt (功能描述:關閉系統,等同於shutdown –h now 和 poweroff)
(4)reboot (功能描述:就是重啓,等同於 shutdown –r now)
注意:無論是重啓系統仍是關閉系統,首先要運行sync命令,把內存中的數據寫到磁盤中。
查看已經開放的端口:
firewall-cmd --list-ports
開啓端口
firewall-cmd --zone=public --add-port=80/tcp --permanent
命令含義:
–zone #做用域
–add-port=80/tcp #添加端口,格式爲:端口/通信協議
–permanent #永久生效,沒有此參數重啓後失效
重啓防火牆
firewall-cmd --state #查看默認防火牆狀態(關閉後顯示notrunning,開啓後顯示running)firewall-cmd --reload #重啓firewall systemctl stop firewalld.service #中止firewall systemctl disable firewalld.service #禁止firewall開機啓動
如要開放80,22,8080 端口,輸入如下命令便可
/sbin/iptables -I INPUT -p tcp --dport 80 -j ACCEPT /sbin/iptables -I INPUT -p tcp --dport 22 -j ACCEPT /sbin/iptables -I INPUT -p tcp --dport 8080 -j ACCEPT
而後保存:
/etc/rc.d/init.d/iptables save
查看打開的端口:
/etc/init.d/iptables status
關閉防火牆
1) 永久性生效,重啓後不會復原
開啓: chkconfig iptables on
關閉: chkconfig iptables off
2) 即時生效,重啓後復原
開啓: service iptables start
關閉: service iptables stop
查看防火牆狀態: service iptables status
下面說下CentOS7和6的默認防火牆的區別
CentOS 7默認使用的是firewall做爲防火牆,使用iptables必須從新設置一下
一、直接關閉防火牆
systemctl stop firewalld.service #中止firewall
systemctl disable firewalld.service #禁止firewall開機啓動
二、設置 iptables service
yum -y install iptables-services
若是要修改防火牆配置,如增長防火牆端口3306
vi /etc/sysconfig/iptables
增長規則
-A INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT
保存退出後
systemctl restart iptables.service #重啓防火牆使配置生效
systemctl enable iptables.service #設置防火牆開機啓動
最後重啓系統使設置生效便可。
systemctl start iptables.service #打開防火牆
systemctl stop iptables.service #關閉防火牆
1. 本機能ping通虛擬機2. 虛擬機也能ping通本機3.虛擬機能訪問本身的web4.本機沒法訪問虛擬機的web
/sbin/iptables -I INPUT -p tcp --dport 80 -j ACCEPT
/etc/rc.d/init.d/iptables save
/etc/init.d/iptables restart
查看CentOS防火牆信息:/etc/init.d/iptables status關閉CentOS防火牆服務:/etc/init.d/iptables stop