For quite some time I’ve been using vpnc within Cygwin to connect to the aging Cisco VPN 3000 Series Concentrator at dayjob (thank you Cisco for not supporting 64-bit users as Ilias points out in the comments Cisco has finally added partial support for Windows 7 64-bit). However, I’ve been running into the erratic problem where my split tunnels were created eratically and didn’t work. Specifically, once a VPN connection got created route print indicated routes similar to the following:
#route print
Network Destination Netmask Gateway Interface Metric
10.0.0.0 255.0.0.0 10.8.11.245 192.168.1.65 31
instead of the proper one:
Network Destination Netmask Gateway Interface Metric
10.0.0.0 255.0.0.0 On-link 10.8.11.245 31
I’ve conveniently ignored the problem for some time, using a custom script to tear down and re-create the problematic routing entries, till today. Some well placed “echos” in /etc/vpnc/vpnc-script-win.js indicated that vpnc properly constructed the required route add commands, yet the routing table entries were still wrong. Clickety-click:
$ diff /etc/vpnc/vpnc-script-win.js /etc/vpnc/vpnc-script-win-BEDC.js
$ diff -U 1 /etc/vpnc/vpnc-script-win.js /etc/vpnc/vpnc-script-win-BEDC.js
--- /etc/vpnc/vpnc-script-win.js 2010-09-18 13:13:25.778339100 +0300
+++ /etc/vpnc/vpnc-script-win-BEDC.js 2011-02-18 21:35:53.279264500 +0200
@@ -80,2 +80,4 @@
if (env("CISCO_SPLIT_INC")) {
+ echo("sleeping a little bit; don't ask why but this is needed");
+ run("sleep 5");
for (var i = 0 ; i < parseInt(env("CISCO_SPLIT_INC")); i++) {
Seems that a timing issue of some sort causes these route add commands to run prematurely, before the TAP tunnel interface is properly configured, resulting in a problematic configuration. Holding them back for just 5 seconds consistently does the trick for me.
Update: if generally interested in configuring VPNC with Windows, check out Alessio Molteni’s detailed post.
Update 2: Corrected status of the official Cisco VPN client.
February 21, 2011 at 10:24 am |
Hi John,
there is 64-bit support for VPN 3000 concentrators [ref]
February 21, 2011 at 10:40 am |
This is new; thanks for the pointer