Linux 系统可以通过以下命令配置防火墙软件 iptables:
- 检查是否已经安装了 iptables
如果没有安装,可以用以下命令安装:sudo apt-get install iptables# Allow local TCP connections
sudoiptables -A INPUT -p tcp --dport 0:1023 -j ACCEPT
sudoiptables -A INPUT -p tcp --dport 80:8080 -j ACCEPT# Allow IP address range from 192.168.1.1 to 192.168.1.100
sudoiptables -A INPUT -s 192.168.1.1/24 -j ACCEPT
sudoiptables -A INPUT -s 192.168.1.100/24 -j ACCEPTsudo cat /etc/iptables/iptables.rules | sudo tee -a /etc/iptables/rules.d/default.rulessudo systemctl restart iptables以上是一些基本的防火墙规则配置,可以根据自己的需求进行修改。还可以通过编辑
/etc/network/interfaces
文件配置网络,通过 /etc/resolv.conf
文件配置 DNS,通过 /var/spool/cron/crontabs
文件配置定时任务等。 - 配置基本的防火墙规则
编辑
/etc/iptables/iptables.rules
文件,添加以下规则,以允许本地 TCP 连接: - 允许特定 IP 地址访问防火墙
- 添加其他规则
可以根据自己的需要进行其他的配置。
- 保存并退出文件
- 重启防火墙
建议在学习 Linux 系统时从基础命令开始学习,例如基本的文件和目录操作,Shell 命令行操作,常用的系统管理工具等。同时,还可以通过阅读一些操作系统教材和网络资料,获取更多的 Linux 系统知识。