- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- howto run 2 cisco vpn clients on the same machine ...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-12-2004 07:07 AM
02-12-2004 07:07 AM
is it possible to run 2 cisco vpn clients
on the same machine ?
both should be connected at the same time
to the different remote server.
I use vpnclient-linux-4.0.Rel-k9
kind regards
chris
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-12-2004 12:07 PM
02-12-2004 12:07 PM
Re: howto run 2 cisco vpn clients on the same machine at the same time ?
If they do, you have a chance (assuming they don't cross IP's).
If they lock our access to your LAN, then not a chance.
It's a setting you can change on your local config, but is actually determined by the VPN server (can override your local settings, most annoyingly!).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-12-2004 11:11 PM
02-12-2004 11:11 PM
Re: howto run 2 cisco vpn clients on the same machine at the same time ?
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 added 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?
kind regards
chris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-29-2004 09:57 PM
06-29-2004 09:57 PM
SolutionA great name you have (it's my name too).
In answer to:
"I've added 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?"
It is easy. Simply:
ln -s /usr/local/bin/vpnclient /usr/local/bin/vpnclient2
Then simply copy the same script you are
already using and change the call to
vpnclient to vpnclient2. That's all there
is to it.
Hope you have fun,
Chris (unknown)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-29-2004 10:35 PM
06-29-2004 10:35 PM