3

I'm using Ubuntu Network Manager VPN client to connect to a PPTP vpn server.
I have an application that get some data from internet and must be runned from behind the VPN.
I need to suspend application process if VPN connection dropped.
How can I find out the VPN is connected/disconnected (script or command)?
Or is there a service that be able to call an script when VPN connected/disconnected?

Thanks

Gilles 'SO- stop being evil'
  • 807,993
  • 194
  • 1,674
  • 2,175
Ariyan
  • 2,056
  • 3
  • 27
  • 36
  • 1
    You can ping your VPN gateway. So, if your gateway on the VPN is 172.16.1.1, the exit status of `ping -c 1 -W 10 172.16.1.1` will tell you if you're connected. – Shawn J. Goff Apr 17 '12 at 11:57

2 Answers2

1

I wrote something awhile back that keeps an eye on your IPs using a couple of different methods and gives some options for notification and such. It was written for CentOS but it wouldn't take much to adapt it to Debian flavours. Feedback is welcome.

http://code.google.com/p/ipcheck/source/browse/ipcheck.sh

user220710
  • 11
  • 1
1

TorrentFreak had an article about things like that.

You could check out VPNCheck.

Gert
  • 9,886
  • 3
  • 36
  • 37