coova / coova-chilli

CoovaChilli is an open-source software access controller for captive portal hotspots.
Other
507 stars 258 forks source link

Kmod Connection Reset #62

Open devbreak opened 9 years ago

devbreak commented 9 years ago

Hi, When i use kmod in conjunction with UAM auh i get connection reset on "/logon" In wire shark TCP RST package come immediately after /logon request

Please find attached my print screens with normal mode normal_without_kernel

and kmod enable kernel_module

devbreak commented 9 years ago

Quick and incorrect fix for this issue was done by dropping packages smaller than 55 bytes in function dhcp_net_send with this code

if(length > 54) { return net_write_eth(netif, packet, length, &netif->dest); }

shkrid commented 8 years ago

@devbreak This fix breaks working Chilli without kmod(xt_coova). Maybe there is a another solution of this problem?

Thanks.