Archive for September, 2006
Cisco VPN Client on SuSE 9.2
I did the following to get the Cisco VPN Client V4.8 working on SuSE 9.2
- Download and install the kernel source using YaST2
- cd /usr/src/linux (or the location of your kernel source)
- make mrproper
- make cloneconfig
- make prepare-all
- Download and extract the VPN client software
- Download the source patch for the VPN client (why patch?)
- cd to the VPN client software directory (e.g. /tmp/vpnclient)
- copy the patch to the vpnclient directory
- patch < vpnclient-linux-4.7.00.0640-k9_kernel-2.6.14-1.1637_FC4.patch (you'll see 2 errors)
- ./vpn_install and use all the defaults
- Start the service: /etc/init.d/vpnclient_init start
- If you have a .pcf file, copy it to /etc/CiscoSystemsVPNClient/Profiles/
- Connect by doing the following: vpnclient connect
(do not include the .pcf extension)
References
- http://lists.opensuse.org/opensuse/2006-01/msg00854.html
- http://system.cs.fsu.edu/selfhelp/vpninfo/
- http://system.cs.fsu.edu/selfhelp/vpninfo/linvpn.php
September 17, 2006
links for 2006-09-18
-
Tunebite is an application that records the encrypted media at 4x speed by recording the output of the sound card while Windows Media Player plays the file. It isn’t a DRM crack, it doesn’t break the drm, and it doesn’t un-encrypt the NetLibrary file. It(tags: netlibrary)
September 3, 2006
QoS on OpenWRT with Vonage
These are the steps that I followed to install QoS on OpenWRT (reference the QoSHowto)
- ssh to your router (e.g. 192.168.1.1) and login as root
- ipkg install http://downloads.openwrt.org/people/nbd/qos/qos-scripts_0.9.1-1_mipsel.ipk
- cd /etc/config
- vim qos
- Added “5061″ to this line: option ports “22,53,5061″
- qos-start
- To check to see if it’s working: cat /proc/net/ip_conntrack |grep 192.168.1.192 (where 192.168.1.192 is the address of my Vonage router)
Output is
udp 17 174 xsrc=192.168.1.192 dst=69.59.252.36 sport=5061 dport=10000 xsrc=69.59.252.36 dst=66.169.7.152 sport=10000 dport=5061 [ASSURED] use=1 mark=1 l7proto=unknown
“mark=1″ indicates that the traffic is the highest priority.
More references: nbd’s QoS script and rudy’s QoS script
Comments(3)