Openwrt开发之防火墙配置

Posted weishengzhong

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Openwrt开发之防火墙配置相关的知识,希望对你有一定的参考价值。

openwrt防火墙支持uci接口配置

配置源码位于:

openwrt\package\network\config\firewall\files

修改firewall.config文件然后编译,即可把修改的配置加入新固件;

配置文件位于/etc/config/firewall

 

1. 允许ssh远程登录

config rule
    option name Allow-SSH
    option target ACCEPT
    option src wan
    option dest_port 22
    option proto tcp
    option family ipv4

2. 允许http 80接口,这样openwrt的web界面就可以被外界访问

config rule
        option name Allow-http
        option src              wan
        option dest_port        80
        option target           ACCEPT
        option proto            tcp

 

以上是关于Openwrt开发之防火墙配置的主要内容,如果未能解决你的问题,请参考以下文章

openwrt配置错误无法连接n1

4-Openwrt ipv6之NAT6

openwrtnat加速配置未生效

如何利用openwrt的web配置界面来配置端口映射

openwrt如何放行端口@JeAn

OpenWrt旁路由设置教程