{"id":13599077,"url":"https://github.com/lahell/SNMPv3","last_synced_at":"2025-04-10T12:31:18.044Z","repository":{"id":201869135,"uuid":"176611062","full_name":"lahell/SNMPv3","owner":"lahell","description":"PowerShell Module for SNMPv3","archived":false,"fork":false,"pushed_at":"2023-02-11T09:29:03.000Z","size":1482,"stargazers_count":24,"open_issues_count":0,"forks_count":6,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-11-07T00:39:10.375Z","etag":null,"topics":["powershell","snmp","snmpget","snmpset","snmpv3","snmpwalk"],"latest_commit_sha":null,"homepage":"","language":"PowerShell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lahell.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2019-03-19T22:54:25.000Z","updated_at":"2024-03-14T17:02:54.000Z","dependencies_parsed_at":"2024-02-17T22:00:28.686Z","dependency_job_id":null,"html_url":"https://github.com/lahell/SNMPv3","commit_stats":null,"previous_names":["lahell/snmpv3"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lahell%2FSNMPv3","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lahell%2FSNMPv3/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lahell%2FSNMPv3/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lahell%2FSNMPv3/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lahell","download_url":"https://codeload.github.com/lahell/SNMPv3/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248217126,"owners_count":21066633,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["powershell","snmp","snmpget","snmpset","snmpv3","snmpwalk"],"created_at":"2024-08-01T17:00:59.509Z","updated_at":"2025-04-10T12:31:17.520Z","avatar_url":"https://github.com/lahell.png","language":"PowerShell","funding_links":[],"categories":["PowerShell"],"sub_categories":[],"readme":"![PowerShell Gallery Version](https://img.shields.io/powershellgallery/v/SNMPv3?color=808000\u0026logo=powershell\u0026logoColor=lightgrey\u0026style=flat-square)\r\n![PowerShell Gallery](https://img.shields.io/powershellgallery/dt/SNMPv3?color=808000\u0026style=flat-square)\r\n![GitHub](https://img.shields.io/github/license/lahell/SNMPv3?color=808000\u0026style=flat-square)\r\n\r\nSNMPv3\r\n======\r\n\r\nPowerShell Module for SNMPv3\r\n\r\n## Requirements\r\n### Desktop\r\nWindows PowerShell 5.1 and .NET Framework 4.7.1 or later\r\n\r\n### Core\r\nPowerShell 7.2 or later\r\n\r\n## Installation\r\n\r\n```PowerShell\r\nInstall-Module -Name SNMPv3\r\n```\r\n\r\n### Example of Invoke-SNMPv3Get with security model noAuthNoPriv\r\n\r\n```PowerShell\r\n$GetRequest = @{\r\n    UserName = 'usr-none-none'\r\n    Target   = 'demo.pysnmp.com'\r\n    OID      = '1.3.6.1.2.1.1.1.0'\r\n}\r\n\r\nInvoke-SNMPv3Get @GetRequest | Format-Table -AutoSize\r\n```\r\n\r\n#### Output\r\n```\r\nNode           OID                      Type Value                       \r\n----           ---                      ---- -----                       \r\n20.163.207.223 1.3.6.1.2.1.1.1.0 OctetString #SNMP Agent on .NET Standard\r\n```\r\n### Example of Invoke-SNMPv3Walk with Context and security model authPriv\r\n\r\n```PowerShell\r\n$WalkRequest = @{\r\n    UserName   = 'usr-sha-aes256'\r\n    Target     = 'demo.pysnmp.com'\r\n    OID        = '1.3.6.1.2.1.1'\r\n    AuthType   = 'SHA1'\r\n    AuthSecret = 'authkey1'\r\n    PrivType   = 'AES256'\r\n    PrivSecret = 'privkey1'\r\n    Context    = 'da761cfc8c94d3aceef4f60f049105ba'\r\n}\r\n\r\nInvoke-SNMPv3Walk @WalkRequest | Format-Table -AutoSize\r\n```\r\n\r\n#### Output\r\n```\r\nNode           OID                               Type Value                       \r\n----           ---                               ---- -----                       \r\n20.163.207.223 1.3.6.1.2.1.1.1.0          OctetString #SNMP Agent on .NET Standard\r\n20.163.207.223 1.3.6.1.2.1.1.2.0     ObjectIdentifier 1.3.6.1                     \r\n20.163.207.223 1.3.6.1.2.1.1.3.0            TimeTicks 3.06:59:16.0700000          \r\n20.163.207.223 1.3.6.1.2.1.1.4.0          OctetString UNKNOWN                     \r\n20.163.207.223 1.3.6.1.2.1.1.5.0          OctetString UNKNOWN                     \r\n20.163.207.223 1.3.6.1.2.1.1.6.0          OctetString                             \r\n20.163.207.223 1.3.6.1.2.1.1.7.0            Integer32 72                          \r\n20.163.207.223 1.3.6.1.2.1.1.8.0            TimeTicks 00:00:00                    \r\n20.163.207.223 1.3.6.1.2.1.1.9.1.1.1        Integer32 1                           \r\n20.163.207.223 1.3.6.1.2.1.1.9.1.1.2        Integer32 2                           \r\n20.163.207.223 1.3.6.1.2.1.1.9.1.2.1 ObjectIdentifier 1.3                         \r\n20.163.207.223 1.3.6.1.2.1.1.9.1.2.2 ObjectIdentifier 1.4                         \r\n20.163.207.223 1.3.6.1.2.1.1.9.1.3.1      OctetString Test1                       \r\n20.163.207.223 1.3.6.1.2.1.1.9.1.3.2      OctetString Test2                       \r\n20.163.207.223 1.3.6.1.2.1.1.9.1.4.1        TimeTicks 00:00:00.0100000            \r\n20.163.207.223 1.3.6.1.2.1.1.9.1.4.2        TimeTicks 00:00:00.0200000 \r\n```\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flahell%2FSNMPv3","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flahell%2FSNMPv3","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flahell%2FSNMPv3/lists"}