Changeset 557

Show
Ignore:
Timestamp:
04/20/05 12:56:34 (4 years ago)
Author:
aprilp
Message:

Insert ourselves at the end of filter.FORWARD instead of
at the beginning since important FW instructions are located there on the
WRT54Gs when used with some DSL providers and we never execute them
otherwise.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/wifidog/ChangeLog

    r537 r557  
    11# $Header$ 
     22005-04-20 Philippe April <philippe@ilesansfil.org> 
     3        * fw_iptables.c: Insert ourselves at the end of filter.FORWARD instead of 
     4        at the beginning since important FW instructions are located there on the 
     5        WRT54Gs when used with some DSL providers and we never execute them 
     6        otherwise. 
     7        * Released 1.1.2_beta1 
     8 
    292005-04-03 Philippe April <philippe@ilesansfil.org> 
    310        * Fixed issue with FAQ 
  • trunk/wifidog/configure.in

    r531 r557  
    2121WIFIDOG_MAJOR_VERSION=1 
    2222WIFIDOG_MINOR_VERSION=1 
    23 WIFIDOG_MICRO_VERSION=
     23WIFIDOG_MICRO_VERSION=2_beta
    2424WIFIDOG_VERSION=$WIFIDOG_MAJOR_VERSION.$WIFIDOG_MINOR_VERSION.$WIFIDOG_MICRO_VERSION 
    2525 
  • trunk/wifidog/src/fw_iptables.c

    r531 r557  
    256256 
    257257                        /* Assign links and rules to these new chains */ 
    258                         iptables_do_command("-t filter -I FORWARD 1 -i %s -j " TABLE_WIFIDOG_WIFI_TO_INTERNET, gw_interface); 
     258                        iptables_do_command("-t filter -A FORWARD -i %s -j " TABLE_WIFIDOG_WIFI_TO_INTERNET, gw_interface); 
    259259                        iptables_do_command("-t filter -A " TABLE_WIFIDOG_WIFI_TO_INTERNET " -j " TABLE_WIFIDOG_AUTHSERVERS); 
    260260                        iptables_fw_set_authservers();