2018-1-26 Linux学习笔记

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2018-1-26 Linux学习笔记相关的知识,希望对你有一定的参考价值。

10.19 iptables规则备份和恢复

  • 保存iptalbes规则
    service iptables save //会把规则保存到/etc/sysconfig/iptables
  • 备份iptalbes规则到/tmp/my.ipt文件中
    iptables-save > /tmp/my.ipt
  • 恢复备份的iptalbes规则
    iptables-restore < /tmp/my.ipt

10.20 firewalld的9个zone

  • 关闭netfilter(iptables)开启firewalld的方法:
    systemctl disable iptables
    systemctl stop iptables
    systemctl enable firewalld
    systemctl start firewalld

  • firewalld有9个zone,默认为public
    drop(丢弃): 任何接收的数据包都被丢弃,没有任何回复.仅能有发送出去的网络连接.
    block(限制): 任何接收的网络连接都被IPv4的icmp-host-prohibited信息和IPv6的icmp-adm-prohibited信息所拒绝.
    public(公共): 在公共区域内使用,不能相信网络内的其他计算机不会对你的计算机造成危害,只能接收经过选取的连接.
    external(外部): 特别为路由器启用伪装功能的外部网.你不能信任来自网络的其他计算机,不能相信它们不会对你的计 算机造成危害,只能接收经过选择的连接.
    dmz(非军事区): 用于你的非军事区内的电脑,此区域内可公开访问,可以有限地进入你的内部网络,仅仅接收经过选择的 连接.
    work(工作): 用于工作区,你可以基本相信网络内的其他计算机不会危害你的计算机,仅仅接收经过选择的连接.
    home(家庭): 用于家庭网络,你可以基本相信网络内的其他计算机不会危害你的计算机,仅仅接收经过选择的连接.
    internal(内部): 用于内部网络,你可以基本信任网络内其他计算机不会危害你的计算机,仅仅接受经过选择的连接.
    trusted(信任): 可接受所有的网络连接.
  • 相关命令:
    firewall-cmd --get-zones //查看所有的zone
    firewall-cmd --get-default-zone //查看默认zone
    技术分享图片

    10.21 firewalld关于zone的操作

    firewall-cmd --set-default-zone=work //设定默认zone
    firewall-cmd --get-zone-of-interface=ens33 //查看指定网卡
    firewall-cmd --zone=public --add-interface=ens33 //给指定网卡设置zone
    firewall-cmd --zone=dmz --change-interface=ens33 //针对更改zone
    firewall-cmd --zone=dmz --remove-interface=ens33 //针对网卡删除zone
    firewall-cmd --get-active-zones //查看系统所有网卡所在的zone
    技术分享图片

10.22 firewalld关于service的操作

firewall-cmd --get-services //查看所有的services
firewall-cmd --list-services //查看当前zone下有哪些services
firewall-cmd --zone=public --add-service=http //把http增加到public zone下面
firewall-cmd --zone=public --remove-service=http
技术分享图片
ls /usr/lib/firewalld/zones //zone的配置文件模板
技术分享图片
firewall-cmd --zone=public --add-service=http --permanent //加 permanent选项会更改配置文件, 之后会在/etc/firewalld/zones目录下生成配置文件.


需求:ftp服务自定义端口1121,需要在work zone下面放行ftp
cp /usr/lib/firewalld/services/ftp.xml /etc/firewalld/services/
vi /etc/firewalld/services/ftp.xml //把21改为1121
cp /usr/lib/firewalld/zones/work.xml /etc/firewalld/zones/
vi /etc/firewalld/zones/work.xml //增加一行
<service name="ftp"/>
firewall-cmd --reload //重新加载
firewall-cmd --zone=work --list-services
技术分享图片

以上是关于2018-1-26 Linux学习笔记的主要内容,如果未能解决你的问题,请参考以下文章

linux学习笔记一

Linux学习笔记

Linux学习笔记

Linux学习笔记

Linux学习笔记(第一周)

Linux学习笔记