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

PowerShell: Check if a HostName is Resolvable on All Internal DNS Servers

# Check if servername is resolvable at all DCs$serverName="MIGRATED-SHERVER" function checkDns{ param( $serverName, $dnsServers=(Get-ADDomainController -Filter…

PowerShell: Set DNS Servers on Localhost

Display the current DNS Server Entries PS C:\Users\KimConnect> Get-DnsClientServerAddressInterfaceAlias Interface Address ServerAddressesIndex Family-------------- --------- -------…

How to Discover Active Ports on a Windows Machine

PS C:\Users\kimconnect> get-nettcpsetting | select SettingName,DynamicPortRangeStartPort,DynamicPortRangeNumberOfPortsSettingName DynamicPortRangeStartPort DynamicPortRangeNumberOfPorts----------- ------------------------- -----------------------------AutomaticInternetCustom 49152 16384DatacenterCustom 49152 16384Compat 49152…