Re: [OpenWrt-Devel] Leaking packest in routing/firewall

2016-09-23 Thread Farid Farid
Thanks Sami for the reply. I have upgraded firewall and iptables to the trunk.I have picked many packages from the trunk . I was wondering if there is a known issue in this regard in Kernel or somewhere else and if it is possible to apply a patch or upgrade few packages to overcome this issue.

Re: [OpenWrt-Devel] Leaking packest in routing/firewall

2016-09-23 Thread Sami Olmari
Well, you are running old and obsolete version of OpenWrt, you should try at least latest stable CC 15.05.1, or preferably even trunk. -- Sami Olmari On Fri, Sep 23, 2016 at 8:39 PM, Farid Farid wrote: > Hello OpenWrt Team, > > > I am experiencing an issue possibly firewall/routing layer in O

[OpenWrt-Devel] Leaking packest in routing/firewall

2016-09-23 Thread Farid Farid
Hello OpenWrt Team, I am experiencing an issue possibly firewall/routing layer in Openwrt AA running Linux 3.10.xx. In my unit there is a gateway interface with masq set to 1. There is wifi interface operating as AP running DHCP server. If clients connect to this device and run some IP traffic

[OpenWrt-Devel] [PATCH netifd 7/7] device: Drop device down event during device release if device gets active again

2016-09-23 Thread Hans Dedecker
Fixes a race condition as the device can be active again; due to a device_claim; by the logic behind the set_state device type function. In this case the down event cannot be sent anymore as it would bring down the interface(s) referencing the device. This can be the case for an aliased device wh

[OpenWrt-Devel] [PATCH netifd 6/7] vlandev: Rework 8021ad/8021q detection based on vlandevice type

2016-09-23 Thread Hans Dedecker
Signed-off-by: Hans Dedecker --- vlandev.c | 13 - 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/vlandev.c b/vlandev.c index b065c27..7e46251 100644 --- a/vlandev.c +++ b/vlandev.c @@ -20,14 +20,12 @@ #include "system.h" enum { - VLANDEV_ATTR_TYPE, VL

[OpenWrt-Devel] [PATCH netifd 5/7] vlandev: Register 8021ad and 8021q s device types

2016-09-23 Thread Hans Dedecker
Fixes creation of vlan 8021ad/8021q devices by UCI due to device handlers rework Signed-off-by: Hans Dedecker --- vlandev.c | 17 ++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/vlandev.c b/vlandev.c index becaed8..b065c27 100644 --- a/vlandev.c +++ b/vlandev.c @

[OpenWrt-Devel] [PATCH netifd 4/7] tunnel: Use tunnel as device type name

2016-09-23 Thread Hans Dedecker
Fixes creation of tunnel devices by UCI due to device handlers rework Signed-off-by: Hans Dedecker --- tunnel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tunnel.c b/tunnel.c index 32f3613..3fa3e21 100644 --- a/tunnel.c +++ b/tunnel.c @@ -90,7 +90,7 @@ tunnel_free(struct

[OpenWrt-Devel] [PATCH netifd 3/7] macvlan: Use macvlan as device type name

2016-09-23 Thread Hans Dedecker
Fixes creation of macvlan devices by UCI due to device handlers rework Signed-off-by: Hans Dedecker --- macvlan.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/macvlan.c b/macvlan.c index 01a48cd..021d394 100644 --- a/macvlan.c +++ b/macvlan.c @@ -254,7 +254,7 @@ macvlan_cr

[OpenWrt-Devel] [PATCH netifd 2/7] bridge: Make bridge_device_type static

2016-09-23 Thread Hans Dedecker
Signed-off-by: Hans Dedecker --- bridge.c | 2 +- device.h | 1 - wireless.c | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/bridge.c b/bridge.c index 98e237b..8e6c9a6 100644 --- a/bridge.c +++ b/bridge.c @@ -80,7 +80,7 @@ static void bridge_dump_info(struct device *dev

[OpenWrt-Devel] [PATCH netifd 1/7] device: Move the different device type registrations to the device type file

2016-09-23 Thread Hans Dedecker
While at it; make device_types static if only used in the device type file Signed-off-by: Hans Dedecker --- alias.c | 2 -- bridge.c | 5 + device.c | 15 +-- device.h | 2 -- macvlan.c | 7 ++- tunnel.c | 5 - vlandev.c | 7 ++- 7 files changed, 26 insert