10.0.0.55 5 string 2 sysName.0
Ipsec > Mikrotik > AWS EC2 with VPC Subnet
I recent set myself a tasks of connecting my Mikrotik router to my AWS VPC subnet. This took some additional configuration due to the way that AWS NAT the traffic. This is described as below. Your AWS instance has a…
Ad Guard Home Docker
Docker compose file
Zabbix EATON UPS Discovery – Telegram Notifications
Use a SNMP discovery rule as below. Use the below to discover a UPS by configured name, this will mean that when you pair the SNMP discovery rule it nodes will be added by this name rather than IP address…
List Servers Running IIS
import-module activedirectory $servers=Get-ADComputer -Filter {operatingsystem -Like “Windows server*”} | select -ExpandProperty Name $servers | Out-File “<Change path to>\Servers.txt” -append default $serversall = (Get-Content “<Change path to>\Servers.txt”) Start-Transcript -path “<Change path to>\output.txt” -append default foreach($vm in $serversall) { $iis = get-wmiobject…