Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在嵌入式 linux 板上安装了busybox 作为“入门”包,我还需要使用 iptables 来配置一些防火墙规则。
有没有办法从busybox shell 访问iptables?
否则,我如何退出busybox shell 以访问iptables 命令?
谢谢你。
(1)首先需要了解如何在 Busybox 环境下修改内核、安装模块和应用程序。
(2)然后你可以配置内核支持Iptables(大部分在network/netfilter的菜单中),你可以将这些内核模块构建为ko模块或内核映像的一部分。
(3)到首页netfilter获取应用源代码。构建和安装。
(4)modprobe ko(例如)
modprobe iptable_filter modprobe ip_tables
(5)试试你的IPTABLES....如果遇到问题,你可以去第2步做一些改变。