Steve Borba

My notes, I hope they help you, feel free to comment/add to them

Category: Technology

Powershell Can Talk

I was working on some powershell scripts and my son came into the room and asked me if I could get the computer to talk to him, so I had to figure out how to do it: Add-Type -AssemblyName System.speech $speak = New-Object System.Speech.Synthesis.SpeechSynthesizer ForEach ($Voice in ($speak.GetInstalledVoices() | % {$_.VoiceInfo.Name})) { $speak.SelectVoice($Voice) $speak.Speak(“I am […]

Capture at ESXi Host

With everything becoming virtual, we get more tools, but that means more things to remember. These are my notes for a capture from an ESXi host. First lets look capture at the uplink, we need to find which port: esxcfg-nics -l Which gives us something like this: Name PCI Driver Link Speed Duplex MAC Address […]

Troubleshooting Filter

Here is a quick filter when you start troubleshooting with someone and pretty much all they know is their name (change the start time): ( receive_time geq ‘2018/12/21 12:00:00’ ) and user.src eq sborba and ( !action eq allow or (proto eq tcp and !session_end_reason eq tcp-fin ) or ((proto eq icmp or proto eq […]

My QoS

I use Google Fi and I want to make sure phone calls get first priority, then I moved my wife and my devices up (queue 4 is default), then knocked guest down and capped them at 5mb/s up/down, but I wanted to make it full speed if I am using the vpn from the guest […]

My Dashboard

This is how I setup my dashboard, I use all the widgets: DashBoard System Resources High Availability Interfaces ACC Risk Factor Locks General Information Top High Risk Apps Logged in Admins Top Applications Config Logs System Logs Threat Logs URL Log Filtering Logs Data Filtering Logs This would be what I would suggest for an […]

SMTP

Quick Note on sending an email with just using putty or telnet putty -raw -P 25 192.168.7.251 HELO home.steveborba.com MAIL FROM: steve@steveborba.com RCPT TO: steve@steveborba.com DATA From: “Someone” To: “Myself” Subject: Testing email – 1 Steve, Testing this email thing. Thank you, Steve . quit