如果VPN断开连接,则停止整个流量 - 禁用网络(Shell脚本)

时间:2013-04-02 15:28:53

标签: shell connection vpn

Hello stackoverflow成员, 我需要一个Shell脚本来检查VPN连接是否发生了变化。如果它被更改(vpn断开连接),网络将被禁用,没有数据可以熄灭。因此将无IP泄漏。我已经检查了很多网站,我发现了一个有趣的python脚本。这是:

#!/usr/bin/env python

#
# licensed under GNU General Public License version 2
#

import sys
import traceback

import gobject

import dbus
import dbus.decorators
import dbus.mainloop.glib

import os

def catchall_signal_handler(*args, **kwargs):
    print ("Caught signal: "+ kwargs['member'])
    if args[0] >= 6: #vpn disconnect (6) or failure (7)
        print ("Killing internet connection...")
    #set eth0 to your network adapter
        os.system('ifconfig eth0 down')
    #if you are using python 3 no raw_input() exists so use input()
    raw_input("Press Enter to enable your network adapter...")
    #set eth0 to your network adapter
    os.system('ifconfig eth0 up')
     print ("Your network adapter has been enabled.")   

if __name__ == '__main__':
    dbus.mainloop.glib.DBusGMainLoop(set_as_default=True)
    print ("Monitoring your VPN connection...")
    bus = dbus.SystemBus()

    #lets make a catchall
    bus.add_signal_receiver(catchall_signal_handler, signal_name='VpnStateChanged', interface_keyword='dbus_interface', member_keyword='member')

    loop = gobject.MainLoop()
    loop.run()

问题是,它似乎只工作了一次。这真的很奇怪。 所以,我问你作为问题的专家。如果有人还有另一个更优化的脚本,我会非常感激!

提前致谢!

亲切的问候,

0 个答案:

没有答案