Skip to main content

Open vSwitch library

Project description

The openvswitch package provides the official Python language bindings for Open vSwitch. They are developed in-tree as part of the Open vSwitch Package.

Installation

You can install the package using pip:

$ pip install ovs

The package include an optional flow parsing library. To use this package, you must install its required dependencies. The flow extra is provided for this purpose:

$ pip install ovs[flow]

Examples

Inspecting the database schema

The OVSDB schema is described in a JSON file, typically called vswitch.ovsschema. It can be inspected via schema provided locally on the host or remotely via the JSON-RPC API. For example, to view it from the local file:

import json
import ovs.dirs

schema_path = f'{ovs.dirs.PKGDATADIR}/vswitch.ovsschema'

with open(schema_path) as fh:
    schema = json.load(fh)

print(schema)

To do the same via the JSON-RPC, using TCP:

import json
import sys
import ovs.jsonrpc

remote = 'tcp:127.0.0.1:6640'

error, stream = ovs.stream.Stream.open_block(ovs.stream.Stream.open(remote))
if error:
    print(error)
    sys.exit(1)

rpc = ovs.jsonrpc.Connection(stream)
request = ovs.jsonrpc.Message.create_request('get_schema', ['Open_vSwitch'])
error, reply = rpc.transact_block(request)
rpc.close()
if error:
    print(error)
    sys.exit(1)

schema = reply.result
print(schema)

Dumping tables, ports and interfaces

The Open vSwitch Database (OVSDB) Interface Definition Language (IDL) maintains an in-memory replica of a database. It issues RPC requests to an OVSDB database server and parses the responses, converting raw JSON into data structures that are easier for clients to digest. You can use the IDL for database transactions along with simpler operations such as dumping information about the schema. The Python implementation of the OVSDB IDL is provided in ovs.db.idl via the Idl class. To initialise this, you need a schema helper and a “remote” or interface through which to communicate with the OVSDB. We can re-use and build upon the schema example from above to create an instance of ovs.db.idl.SchemaHelper. Once done, you can create an instance of ovs.db.idl.IDL and use this to iterate over the bridges, ports and interfaces available:

import ovs.db.idl
import ovs.dirs

# Create the schema helper.
schema_path = f'{ovs.dirs.PKGDATADIR}/vswitch.ovsschema'
schema_helper = ovs.db.idl.SchemaHelper(schema_path)
schema_helper.register_all()  # Register all tables for monitoring.

# Connect over TCP.
remote = 'tcp:127.0.0.1:6640'

idl = ovs.db.idl.Idl(remote, schema_helper)

# Wait until we have all information retrieved from the database.
while not idl.has_ever_connected():
    poller = ovs.poller.Poller()
    idl.wait(poller)
    poller.block()
    idl.run()

# Print bridges, ports and interfaces, à la 'ovs-vsctl show'.
for bridge in idl.tables['Bridge'].rows.values():
    print(f'Bridge {bridge.name}')
    for port in bridge.ports:
        print(f'\tPort {port.name}')
        for interface in port.interfaces:
            print(f'\t\tInterface {interface.name}')
            print(f'\t\t\ttype: {interface.type}')

Documentation

Documentation is included in the Python source. To view this, you can install the package and use pydoc. For example:

$ python -m pydoc ovs

Alternatively, you can use the help function from the Python REPL:

>>> import ovs
>>> help(ovs)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ovs-3.6.1.tar.gz (161.8 kB view details)

Uploaded Source

File details

Details for the file ovs-3.6.1.tar.gz.

File metadata

  • Download URL: ovs-3.6.1.tar.gz
  • Upload date:
  • Size: 161.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ovs-3.6.1.tar.gz
Algorithm Hash digest
SHA256 d4a214df1d92c80a132b622573c2e760ffc73faf25950247fb2222e02057023d
MD5 bd1476bb23064069f20b6f439984dec6
BLAKE2b-256 c3dc46b8b62cc9e70ab7a369916d8db089382254a81c2a69dea59652b87f1fe8

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page