Changeset 874

Show
Ignore:
Timestamp:
12/09/07 21:35:43 (1 year ago)
Author:
mbr
Message:

fwknop-1.8.4-pre6

Files:

Legend:

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

    r866 r874  
    11fwknop-1.8.4 (12//2007): 
    22    - 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). 
    412    - Added the ability to force the fwknopd and knoptm daemons to restart 
    513      themselves (via knopwatchd) after a configurable timeout (see the 
     
    1826      interface name from the command line (LANG env issues can exist 
    1927      sometimes). 
    20     - Major update to start working on forwarding access through an iptables 
    21       policy in SPA mode. 
    2228    - Updated SPA packet format for server_auth and forward_info elements; 
    2329      the internal MD5 sum is now always the last field in an SPA packet. This 
  • fwknop/trunk/VERSION

    r862 r874  
    1 1.8.4-pre5 
     11.8.4-pre6 
  • fwknop/trunk/fwknop

    r868 r874  
    1717# Author: Michael Rash (mbr@cipherdyne.org) 
    1818# 
    19 # Version: 1.8.4-pre5 
     19# Version: 1.8.4-pre6 
    2020# 
    2121# Copyright (C) 2004-2007 Michael Rash (mbr@cipherdyne.org) 
     
    5252use strict; 
    5353 
    54 my $version = '1.8.4-pre5'; 
     54my $version = '1.8.4-pre6'; 
    5555my $revision_svn = '$Revision$'; 
    5656my $rev_num = '1'; 
  • fwknop/trunk/fwknopd

    r873 r874  
    2020# Author: Michael Rash (mbr@cipherdyne.org) 
    2121# 
    22 # Version: 1.8.4-pre5 
     22# Version: 1.8.4-pre6 
    2323# 
    2424# Copyright (C) 2004-2007 Michael Rash (mbr@cipherdyne.org) 
     
    6363my $access_conf_file = ''; 
    6464 
    65 my $version = '1.8.4-pre5'; 
     65my $version = '1.8.4-pre6'; 
    6666my $revision_svn = '$Revision$'; 
    6767my $rev_num = '1'; 
  • fwknop/trunk/knoptm

    r873 r874  
    1919# Author: Michael Rash (mbr@cipherdyne.org) 
    2020# 
    21 # Version: 1.8.4-pre5 
     21# Version: 1.8.4-pre6 
    2222# 
    2323# Copyright (C) 2004-2007 Michael Rash (mbr@cipherdyne.org) 
     
    5454my $user_rc_file = ''; 
    5555 
    56 my $version = '1.8.4-pre5'; 
     56my $version = '1.8.4-pre6'; 
    5757my $print_help = 0; 
    5858my $print_ver  = 0; 
  • fwknop/trunk/knopwatchd.c

    r862 r874  
    1414*  Credits:  (see the CREDITS file) 
    1515* 
    16 *  Version: 1.8.4-pre5 
     16*  Version: 1.8.4-pre6 
    1717* 
    1818*  Copyright (C) 2004-2007 Michael Rash (mbr@cipherdyne.org) 
  • fwknop/trunk/test/fwknop_test.pl

    r872 r874  
    1010# Author: Michael Rash (mbr@cipherdyne.org) 
    1111# 
    12 # Version: 1.8.4-pre5 
     12# Version: 1.8.4-pre6 
    1313# 
    1414# Copyright (C) 2004-2007 Michael Rash (mbr@cipherdyne.org)