Archives
- August 2020 (1)
- October 2019 (2)
- September 2018 (1)
- June 2018 (1)
- April 2018 (3)
- January 2018 (2)
- December 2017 (3)
- August 2017 (2)
- July 2017 (1)
- February 2017 (1)
- January 2017 (5)
- September 2016 (2)
- January 2016 (1)
- November 2015 (1)
- September 2015 (2)
- October 2014 (1)
- April 2014 (1)
- March 2014 (2)
- December 2013 (1)
- November 2013 (1)
- October 2013 (3)
- September 2013 (2)
- July 2013 (3)
- May 2013 (2)
- March 2013 (2)
- February 2013 (2)
- January 2013 (1)
- December 2012 (5)
- November 2012 (5)
- October 2012 (4)
- September 2012 (3)
- August 2012 (7)
- July 2012 (8)
- June 2012 (2)
- May 2012 (2)
- April 2012 (4)
- March 2012 (1)
- January 2012 (1)
- December 2011 (1)
- November 2011 (1)
- October 2011 (2)
- September 2011 (1)
- August 2011 (3)
- July 2011 (4)
Category Archives: PHP
Collecting CLI Data from Cisco Devices Via HTTP
I always try to approach technical challenges with the thought that “just because something can’t be done doesn’t mean it can’t be done”. Sure enough I had a problem like this cross my desk again the other day. I wanted a simple way to get the number of active calls on a handful of MGCP PRI gateway routers. Unfortunately I couldn’t find a single SNMP data point for this information. I knew IOS routers had an HTTP interface so I started checking around to see how easy it would be to script against. Sure enough, it really wasn’t all that … Continue reading
Best PHP 101 Function
I was explaining to a friend the other day how to best debug PHP scripts. There are of course debugging modules that can be bolted in or other specialty IDE tools. However, since this guy was new to the language and to programming in general I figured I would cut all of that out and make it simple and easy. With PHP the alternative is to dump information out to the screen and read it from there. I shared with him my all time favorite, most used, yet simplest PHP function for doing this. It looks something like this: Continue reading
PHP Mac Address Validation and Formatting
I have been working on a small php app to perform a network scan and fill a database with the discovered information. The issue is that, depending on what you perform the scan with, the MAC addresses are in a number of different formats. This PHP functions validates a MAC and returns false if its not valid or a variety of formats depending on your needs! If anyone has any thoughts on improving this function feel free to let me know and I will post the updates.
Mitel 5000 PHP SMDR Script
You may have read my short writeup about reading SMDR from the Mitel 5000 with a simple PERL script. If not you can see it HERE. This script is basically the same thing but in PHP. You will have to setup PHP to run from the CLI for this to work… I also set the execution time really long and could run it from a web page as well. It was really ugly but this gets the idea out there…