Articles by Scott Hebert

  1. SNMP Traps into MySQL is Sublime

    Posted on in System Administration

    I use snmptrapd to catch SNMP traps and then put them into a MySQL database using a pretty generic trap handler. This gives me the opportunity to generate such useful information as:

    > SELECT HOUR(time) AS "hour", COUNT(*) AS "bounces" FROM snmptraps
        WHERE hostname = 'XXX' AND time > '2011-07-25'
            AND trap_oid …
  2. Does load-interval Affect Performance?

    Posted on in Networking

    I was recently part of a discussion regarding whether or not lowering the load-interval on a Cisco router or switch interface from the default of 300 seconds had an impact on performance. Both sides made good points, but both were based on assumption and conjecture.

    5 minute input rate 213000 …
  3. LinkedIn: What is the Cloud?

    Posted on in IT Management

    A really interesting discussion has been going on in the LinkedIn IT Architect group. If you aren't a member of the group, I highly recommend you join. The question that fired off the discussion was, "Is 'the cloud' just another name for a hosted / out-sourced (web application) service? If not …

  4. Spicing Up Your Next Meeting

    Posted on in IT Management

    "Keeping a meeting interesting is a problem that often hurts team leaders who are trying to motivate sales staffs."

    Although Tom Donnelly's Inc article is really targeted at sales meetings, I think it has some points that are relevant for all managers. Keeping team members engaged in a meeting is …

  5. Convert MOD Movies with VLC on Your Mac

    Posted on in Software

    My wife uses a Canon FS100 for taking home videos of the kids. If you aren't familiar with it, it's a fairly light-weight camcorder that uses SDHC cards rather than tapes. The only real grievance I have with it is that the video codec it uses is not compatible with …

  6. Strategic Management Process

    Posted on in IT Management

    A while back, I sent an email describing the strategic management process. Although the email was written for an internal audience, it's generic enough to be reproducible here...

    Strategic Management is a five step process:

    1. Corporate Identity
      This is the definition of the company and is broken down into three …
  7. MySQL: Disable DNS Lookups

    Posted on in Software

    Powered By MySQLIn a small environment, there's very little reason to rely on DNS resolution inside MySQL. You can disable it by adding skip-name-resolve to your my.cnf or by using the --skip-name-resolve command line argument.

    Remember that if you disable DNS lookups, you will need to set permissions using IP addresses …

  8. Cisco: Time-based, Inbound Rate Limiting

    Posted on in Networking

    Slaptijack reader Raj is looking for a way to limit inbound traffic on his switch ports based on the time of day. Specifically, he wants to restrict speed to 256 Kbps between 9 AM and 9 PM, and allow up to 1 Mbps the rest of the day. I've done …

  9. Installing Unison 2.27.57 via MacPorts

    Posted on in System Administration

    MacPorts LogoI've mentioned before that I use Unison to keep a few important directories synchronized between my various workstations and file server. I made the switch to Ubuntu 10.04 LTS recently, and started using its unison 2.27.57 package. This breaks all of my Macs that use unison 2 …

Slaptijack's Koding Kraken