Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions pkgs/sdk-pkg/src/genie/libs/sdk/powercycler/powercyclers.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,14 @@ class RaritanSnmpv3PX2(BaseSNMPv3PowerCycler):
off_state = 0


class Sentry4SnmpPDU(BaseSNMPPowerCycler):
type = 'sentry4'
connection_type = 'snmp'
oid = '1.3.6.1.4.1.1718.4.1.8.5.1.2.1.1'
on_state = 1
off_state = 2


class CyberSwitching(BaseCyberSwitchingPowerCycler):
type = 'cyberswitching'
connection_type = 'telnet'
Expand Down
Loading