Posted On March 31, 2019

SNMP

kimconnect 0 comments
SNMP Enabled Device:
– Get
– Get-next
– Get-Response
– Set
– Trap
 
Events (names, data, etc) are assigned Object ID or OID numbers that transcribes to description of an event origination or node.
 
… read Kim’s notebooks

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Querying Internal DNS for Host Record for iDRAC IPs

Copy / Paste for quick results: $domain='hooli.com'$records=Get-DnsServerResourceRecord -ZoneName $domain -ComputerName $env:USERDNSDOMAIN$records|?{$_.HostName -like '*drac*' -and $_.RecordType…

SonicWall: How to Set Internet Restrictions for Specific Computers

Set their MACs to address .  Then, use firewall rules to restrict outgoing communication:  …

PowerShell: Quickly Test Connectivity from a List of Sources toward a Destination on a Specific Port

# testRemotePort.ps1 $connectFrom=@' windows1 windows2 '@ $connectTo=@' \\servername\sharename '@ $testPort=445 $sources=@($connectFrom -split "`n")|%{$_.Trim()} $destinations=@($connectTo -split…