Changeset 874
- Timestamp:
- 12/09/07 21:35:43 (1 year ago)
- Files:
-
- fwknop/trunk/ChangeLog (modified) (2 diffs)
- fwknop/trunk/VERSION (modified) (1 diff)
- fwknop/trunk/fwknop (modified) (2 diffs)
- fwknop/trunk/fwknopd (modified) (2 diffs)
- fwknop/trunk/knoptm (modified) (2 diffs)
- fwknop/trunk/knopwatchd.c (modified) (1 diff)
- fwknop/trunk/test/fwknop_test.pl (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
fwknop/trunk/ChangeLog
r866 r874 1 1 fwknop-1.8.4 (12//2007): 2 2 - Added a test suite so that fwknop and fwknopd functionality can be 3 automatically tested over the loopback interface. 3 automatically tested over the loopback interface (see the fwknop_test.pl 4 script in the test/ directory). 5 - Major update to start working on forwarding access through an iptables 6 policy in SPA mode (not completed yet). 7 - Added support for the iptables OUTPUT chain via two new variable in the 8 fwknop.conf file: ENABLE_IPT_OUTPUT and IPT_OUTPUT_ACCESS. This is 9 useful for iptables firewalls that are not running the conntrack modules 10 and that have a restrictive OUTPUT chain (so SYN/ACK responses are not 11 allowed out without an explicit ACCEPT rule). 4 12 - Added the ability to force the fwknopd and knoptm daemons to restart 5 13 themselves (via knopwatchd) after a configurable timeout (see the … … 18 26 interface name from the command line (LANG env issues can exist 19 27 sometimes). 20 - Major update to start working on forwarding access through an iptables21 policy in SPA mode.22 28 - Updated SPA packet format for server_auth and forward_info elements; 23 29 the internal MD5 sum is now always the last field in an SPA packet. This fwknop/trunk/VERSION
r862 r874 1 1.8.4-pre 51 1.8.4-pre6 fwknop/trunk/fwknop
r868 r874 17 17 # Author: Michael Rash (mbr@cipherdyne.org) 18 18 # 19 # Version: 1.8.4-pre 519 # Version: 1.8.4-pre6 20 20 # 21 21 # Copyright (C) 2004-2007 Michael Rash (mbr@cipherdyne.org) … … 52 52 use strict; 53 53 54 my $version = '1.8.4-pre 5';54 my $version = '1.8.4-pre6'; 55 55 my $revision_svn = '$Revision$'; 56 56 my $rev_num = '1'; fwknop/trunk/fwknopd
r873 r874 20 20 # Author: Michael Rash (mbr@cipherdyne.org) 21 21 # 22 # Version: 1.8.4-pre 522 # Version: 1.8.4-pre6 23 23 # 24 24 # Copyright (C) 2004-2007 Michael Rash (mbr@cipherdyne.org) … … 63 63 my $access_conf_file = ''; 64 64 65 my $version = '1.8.4-pre 5';65 my $version = '1.8.4-pre6'; 66 66 my $revision_svn = '$Revision$'; 67 67 my $rev_num = '1'; fwknop/trunk/knoptm
r873 r874 19 19 # Author: Michael Rash (mbr@cipherdyne.org) 20 20 # 21 # Version: 1.8.4-pre 521 # Version: 1.8.4-pre6 22 22 # 23 23 # Copyright (C) 2004-2007 Michael Rash (mbr@cipherdyne.org) … … 54 54 my $user_rc_file = ''; 55 55 56 my $version = '1.8.4-pre 5';56 my $version = '1.8.4-pre6'; 57 57 my $print_help = 0; 58 58 my $print_ver = 0; fwknop/trunk/knopwatchd.c
r862 r874 14 14 * Credits: (see the CREDITS file) 15 15 * 16 * Version: 1.8.4-pre 516 * Version: 1.8.4-pre6 17 17 * 18 18 * Copyright (C) 2004-2007 Michael Rash (mbr@cipherdyne.org) fwknop/trunk/test/fwknop_test.pl
r872 r874 10 10 # Author: Michael Rash (mbr@cipherdyne.org) 11 11 # 12 # Version: 1.8.4-pre 512 # Version: 1.8.4-pre6 13 13 # 14 14 # Copyright (C) 2004-2007 Michael Rash (mbr@cipherdyne.org)
