root/trunk/wifidog/NEWS

Revision 1389, 6.3 KB (checked in by benoitg, 3 years ago)

* Fix #488 and #493 (arp_get() in firewall.c couldn't parse lowercase mac's from /proc/net/arp) with patch fromjch@…. Otherwise wifidog wouldn't work with recent openwrt and Ubuntu.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1# $Id$
2WiFiDog 1.1.5:
3        * First supported version on OpenWRT kamikaze
4
5WiFiDog 1.1.4:
6        * Fix incorrect firewal rule deletion introduced in 1.1.3rc1.  Caused the incoming byte count reported to be incorrect for users that logged in a second time on a gateway that wasn't restarted in between.
7
8WiFiDog 1.1.3:
9        * Fix incomplete change to make te gateway retry external interface forever.
10        * Remove hardcoded authserver paths.  Can now be defined in the config file (auth server section).
11        * Add manual logout URL, based in part on work by David Bird
12
13WiFiDog 1.1.3rc1:
14        * Close #321:  Make the Gateway retry forever if it cannot find it's interface.  You never know when someone may finally replug the network cable or something...
15        * Close #332:  Apply patch from Laurent Marchal. biguphpc<AT>gmail<DOT>com
16        * fw_iptables.c:  Fix error in iptables_fw_access().  Rules were created as ACCEPT instead of DROP
17        * firewall.c:  Fix bug in fw_sync_with_authserver().  The traffic for the validation period of a user who validated his account while connected wouldn't get counted.
18        * doc/wifidog_firewall_map.dia:  At long last, full documentation of the firewall.  We would have avoided a lot of stupid mistakes if we produced that sooner.
19        * Release 1.1.3_rc1
20        * Fix #324
21        * wifidog.conf:  Improve comments and add examples of blocking access to the upstream LAN.
22        * conf.h:  The DEFAULT_CHECKINTERVAL was 5 instead of 60 (as stated in the config file) which caused huge needless load on the auth servers, and needless ping traffic towards the clients if it wasn't manually set.
23        * contrib/ Add contrib dir to collect the scripts and other code distributed with, but not really part of wifidog.
24        * Modify the build system to finally be able to build wifidog directly from the wifidog directory using the same files
25                used to make the official .ipk, without having to copy ANYTHNG to the openwrt SDK.
26                There is now a new target:  make ipk make ipk OPENWRTSDK=path_to_openwrt_sdk
27                       
28WiFiDog 1.1.3beta6:
29        -Fix bug #238 (config file location was hardcoded)
30        -Fix problem with autodectection of the External interface if the interface isn't fully up yet.  wifidog wil now retry for up to two minutes.
31
32WiFiDog 1.1.3beta4:
33        -Changed ordering in the filter.FORWARD chain
34        -Added TCPMSS rule
35        -Fixed rules bieng left over on shutdown
36        -Fixed wdctl reset problem
37
38WiFiDog 1.1.3beta2:
39        -Fix bug #65 (Whitelisted servers would still splash on port 80
40        -Fix incorrect default value for Path in the AuthServer configuration
41        -Add more info to wdctl status
42
43WiFiDog 1.1.3beta1:
44        -Added patch by wireless London to use the GW interface's mac address as the node_id
45          if no node_id is specified. It allows the use of generic configuration files without
46          the need to hardcoding the node_id in.
47        -Added TrustedMACList configuration variable which allows specifying
48          MAC addresses which are allowed to go through without authentication.
49        -New wdctl command "restart" which will get wifidog to restart itself
50          while preserving the existing clientlist.  Perfect for 0-downtime
51          upgrading!
52        -libhttpd: Fixed two bugs parsing the GET query string making wifidog segfault
53         
54       
55WiFiDog 1.1.2:
56    - Added some informations so it compiles on newer OpenWRT's (whiterussian-rc2)
57    - Fixed minor issue with wdctl
58    - Changed the iptables rules priority to allow existing NAT rules to work
59    - read()s from central server in auth_server_request() are
60        now timed-out (via select).  This is hopefully a bugfix to the
61        thread-freezing problem.
62    - Bugfix non-RFC compliant HTTP requests using \n instead of \r\n as line
63        terminations as per email from ludocornut@users.sourceforge.net
64    - Firewall: make the default ruleset for validating users = allow all
65        (except sending SMTP)
66
67Fixed issue with FAQ
68
69WiFiDog 1.1.1:
70    - An auth server on port 80 will now work
71    - Added an FAQ
72
73WiFiDog 1.1.0:
74        - Changes:
75                - Visual tweaks in the web interface
76                - Internal code & documentation touch-ups
77                - More debugging output
78        - Bugfixes:
79                - Wrong reported uptime
80                - Invalid http header sent during redirection
81                - Mixed long/long long type for counter
82                - Respect SSL setting in auth server definition
83                - Explicitly allow traffic coming into the router
84                - SIGPIPE handling
85                - Firewall destruction not occuring on wifidog termination
86
87WiFiDog 1.1.0_beta3:
88        - Completely re-did the iptables rules.  Most of the rules are now in the filter table instead of the nat table.  Also DROPs are now replaced with REJECTs to help tell the user connection refused instead of endless pauses
89        - wdctl status will return more informations
90        - Some error messages are now displayed by the auth server (used to be done in a non-pretty way by wifidog)
91        - We now 'ping' authserver and detect when authservers are changing IPs
92        - Fixed memory leaks
93        - Incoming and outgoing counters were reversed
94        - More verbose debugging
95        - ICMP Ping the users everytime we check their counters to keep them alive
96        - Optional ExternalInterface
97        - Optional GatewayAddress
98        - /about URL now shows wifidog version
99        - Keep track of last times we successfully & unsuccessfully spoke to the auth server/used DNS. Then, if we know we're not online, show a little apology to the user instead of re-directing them to the auth server.
100        - When pinging auth server now also sends sys_uptime, sys_memfree and sys_load
101        - Bugfix: Traffic from client to router was counted twice in the "outgoing" bytecount since it increased both counters in mangle.* and filter.* - Got rid of TABLE_WIFIDOG_WIFI_TO_GW completely since it's unneeded
102        - Do not update the last_updated field on incoming traffic - update it on outgoing traffic only.  This should be a much more reliable indication of client no longer being there
103        - WiFiDog status is now viewable with a web browser at http://ip:port/wifidog/status
104
105WiFiDog 1.0.2:
106        - Fix reversed incoming and outgoing connections in statistics reported to the auth server
107        - Will now gracefully handle auth servers changing IP adress.
108        - Fixes two bugs in byte counting. (Possible missed data, and incoming and outgoing were reversed.
109        - Fixed file descriptor leaks
110        - wdctl_status now returns all connected users.
111        - worked around sed -i not being available on all platform
112        - ipkg no longuer overwrites config file
113        - Several code changes in thread handling and libhttpd to fix occasional hangs.
114
115WiFiDog 1.0.0:
116        - Initial release
Note: See TracBrowser for help on using the browser.