<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: howto run 2 cisco vpn clients on the same machine  at the same time ? in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/howto-run-2-cisco-vpn-clients-on-the-same-machine-at-the-same/m-p/3190803#M88511</link>
    <description>thanks !</description>
    <pubDate>Wed, 30 Jun 2004 05:35:30 GMT</pubDate>
    <dc:creator>'chris'</dc:creator>
    <dc:date>2004-06-30T05:35:30Z</dc:date>
    <item>
      <title>howto run 2 cisco vpn clients on the same machine  at the same time ?</title>
      <link>https://community.hpe.com/t5/operating-system-linux/howto-run-2-cisco-vpn-clients-on-the-same-machine-at-the-same/m-p/3190799#M88507</link>
      <description>hi&lt;BR /&gt;&lt;BR /&gt;is it possible to run 2 cisco vpn clients &lt;BR /&gt;on the same machine ?&lt;BR /&gt;both should be connected at the same time&lt;BR /&gt;to the different remote server.&lt;BR /&gt;I use vpnclient-linux-4.0.Rel-k9&lt;BR /&gt;&lt;BR /&gt;kind regards&lt;BR /&gt;chris</description>
      <pubDate>Thu, 12 Feb 2004 15:07:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/howto-run-2-cisco-vpn-clients-on-the-same-machine-at-the-same/m-p/3190799#M88507</guid>
      <dc:creator>'chris'</dc:creator>
      <dc:date>2004-02-12T15:07:05Z</dc:date>
    </item>
    <item>
      <title>Re: howto run 2 cisco vpn clients on the same machine  at the same time ?</title>
      <link>https://community.hpe.com/t5/operating-system-linux/howto-run-2-cisco-vpn-clients-on-the-same-machine-at-the-same/m-p/3190800#M88508</link>
      <description>That, unfortunately, all depends on how they are configured, in particular, if they allow you access to your local at the same time.&lt;BR /&gt;&lt;BR /&gt;If they do, you have a chance (assuming they don't cross IP's).&lt;BR /&gt;&lt;BR /&gt;If they lock our access to your LAN, then not a chance.&lt;BR /&gt;&lt;BR /&gt;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!).</description>
      <pubDate>Thu, 12 Feb 2004 20:07:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/howto-run-2-cisco-vpn-clients-on-the-same-machine-at-the-same/m-p/3190800#M88508</guid>
      <dc:creator>Stuart Browne</dc:creator>
      <dc:date>2004-02-12T20:07:07Z</dc:date>
    </item>
    <item>
      <title>Re: howto run 2 cisco vpn clients on the same machine  at the same time ?</title>
      <link>https://community.hpe.com/t5/operating-system-linux/howto-run-2-cisco-vpn-clients-on-the-same-machine-at-the-same/m-p/3190801#M88509</link>
      <description>thanks&lt;BR /&gt;&lt;BR /&gt;but there is a script to keep the vpn client&lt;BR /&gt;up an running all the time:&lt;BR /&gt;&lt;BR /&gt;----------------------------------------------------&lt;BR /&gt;#!/bin/sh&lt;BR /&gt;&lt;BR /&gt;ps ax | grep vpnclient | grep -v grep&lt;BR /&gt;&lt;BR /&gt;if [ "$?"!= "0" ] ; then&lt;BR /&gt;&lt;BR /&gt;# restart PROCESS&lt;BR /&gt;&lt;BR /&gt;/etc/init.d/vpnclient_init restart&lt;BR /&gt;&lt;BR /&gt;fi&lt;BR /&gt;&lt;BR /&gt;----------------------------------------------------&lt;BR /&gt;&lt;BR /&gt;I've added this entries to/etc/rc.d/vpnclient_init&lt;BR /&gt;&lt;BR /&gt;cp /etc/CiscoSystemsVPNClient/vpn.template /etc/CiscoSystemsVPNClient/Profiles/vpn.pcf&lt;BR /&gt;sleep 10&lt;BR /&gt;/usr/local/bin/vpnclient connect vpn &amp;amp; &amp;gt; /dev/null&lt;BR /&gt;&lt;BR /&gt;but how will work with 2 vpn clients in my case?&lt;BR /&gt;I don't want to stop one and start another.&lt;BR /&gt;and both have to always run permanently.&lt;BR /&gt;any idea?&lt;BR /&gt;&lt;BR /&gt;kind regards&lt;BR /&gt;chris</description>
      <pubDate>Fri, 13 Feb 2004 07:11:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/howto-run-2-cisco-vpn-clients-on-the-same-machine-at-the-same/m-p/3190801#M88509</guid>
      <dc:creator>'chris'</dc:creator>
      <dc:date>2004-02-13T07:11:57Z</dc:date>
    </item>
    <item>
      <title>Re: howto run 2 cisco vpn clients on the same machine  at the same time ?</title>
      <link>https://community.hpe.com/t5/operating-system-linux/howto-run-2-cisco-vpn-clients-on-the-same-machine-at-the-same/m-p/3190802#M88510</link>
      <description>Greetings chris,&lt;BR /&gt; A great name you have (it's my name too).&lt;BR /&gt;In answer to:&lt;BR /&gt;"I've added this entries to/etc/rc.d/vpnclient_init&lt;BR /&gt;&lt;BR /&gt;cp /etc/CiscoSystemsVPNClient/vpn.template /etc/CiscoSystemsVPNClient/Profiles/vpn.pcf&lt;BR /&gt;sleep 10&lt;BR /&gt;/usr/local/bin/vpnclient connect vpn &amp;amp; &amp;gt; /dev/null&lt;BR /&gt;&lt;BR /&gt;but how will work with 2 vpn clients in my case?&lt;BR /&gt;I don't want to stop one and start another.&lt;BR /&gt;and both have to always run permanently.&lt;BR /&gt;any idea?"&lt;BR /&gt;&lt;BR /&gt;It is easy. Simply:&lt;BR /&gt;ln -s /usr/local/bin/vpnclient /usr/local/bin/vpnclient2&lt;BR /&gt;&lt;BR /&gt;Then simply copy the same script you are&lt;BR /&gt;already using and change the call to&lt;BR /&gt;vpnclient to vpnclient2. That's all there&lt;BR /&gt;is to it.&lt;BR /&gt;&lt;BR /&gt;Hope you have fun,&lt;BR /&gt; Chris (unknown)&lt;BR /&gt;</description>
      <pubDate>Wed, 30 Jun 2004 04:57:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/howto-run-2-cisco-vpn-clients-on-the-same-machine-at-the-same/m-p/3190802#M88510</guid>
      <dc:creator>unknown_6</dc:creator>
      <dc:date>2004-06-30T04:57:14Z</dc:date>
    </item>
    <item>
      <title>Re: howto run 2 cisco vpn clients on the same machine  at the same time ?</title>
      <link>https://community.hpe.com/t5/operating-system-linux/howto-run-2-cisco-vpn-clients-on-the-same-machine-at-the-same/m-p/3190803#M88511</link>
      <description>thanks !</description>
      <pubDate>Wed, 30 Jun 2004 05:35:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/howto-run-2-cisco-vpn-clients-on-the-same-machine-at-the-same/m-p/3190803#M88511</guid>
      <dc:creator>'chris'</dc:creator>
      <dc:date>2004-06-30T05:35:30Z</dc:date>
    </item>
  </channel>
</rss>

