当前位置:网站首页>iptables、firewalld的使用
iptables、firewalld的使用
2022-08-02 20:54:00 【m0_59138290】
iptables
- 搭建web服务,设置任何人能够通过80端口访问。
[[email protected] ~]# iptables -I INPUT -p tcp --dport 80 -j ACCEPT
[[email protected] ~]# iptables -L --line-numbers
[[email protected] ~]# iptables -D INPUT 1
- 禁止所有人ssh远程登录该服务器
[[email protected] ~]# iptables -I INPUT -p tcp --dport 22 -j REJECT
删除设置的拒绝ssh连接:
[[email protected] Desktop]# iptables -D INPUT 1
- 禁止某个主机地址ssh远程登录该服务器,允许该主机访问服务器的web服务。服务器地址为172.24.8.128
拒绝172.24.8.129通过ssh远程连接服务器:
[[email protected] ~]# iptables -I INPUT -p tcp -s 172.24.8.129 --dport 22 -j REJECT
允许172.24.8.129访问服务器的web服务:
[[email protected] ~]# iptables -I INPUT -p tcp -s 172.24.8.129 --dport 80 -j ACCEPT
firewalld
- 禁止某个ip地址进行ssh访问
[[email protected] ~]# firewall-cmd --permanent --add-service=ssh
[[email protected] ~]# firewall-cmd --permanent --add-rich-rule="rule family="ipv4" source address="192.168.1.1" service name="http,https" reject"
[[email protected] ~]# firewall-cmd --reload
配置端口转发(在172.24.8.0网段的主机访问该服务器的5423端口将被转发到80端口)此规则将本机80端口转发到192.168.1.1的8080端口上
[[email protected]1 ~]# firewall-cmd --permanent --add-rich-rule=‘rule family=“ipv4” source address=“172.24.8.0/24” forward-port port=“5423” protocol=“tcp” to-port=“80”’
边栏推荐
- 矩阵白化原理及推导
- Swin Transformer 论文精读,并解析其模型结构
- 【3D视觉】深度摄像头与3D重建
- 从零开始配置 vim(5)——本地设置与全局设置
- 包管理工具npm- node package management相关知识 、检查包更新、NPM包上传、更换镜像、npm ERR! registry error parsing json
- 软件测试的流程规范有哪些?具体要怎么做?
- Xcode13.1运行工程报错fatal error: ‘IFlyMSC/IFly.h‘ file not found的问题
- C# Monitor类
- golang 刷leetcode:从栈中取出 K 个硬币的最大面值和
- 千人优学 | GBase 8s数据库2022年6月大学生专场实训圆满结束
猜你喜欢
随机推荐
无线振弦采集仪远程修改参数的方式
解道8-编程技术5
Flink Yarn Per Job - 启动AM
How the sensor works
【3D视觉】realsense D435三维重建
交 叉 数 组
Wiring diagrams of switches, motors, circuit breakers, thermocouples, and meters
golang刷leetcode:拼接数组的最大分数
Packages and packages, access modifiers
Details in C# you don't know
用户之声 | GBASE南大通用实训有感
【3D视觉】深度摄像头与3D重建
一款免费的容器安全 SaaS 平台使用记录
js how to get the browser zoom ratio
Adobe官方清理工具Adobe Creative Cloud Cleaner Tool使用教程
callback prototype __proto__
iframe------------frame-
js: 实现一个cached缓存函数计算结果
浅议.NET遗留应用改造
华为设备配置BFD多跳检测