Exchange 2013 ECP login – 500 error

We have an Exchange admin that when he attempted to login to ECP he would get a 500 error. The simple solution was to add a mailbox to his domain admin account. Once that was done he was able to login to ECP just fine. From reading the article belew, this might be an indication…

Install NRPE on Linux

1. Go to: https://library.nagios.com/library/products/nagiosxi/documentation/268-installing-the-xi-linux-agent 2. Download the latest linux nrpe agent. 3. Extract the agent using: tar xzvf linux-nrpe-agent.tar.gz 4. CD to linux-nrpe-agent 5. Type: ./fullinstall 6. Provide the IP address of your Nagios server. 7. Add the server to Nagios.

USB-to-Serial adapter for Mac

I have an older IO Gear USB-to-Serial adapter that I have used for a long time.   When I purchased it I was only using Windows laptops and never had a problem getting drivers and getting it to work.  When I switched to a MacBook Pro a couple of years ago, I was able to…

New Password Generator

It seems like we have been having to create random passwords at work a lot lately.  So I decided to find a script that I could use on here (Password Generator).  In order to make it fit this WP Theme, I dropped the CSS and just created a table for the different options.  The javascript…

Create a test file of a certain size

There have time that we want to test file transfer speeds across our network.  The problem is we need to use a known file size to make sure we can use the same size data in each test.

On Linux and Mac systems you can use the following commands:

300MB file (random data):  dd if=/dev/urandom of=300mb.log bs=1024 count=307200
300MB file (zero data):  dd if=/dev/zero of=300mb.log bs=1024 count=307200

Cisco Switches – Change default syslog port

So at work we have been setting up Nagios XI, Nagios Network Analyzer, and Nagios Log Server.  One of the tasks was to get all of the switches to send their syslog messages to the Nagios Log Server.  However, it was set to allow syslog messages to come in on TCP/UDP port 5544 instead of the default UDP514.  So I started looking at how I could change the default syslog port on the switches.…