IP白名单

  1. 启动防火墙
systemctl start firewalld.service
  1. 不限IP白名单端口
 firewall-cmd --permanent --add-port=21/tcp
  1. 限制白名单端口
firewall-cmd --permanent --add-rich-rule="rule family="ipv4" source address="192.168.8.1/32" port protocol="tcp" port="3306" accept"
  1. 重新加载
firewall-cmd --reload

你可能感兴趣的:(Linux,tcp/ip,网络,服务器)