Skip to main content

No project description provided

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

This tool expects commands conforming to the grammar below.

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

In all cases, <bank> and <port> are expected to be uint8 values.
In all cases, this tool will send a SET command to the SNMP agent.


Health Check

This tool will perform a health check on a regular frequency. Each health check 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 on with other operations.

Health checks will have priority over other commands. Even though health checks will be placed into the same buffer as others, health checks will always have the highest possible priority.

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 commands, this tool will not send a command to the SNMP agent until a response for the previous command has been received. As such, all queued commands will be stored in a priority buffer. The priority given to commands will follow the order the commands were received by the tool. This is to prevent commands being sent out of order.

That is to say, this buffer acts as a FIFO queue with respect to the serial commands, but uses a priority queue to enable instantaneous healthchecks.


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. However, it is important to note that only a single version is allowed for each bank. That is, a bank cannot use more than one authentication scheme.

On config load, a check is performed to ensured that each bank uses exactly one authentication scheme.

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

Definitions for outlet locations (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/ser2snmp/. 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

power_states:
- cy_delay: time in seconds between off and on commands

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.0.tar.gz (28.1 kB view details)

Uploaded Source

Built Distribution

rs232_to_pdu-1.1.0-py3-none-any.whl (27.8 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: rs232_to_pdu-1.1.0.tar.gz
  • Upload date:
  • Size: 28.1 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.0.tar.gz
Algorithm Hash digest
SHA256 963866e61cd4525fd4c4fbc45785fe395f4444cd9ae1033abd4cc4aa7a5bdbba
MD5 439a2e0df0d9e36c9a2527c8d8eb5db6
BLAKE2b-256 9f0f58802ecaa083505b0615698310d7db043e9d01ba0e3ee35801fe273253a6

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: rs232_to_pdu-1.1.0-py3-none-any.whl
  • Upload date:
  • Size: 27.8 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.0-py3-none-any.whl
Algorithm Hash digest
SHA256 cabac8edc0cc390b4e5b8910220e05e61ae6ca56a398927c12ee700c4ee124c1
MD5 57790d425e0b473e3e95fab77446c15d
BLAKE2b-256 15f27ff35a3e1af829ccbeeaeb4c8d3b221ec614e51fc831026fef7a390f7bca

See more details on using hashes here.

Provenance

The following attestation bundles were made for rs232_to_pdu-1.1.0-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