Technical Posts

A collection of mostly IT centric posts from the last ~20 years

Articles

Latest

Access

Blog History

System Time UTC convert a local time to its UTC time

My system time is UTC and I want to convert from localtime Australia/Sydney to UTC date -u -d 'TZ="Australia/Sydney" 4:30PM' # output Tue 14 Oct 2025 05:30:00 UTC Getting the system timezone timedatectl status Local time: Tue 2025-10-14 07:24:24 UTC Universal time:...

Comprehending Netgate 1100 – Ports and VLAN’s

https://youtu.be/Bp_B79-WLlU?si=gEUiclgOElihCyGu Watch the above This image helps me visualise what is happening when VLANs are configured. Members map to the physical port numbers as follows. Switch Port numbers are listed under Interfaces / Switch / Ports 0 for the...

Script to run the MacOS Built-in DHCP Server

For info on how to configure http://www.jacquesf.com/2011/04/mac-os-x-dhcp-server/ DHCP Server Start Stop Script #!/bin/bash # /usr/local/bin/dhcpmgmt.sh function start { sudo /bin/launchctl load -w /System/Library/LaunchDaemons/bootps.plist } function stop { sudo...