Month: 9 years ago

Misc. Scripting Windows Server

Powershell Script to Test SMTP

Reading Time: < 1 minute This one is going to be short and sweet, I’ve been testing SMTP with and without encryption and wanted a good script for that. Here are the lines that you’ll want to look at configuring: Line 5: “$smtpServer =”InsertYourSmtpServerHere” Line 12: Change the $false value to $true if you want to encrypt your SMTP with […]

Matt Hansen 
Networking

Wireshark not equal to filter

Reading Time: < 1 minute I came across this today and thought I’d share this helpful little wireshark capture filter. Based on wireshark’s documentation if you use “ip.addr != 10.10.10.10” that should show you everything except for packets with the IP addrress 10.10.10.10. The problem is … it doesn’t work. It turns yellow like this, and doesn’t filter that IP. […]

Matt Hansen