You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

openvpn-status-parser

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

openvpn-status-parser

OpenVPN status parser

0.0.3
pipPyPI
Maintainers
1

openvpn-status-parser

Installation:

::

pip install openvpn-status-parser

or clone the repository <https://github.com/ojarva/openvpn-status-parser>_ and run

::

python setup.py install

Usage:

  • add status-version 3 to openvpn server configuration. Reload/restart openvpn server.
  • locate openvpn status file. Usually it's under /var/run in Unix based systems.

::

openvpn-status-parser /var/run/openvpn/openvpn.status

Or using Python:

::

import pprint from openvpn_status_parser import OpenVPNStatusParser

parser = OpenVPNStatusParser("/var/run/openvpn/openvpn.status") pprint.pprint(parser.connected_clients) pprint.pprint(parser.routing_table) pprint.pprint(parser.details)

License

MIT License; see LICENSE.txt for full details.

Keywords

openvpn

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts