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 …
SMF Using Nginx to enable special variables
I came up with this little trick while working with my SMF installs. I wanted to be able to present $db_show_debug to myself but not others. There are many ideas involved in this including waiting until we loaded enough of the user profile to check if they are a admin and then enabling it. However …
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 …
Fix: A BINDING-ACK message with transaction id for DHCP Server
I have been getting this error for a while on my Server 2012 R2 DHCP cluster. Every time it syncs or replicates hundreds of errors are generated. Some information around the web indicates I needed KB 2919393, KB 2919355 and KB 2955135 installed. KB 2955135 was not my scenario here, however it was installed. All …
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 …