Hi Christoph, On Fri, Oct 02, 2015 at 10:26:25AM +0200, Christoph Pleger wrote: > The bug report is now almost three months old. Is there anything going to > happen to solve the problem?
it seems I'm unable to properly support vpnc, and should probably pass the package on to somebody else... Regarding your problem I'd like to ask you to have a look into the source - I think you're mistaken that "IPSEC target networks" does what "Target networks" did before even though they sound similiar (one reason to drop that patch). The Debian-specific "Target networks" was basically a convenience facility to set up split networking in vpnc-script: for network in $TARGET_NETWORKS ; do eval CISCO_SPLIT_INC_${i}_ADDR=`echo $network | cut -f1 -d/` eval CISCO_SPLIT_INC_${i}_MASKLEN=`echo $network | cut -f2 -d/` eval CISCO_SPLIT_INC_${i}_MASK=$( perl -e '$ARGV[0]=~s,.*/,,;$m=(2**$ARGV[0]-1)<<(32-$ARGV[0]);printf "%d.%d.%d.%d\n", $m>>24 & 0xff, $m>>16 & 0xff, $m>>8 & 0xff, $m & 0xff;' $network ) eval CISCO_SPLIT_INC_${i}_PROTOCOL=0 eval CISCO_SPLIT_INC_${i}_SPORT=0 eval CISCO_SPLIT_INC_${i}_DPORT=0 So I suppose "IPSEC target network" does what it is meant to do, and you could have a look at README on how to set up split networking? Florian