Forum Moderators: bakedjake
but there is a script to keep the vpn client
up an running all the time:
----------------------------------------------------
#!/bin/sh
ps ax ¦ grep vpnclient ¦ grep -v grep
if [ "$?"!= "0" ] ; then
# restart PROCESS
/etc/init.d/vpnclient_init restart
fi
----------------------------------------------------
I've add this entries to /etc/rc.d/vpnclient_init
cp /etc/CiscoSystemsVPNClient/vpn.template /etc/CiscoSystemsVPNClient/Profiles/vpn.pcf
sleep 10
/usr/local/bin/vpnclient connect vpn & > /dev/null
but how will work with 2 vpn clients in my case?
I don't want to stop one and start another.
and both have to always run permanently.
any idea?
regards
cccc