我是靠谱客的博主 美丽眼神,最近开发中收集的这篇文章主要介绍iptables与firewalld,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

1.iptables: 开启防火墙:可以正常使用ssh服务,dns

服务,httpd服务,chrony服务,nfs服务

开启防火墙

[root@hezhihao ~]# systemctl restart iptables

可以正常使用ssh服务

访问dns服务,httpd服务

查看[root@hezhihao named]# iptables -vnL

[root@hezhihao named]# iptables -I INPUT -p tcp --dport 80 -j ACCEPT

或者

[root@hezhihao ~]# iptables -A INPUT -p tcp --dport 80 -j ACCEPT

[root@hezhihao ~]# iptables -D INPUT 5

[root@hezhihao etc]# systemctl restart autofs

[root@hezhihao etc]# mount | grep /nfs

sunrpc on /var/lib/nfs/rpc_pipefs type rpc_pipefs (rw,relatime)

/etc/auto.nfs on /nfsclient type autofs (rw,relatime,fd=5,pgrp=25384,timeout=300,minproto=5,maxproto=5,indirect,pipe_ino=355526)

2.firewalld: 开启防火墙:可以正常使用ssh服务,

dns服务,httpd服务,chrony服务,nfs服务

且实现:访问第一台机器web服务的9090端口,转发到

第二台机器的80端口(永久生效)

开启防火墙服务:

[root@hezhihao etc]# systemctl restart firewalld

[root@hezhihao etc]# firewall-cmd --add-port=80/tcp

success

[root@hezhihao conf.d]# firewall-cmd --add-forward-port=9090:proto=tcp:toport=80:toaddr=192.168.248.129 --permanent

[root@hezhihao 9090]# firewall-cmd --add-port=9090/tcp

success

最后

以上就是美丽眼神为你收集整理的iptables与firewalld的全部内容,希望文章能够帮你解决iptables与firewalld所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(39)

评论列表共有 0 条评论

立即
投稿
返回
顶部