Skip to main content

Converts RS232 serial data to SNMP commands to control PDUs.

Project description

CC BY-NC 4.0Actions CI

RS-232 to PDU Tool

The RS-232 to PDU tool allows admins to send byte strings through an RS-232 connector to control a SNMP-enabled PDU. Supported operations are to turn a specific outlet port ON, OFF, and CYCLE.


Supported Serial Commands

  • Turn outlet on: on <bank> <port>
  • Turn outlet off: of <bank> <port>
  • Cycle (restart) outlet: cy <bank> <port>

<bank> and <port> must be between (0-255).


Health Check

Health checks will send a GET command to the SNMP agent.

If a response is successfully received, the health check is considered to have passed. If the command timed-out or returned an error, the health check is considered to have failed. At this point, the tool will log this event, but continue with other operations.

Health checks will have priority over other commands, i.e. if there is a pending health check, it will be executed before any other SNMP operations.

Healthcheck frequency are configurable in the config.yaml file, under healthcheck.frequency.


Power States

Maps serial commands, on, of and optionally cy (cycle) to SNMP values set on the OIDs that control outlet states. If cy is not specified, and a cy command is received, the outlet state is set to of, followed by a delay of power_states.cy_delay seconds, then of.


SNMP Command Buffering

To prevent the SNMP agent from being overwhelmed by operations, this tool will not send a command to the SNMP agent until a response for the previous operation has been received. As such, all queued operations will be stored in a priority based FIFO queue. SNMP operations resulting from serial commands will be processed in the order that they are received, with automatic health checks taking priority and being inserted at the front of the queue.


SNMP Authentication

This tool supports v1, v2, and v3 SNMP authentication.

The authentication version for each bank should be listed in the config.yaml file. Only a single SNMP version is allowed for each bank.

When using SNMP v3, the user may also choose what security level they desire. The accepted values are noAuthNoPriv , authNoPriv, and authPriv.

  • noAuthNoPriv: SNMP request will be sent without any credentials aside from username (no authentication or confidentiality)
  • authNoPriv: SNMP request will be sent with a username and authorization passphrase (authentication but no confidentiality)
  • authPriv: SNMP request will be sent with username, authorization and privacy passphrase (authentication and confidentiality)

Logging

This tools supports the option of configuring logging output to a file, syslog, or stream. Only one destination may be specified. The destination should be placed under log.file, log.syslog, or log.stream. For file and stream outputs, a single string is expected as the destination. For syslog, a facility field is required.

If no logging configuration is present, the tool will default to stdout as the destination.

Below are sample configurations.

# config.yaml

# Sample 1 : logging to file
log:
  file: destination.log

# Sample 2 : logging to syslog based on facility
log:
  syslog:
    facility: user

# Sample 3: logging to stream
log:
  stream: stdout

Device Templates

Outlet definitions (e.g. SNMP OIDs) can be placed into a template that can be shared across multiple devices.

Templates can either go in the <transport>.devices.custom.<name> section in config.yaml, or be placed in a separate file named <name>.yaml located at the filepath described by <transport>.devices.path.

To use a template, the devices.<name>.device field must contain the name of the template.

All device names must conform to the BNF grammar of:

<name> ::= <string> (("-" | "_") <name>)*
<string> ::= ([A-Z] | [a-z] | [0-9])+

Below are sample configurations.

Sample 1: templates stored in config.yaml

# config.yaml
snmp:
  devices:
    custom:
      foo:
        outlets:
          '001': '1.3.6.1'
        power_states:
          'on': 1

devices:
  '001':
    device: foo

Sample 2: external template

# config.yaml
snmp:
  devices:
    path: './devices/'

devices:
  '001':
    device: foo
  
# ./devices/foo.yaml
outlets:
  '001': '1.3.6.1'
  '002': '1.3.6.2'
power_states:
  'on': 1

Contributing to device templates

To create a new device template, create a yaml file under a directory in src/rs232_to_pdu/devices/. As a general rule, the template file should be named after the device product number, while the directory the template is in should help describe the template (i.e., manufacturer).


Config Format

This tool expects a configuration file called config.yaml, placed under /etc/rs232_to_pdu/. This file must conform the yaml format and have the following sections.

  • log:

    • file | stream: logging destination as a string
    • syslog:
      • facility: facility name for syslogs
  • serial:

    • device: string value of serial port tty file
    • timeout: time in seconds before timing out serial connection
  • healthcheck:

    • frequency: time in seconds in between healthchecks
  • snmp:

    • retry:
      • max_attempts: integer value of maximum attempts allowed for an SNMP command
      • delay: time in seconds to wait between SNMP command retries
      • timeout: time in seconds before timing out SNMP commands
    • devices:
      • custom:
        • <device name>
          • outlets:
            • <port numbers*>: string value of OID for this port
          • power_states:
            • <power_state>: value for this power state
  • path: path to template files

  • banks:

    • <bank number>*
      • snmp:
        • v1 | v2:
          • public_community: string value of public community name
          • private_community: string value of private community name
        • v3:
          • user: string value of SNMP username
          • auth_protocol: string value of authentication protocol
          • auth_passphrase: string value of authentication passphrase
          • priv_protocol: string value of privacy protocol
          • priv_passphrase: string value of privacy passphrase
          • security_level: noAuthNoPriv | authNoPriv | authPriv
        • ip_address: string value of IP address of SNMP agent
        • port: integer value of network port of SNMP agent
        • device:
          • outlets:
            • <port number>*: string value of OID for this port\
          • power_states:
            • 'on': value for on state
            • 'of': value for on state
            • 'cy': value for on state

Sample Config

log:
  file: {{ log_destination }}

serial:
  device: {{ device }}
  timeout: 0

healthcheck:
  frequency: 5

power_states:
  cy_delay: 5

snmp:
  retry:
    max_attempts: 3
    delay: 5
    timeout: 5
  devices:
    custom:
      bar:
        outlets:
          '001': '1.3.6.1'
        power_states:
          'on': 1
          'of': 2
    path: './etc/'

devices:
  '001':
    snmp:
      v1:
        public_community: {{ public_community_name }}
        private_community: {{ private_community_name }}
      ip_address: {{ ip_address }}
      port: {{ port }}
    device:
      outlets:
        '001': {{ oid }}
        '002': {{ oid }}
      power_states:
        on: 1
        of: 2
        cy: 3
  '002':
    snmp:
      v2:
        public_community: {{ public_community_name }}
        private_community: {{ private_community_name }}
      ip_address: {{ ip_address }}
      port: {{ port }}
    device: foo
  '003':
    snmp:
      v3:
        user: {{ snmp_user }}
        auth_protocol: {{ snmp_auth }}
        auth_passphrase: '{{ snmp_auth_passphrase }}'
        priv_protocol: {{ snmp_priv }}
        priv_passphrase: '{{ snmp_priv_passphrase }}'
        security_level: {{ snmp_security_level }}
      ip_address: {{ ip_address }}
      port: {{ port }}
    device: bar

License

This work is licensed under a Creative Commons Attribution-NonCommercial 4.0 International License.

CC BY-NC 4.0

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

rs232_to_pdu-1.1.7.tar.gz (28.6 kB view details)

Uploaded Source

Built Distribution

rs232_to_pdu-1.1.7-py3-none-any.whl (29.4 kB view details)

Uploaded Python 3

File details

Details for the file rs232_to_pdu-1.1.7.tar.gz.

File metadata

  • Download URL: rs232_to_pdu-1.1.7.tar.gz
  • Upload date:
  • Size: 28.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for rs232_to_pdu-1.1.7.tar.gz
Algorithm Hash digest
SHA256 e3bb29ca326f5acf219480a7b2fe363372511d31ffa646c6b5a4fb0ff1d1b8c5
MD5 aed06e961ff8be092da27a003a373078
BLAKE2b-256 b19a5da427ca95c3e33ecab96e5abb1a4e2e1a8499fa882110e56e219e7f806b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rs232_to_pdu-1.1.7.tar.gz:

Publisher: python-publish.yml on NetworkRADIUS/rs232-to-pdu

Attestations:

File details

Details for the file rs232_to_pdu-1.1.7-py3-none-any.whl.

File metadata

  • Download URL: rs232_to_pdu-1.1.7-py3-none-any.whl
  • Upload date:
  • Size: 29.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for rs232_to_pdu-1.1.7-py3-none-any.whl
Algorithm Hash digest
SHA256 7116d061d8c2677c61686f0f54c37b67aa662558dc60eb315c49344121b2856d
MD5 9b4ec831547a1c29020263023d738c82
BLAKE2b-256 a71cb9306a08dfa5f473f62e55afb4d8cf464fef324a2afa313bcc2e507a4ae4

See more details on using hashes here.

Provenance

The following attestation bundles were made for rs232_to_pdu-1.1.7-py3-none-any.whl:

Publisher: python-publish.yml on NetworkRADIUS/rs232-to-pdu

Attestations:

Supported by

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