码迷,mamicode.com
首页 > 其他好文 > 详细

Openwrt开发之防火墙配置

时间:2019-08-16 11:58:14      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:prot   wal   支持   code   远程登录   firewall   接口   openwrt   des   

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开发之防火墙配置

标签:prot   wal   支持   code   远程登录   firewall   接口   openwrt   des   

原文地址:https://www.cnblogs.com/weishengzhong/p/11362778.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!