Windows DNS not updating

Recently came across an issue where DNS was not updating on a windows client in a domain. The event logs only logged a standard error After going around Google and trying things with no solutions. I finally decided to investigate things with a WireShark and thats when I found my issue. Typically DNS is using …

SMF Using Cookies to show debugger

There is a way to use cookies to show the debugger in SMF. This does require modifications of your code and generally is being used for positioning in customized site setups First off, you will need to place some code on your site. You can use $context[‘user’][‘is_admin’] to hide and show it. You will need …

Adding Now button to Zabbix 4.4

One of the many reasons I have held onto Zabbix 3.0 LTS is because the now function in maintenance windows. This is very useful when I need to put something into maintenance for a specific time period. The lack of this has held me off for many years from wanting to upgrade. Finally I got …

Mysterious Account Lockouts

TLDR: Use PsExec and run “cmdkey /list” on affected systems. Occurs from a combination of saved credentials, DFS/domain accessing when installing software. This was a case of a very odd account lockout that lead me to a cause I’ve never seen from Windows. Normally account lockouts are fairly simple to resolve, usually it is a …

Managing Watchguard Firmware

Watchguard has two ways to upgrade the firmware. One is from the web UI and the other via Firebox System Manager. I prefer the System Manager, but when you download the firmware it runs an installer. This is leaving my programs list full of firmware update packages. Lots of clutter that Watchguard could easily fix …

Auto-decline “Preview of Monthly Updates”

In WSUS it isn’t very easy to clear on how to automatically decline updates based on more criteria than what you get out of the box.  Luckily with powershell we can get around this.  Using a scheduled task to execute powershell.exe with a -file parameter, I was able to decline the “Preview of Monthly Quality …

Zabbix 3.0 on Ubuntu 16.04 with Percona

After upgrading to Ubuntu 16.04, I couldn’t get Zabbix to run and was receiving the following zabbix-server[3962]: /opt/sbin/zabbix_server: /usr/lib/libmysqlclient.so.18: version `libmysqlclient_18′ not found (required by /opt/sbin/zabbix_server) To fix this I needed to symlink the perconaclient library to the mysql client libraries that Zabbix was expecting. apt-get install libperconaserverclient18 ln -s /usr/lib/x86_64-linux-gnu/libperconaserverclient.so.18 /usr/lib/libmysqlclient.so.18 ln -s /usr/lib/x86_64-linux-gnu/libperconaserverclient_r.so.18 …

SMF 2.0 with PHP 7

SMF does not officially support running version 2.0.x with PHP 7.0.  This is due to PHP removing the mysql library in favor of more secure MySQLi library.  To get around this if you have root access to your server, you could manually build in the old mysql library functions.  Or you know, build compatibility functions.  I’m …