Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Current »

SNMP:

https://www.powershellgallery.com/packages/SNMP/1.0.0.1

 invoke-snmpwalk -IP $([System.Net.Dns]::GetHostAddresses($(read-host 'Enter hostname: '))) -walkmode withinsubtree -community public -OIDStart .1.3.6.1.4.1 -Version V1 -timeout 5000




help and commands
PS C:\WINDOWS\system32> Invoke-SNMPWalk -?

NAME
    Invoke-SnmpWalk

SYNOPSIS
    Function reading data from SNMP using "Walk" method.


SYNTAX
    Invoke-SnmpWalk [-IP] <IPAddress> [-OIDStart] <String[]> [[-Community] <String>] [[-UDPport] <Int32>]
    [[-Version] {V1 | V2 | V2U | V3}] [[-WalkMode] {Default | WithinSubtree}] [[-TimeOut] <Int32>]
    [<CommonParameters>]


DESCRIPTION
    Function reading data from SNMP using "Walk" method using SharpSnmpLib library.
    Libraries taken from project SharpSnmpLib (http://sharpsnmplib.codeplex.com).


RELATED LINKS

REMARKS
    To see the examples, type: "get-help Invoke-SnmpWalk -examples".
    For more information, type: "get-help Invoke-SnmpWalk -detailed".
    For technical information, type: "get-help Invoke-SnmpWalk -full".




SNMPv3

https://www.powershellgallery.com/packages/SNMPv3/1.1.0

https://github.com/lahell/SNMPv3

  • No labels