Centos的配置
静态IP的配置
NAT适配器的配置
首先,打开控制面板-网络和Internet-网络连接找到VMware Network Adapter VMnet8点击右键属性。
然后,选择Internet协议版本4,再次点击属性。
最后,选择使用下面的IP地址、使用下面的DNS服务器地址,自己设立ip地址、子网编码、默认网关等。
虚拟机的虚拟网络编辑
打开虚拟机,导航栏点击编辑-虚拟网络编辑器,进入到虚拟网络编辑器中,参考下图配置。
记住NAT设置中的子网IP、子网掩码、网关IP三项,接下来配置文件主要是这三项。
Centos的配置文件
1、编辑网络配置文件。
1 | vi /etc/sysconfig/network-scripts/ifcfg-ens33 |
注:我的是ens33,不同的人或许会有不同。
打开配置文件后,按 i 进行编辑。
按ESC后输入:wq
,意思是保存后退出。
2、重启网络
1 | service network restart |
3、测试网络
1 | ping www.baidu.com |
测试是否能连接网络。
4、查看IP地址
输入ifconfig
,看看是否地址为你配置的ip地址。
防火墙的配置
Centos7防火墙常用配置及说明
Centos7和Centos6 防火墙的区别:
使用的工具不一样了。Centos6 使用的是iptables ,Centos7 使用的是filewall
iptables 用于过滤数据包,属于网络层防火墙。
firewall 能够允许哪些服务可用,那些端口可用…属于更高一层的防火墙。
常用命令:
1 | vi /usr/lib/firewalld/services/ssh.xml |
firewall 配置
The configuration for firewalld is stored in various XML files
in /usr/lib/firewalld and /etc/firewalld
注意:以下firewalld 的操作只有重启之后才有效:service firewalld restart
1、系统配置目录
1 | /usr/lib/firewalld/services |
目录中存放定义好的网络服务和端口参数,系统参数,不能修改。
2、用户配置目录
1 | /etc/firewalld/ |
3、如何自定义添加端口
用户可以通过修改配置文件的方式添加端口,也可以通过命令的方式添加端口,注意:修改的内容会在/etc/firewalld/目录下的配置文件中体现。
3.1、 命令的方式添加端口:
1 | firwall-cmd --permanent --add-port=9527/tcp |
参数介绍:
- firwall-cmd:是Linux提供的操作firewall的一个工具;
- –permanent:表示设置为持久;
- –add-port:标识添加的端口;
另外,firewall中有Zone的概念,可以将具体的端口制定到具体的zone配置文件中。
例如:添加8010端口
1 | firewall-cmd --zone=public --permanent --add-port=8010/tcp |
--zone=public
:指定的zone为public;
如果–zone=dmz
这样设置的话,会在dmz.xml文件中新增一条。
3.2、修改配置文件的方式添加端口
1 |
|
上述的一个配置文件可以很好的看出:
- 添加需要的规则,开放通源ip为122.10.70.234,端口514,协议tcp;
- 开放通源ip为123.60.255.14,端口10050-10051,协议tcp;
- 开放通源ip为任意,端口9527,协议tcp;
4、firewall常用命令
重启、关闭、开启、firewalld.serverice 服务
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15Service firewalld restart 重启
Service firewalld start 开启
Service firewalld stop 关闭
systemctl status firewalld
systemctl stop firewalld 关闭
systemctl start firewalld 开启
systemctl restart firewalld 重启
systemctl disable firewalld 关闭开机启动查看状态
1
firewall-cmd --state
查看防火墙规则
1
firewall-cmd --list-all
5、Centos 切换为iptables防火墙
切换到iptables首先应该关掉默认的firewalld,然后安装iptables服务。
关闭firewall:
1
service firewalld stop systemctl disable firewalld.service #禁止firewall开机启动
安装iptables防火墙
1
yum install iptables-services #安装
编辑iptables防火墙配置
1
vi /etc/sysconfig/iptables #编辑防火墙配置文件
下边是一个完整的配置文件:
1 | Firewall configuration written by system-config-firewall Manual customization of this file is not recommended. |
:wq! #保存退出
1 | service iptables start #开启systemctl |