Tagged Questions
0
votes
3answers
412 views
How to make sense of an iptables chain configuration
This is about how to make sense of the chains found in the iptables default configuration on a typical home router running OpenWrt (a stripped down Linux for router devices), but which ultimately may ...
2
votes
1answer
389 views
Allow IP packet forwarding from LAN to modem via router
In short: I'd like to be able to telnet to my modem from my PC via my router.
There is a simple home router on 192.168.33.1. It is running OpenWrt. It has the following interfaces defined:
br-lan ...
4
votes
1answer
1k views
Have someone ever audited the default OpenWrt firewall rules?
I have an Openwrt 10.03.1 installed from: openwrt-ar71xx-wrt160nl-squashfs-factory.bin (firewall only customized with this: sed 's/REJECT/DROP/g' /etc/config/firewall) - so besides this, IT'S A ...
1
vote
1answer
1k views
Limit the max connections per IP using OpenWRT?
Would the following iptables command on an OpenWRT router assure that no one client has more than 50 active connections?
$ iptables -I FORWARD -m connlimit --connlimit-above 50 -j REJECT ...