Documentation ¶
Index ¶
- Constants
- Variables
- func Partition(currentPosition, partitionSize, sliceLength int) bool
- func ToBigInt(value interface{}) *big.Int
- type Asn1BER
- type BitStringValue
- type GoSNMP
- func (x *GoSNMP) BulkWalk(rootOid string, walkFn WalkFunc) error
- func (x *GoSNMP) BulkWalkAll(rootOid string) (results []SnmpPDU, err error)
- func (x *GoSNMP) Connect() error
- func (x *GoSNMP) Get(oids []string) (result *SnmpPacket, err error)
- func (x *GoSNMP) GetBulk(oids []string, nonRepeaters uint8, maxRepetitions uint8) (result *SnmpPacket, err error)
- func (x *GoSNMP) GetNext(oids []string) (result *SnmpPacket, err error)
- func (x *GoSNMP) Set(pdus []SnmpPDU) (result *SnmpPacket, err error)
- func (x *GoSNMP) Walk(rootOid string, walkFn WalkFunc) error
- func (x *GoSNMP) WalkAll(rootOid string) (results []SnmpPDU, err error)
- type Logger
- type PDUType
- type SnmpPDU
- type SnmpPacket
- type SnmpVersion
- type VarBind
- type WalkFunc
Constants ¶
const ( EndOfContents Asn1BER = 0x00 UnknownType = 0x00 // TODO these should all be type Asn1BER, however Boolean = 0x01 // tests fail if implemented. See for example Integer = 0x02 /// http://stackoverflow.com/questions/5037610/typed-constant-declaration-list. BitString = 0x03 OctetString = 0x04 Null = 0x05 ObjectIdentifier = 0x06 ObjectDescription = 0x07 IPAddress = 0x40 Counter32 = 0x41 Gauge32 = 0x42 TimeTicks = 0x43 Opaque = 0x44 NsapAddress = 0x45 Counter64 = 0x46 Uinteger32 = 0x47 NoSuchObject = 0x80 NoSuchInstance = 0x81 EndOfMibView = 0x82 )
Asn1BER's - http://www.ietf.org/rfc/rfc1442.txt
Variables ¶
var Default = &GoSNMP{ Port: 161, Community: "public", Version: Version2c, Timeout: time.Duration(2) * time.Second, Retries: 3, }
The default connection settings
var LoggingDisabled bool
LoggingDisabled is set if the Logger is nil, short circuits any 'slog' calls
Functions ¶
func Partition ¶ added in v1.2.0
Partition - returns true when dividing a slice into partitionSize lengths, including last partition which may be smaller than partitionSize. This is useful when you have a large array of OIDs to run Get() on. See the tests for example usage.
For example for a slice of 8 items to be broken into partitions of length 3, Partition returns true for the currentPosition having the following values:
0 1 2 3 4 5 6 7
T T T
func ToBigInt ¶
ToBigInt converts SnmpPDU.Value to big.Int, or returns a zero big.Int for non int-like types (eg strings).
This is a convenience function to make working with SnmpPDU's easier - it reduces the need for type assertions. A big.Int is convenient, as SNMP can return int32, uint32, and uint64.
Types ¶
type BitStringValue ¶
type BitStringValue struct { Bytes []byte // bits packed into bytes. BitLength int // length in bits. }
BitStringValue is the structure to use when you want an ASN.1 BIT STRING type. A bit string is padded up to the nearest byte in memory and the number of valid bits is recorded. Padding bits will be zero.
func (BitStringValue) At ¶
func (b BitStringValue) At(i int) int
At returns the bit at the given index. If the index is out of range it returns false.
func (BitStringValue) RightAlign ¶
func (b BitStringValue) RightAlign() []byte
RightAlign returns a slice where the padding bits are at the beginning. The slice may share memory with the BitString.
type GoSNMP ¶
type GoSNMP struct { // Target is an ipv4 address Target string // Port is a udp port Port uint16 // Community is an SNMP Community string Community string // Version is an SNMP Version Version SnmpVersion // Timeout is the timeout for the SNMP Query Timeout time.Duration // Set the number of retries to attempt within timeout. Retries int // Conn is net connection to use, typically establised using GoSNMP.Connect() Conn net.Conn // Logger is the GoSNMP.Logger to use for debugging. If nil, debugging // output will be discarded (/dev/null). For verbose logging to stdout: // x.Logger = log.New(os.Stdout, "", 0) Logger Logger // contains filtered or unexported fields }
GoSNMP represents GoSNMP library state
func (*GoSNMP) BulkWalk ¶ added in v1.3.0
BulkWalk retrieves a subtree of values using GETBULK. As the tree is walked walkFn is called for each new value. The function immediately returns an error if either there is an underlaying SNMP error (e.g. GetBulk fails), or if walkFn returns an error.
func (*GoSNMP) BulkWalkAll ¶ added in v1.3.0
BulkWalkAll is similar to BulkWalk but returns a filled array of all values rather than using a callback function to stream results.
func (*GoSNMP) Get ¶
func (x *GoSNMP) Get(oids []string) (result *SnmpPacket, err error)
Get sends an SNMP GET request
func (*GoSNMP) GetBulk ¶ added in v1.2.0
func (x *GoSNMP) GetBulk(oids []string, nonRepeaters uint8, maxRepetitions uint8) (result *SnmpPacket, err error)
GetBulk sends an SNMP GETBULK request
func (*GoSNMP) GetNext ¶ added in v1.2.0
func (x *GoSNMP) GetNext(oids []string) (result *SnmpPacket, err error)
GetNext sends an SNMP GETNEXT request
func (*GoSNMP) Set ¶ added in v1.2.0
func (x *GoSNMP) Set(pdus []SnmpPDU) (result *SnmpPacket, err error)
Set sends an SNMP SET request
func (*GoSNMP) Walk ¶
Walk retrieves a subtree of values using GETNEXT - a request is made for each value, unlike BulkWalk which does this operation in batches. As the tree is walked walkFn is called for each new value. The function immediately returns an error if either there is an underlaying SNMP error (e.g. GetNext fails), or if walkFn returns an error.
type Logger ¶ added in v1.2.0
type Logger interface { Print(v ...interface{}) Printf(format string, v ...interface{}) }
Logger is an interface used for debugging. Both Print and Printf have the same interfaces as Package Log in the std library. The Logger interface is small to give you flexibility in how you do your debugging.
For verbose logging to stdout:
gosnmp_logger = log.New(os.Stdout, "", 0)
type PDUType ¶ added in v1.2.0
type PDUType byte
PDUType describes which SNMP Protocol Data Unit is being sent.
type SnmpPDU ¶
type SnmpPDU struct { // Name is an oid in string format eg ".1.3.6.1.4.9.27" Name string // The type of the value eg Integer Type Asn1BER // The value to be set by the SNMP set Value interface{} }
SnmpPDU will be used when doing SNMP Set's
type SnmpPacket ¶
type SnmpPacket struct { Version SnmpVersion Community string PDUType PDUType RequestID uint32 Error uint8 ErrorIndex uint8 NonRepeaters uint8 MaxRepetitions uint8 Variables []SnmpPDU }
SnmpPacket struct represents the entire SNMP Message or Sequence at the application layer.
type SnmpVersion ¶
type SnmpVersion uint8
SnmpVersion 1 and 2c implemented, 3 planned
const ( Version1 SnmpVersion = 0x0 Version2c SnmpVersion = 0x1 )
SnmpVersion 1 and 2c implemented, 3 planned
func (SnmpVersion) String ¶
func (s SnmpVersion) String() string