标签: iptables
iptables防火墙常规应用命令使用整理
这几天老蒋在调试老赵完成的WPFTP插件实现自定义图床对象存储,但是发现一个问题一直没有解决。如果对象存储FTP空间与网站在一台服务器中,无需额外开启端口放……
Ubuntu配置防火墙iptables重启生效(常见iptables的用法记录)
基于服务器的安全考虑,我们需要在Ubuntu 18.04环境中进行配置iptables防火墙,这里老蒋简单的记录iptables的常规用法。一般我们都是在需要服务器的ROOT权限下……
lnmp一键安装包 的 mysql远程连接问题解决
安装好MySQL后会出现MySQL只能本机(127.0.0.1、localhost)连接的情况,一般是以下几种可能:
1,打开系统配置中mysql库中的user表,将你要登录的账号的host……
lnmp一键安装包 的 mysql远程连接问题解决
因为lnmp一键安装包默认把3306端口禁止远程连接, 所以必须把端口限制解除
查看已有iptables规则, 用序号显示
iptables -L -n --line-numbers
删除对应……
Disable all the mail protocol by iptables
Disable all the mail protocol by iptables:
iptables -A INPUT -p tcp -m multiport --dport 25,110,465:587,993:995 -j DROP
iptables -A INPUT -p udp -m……