Wow the title of this post is a mouthful.
Similar to my previous post on the Nexus 2000 (Nexus 2000 Model Number Cheat Sheet), this post will explain what the letters and numbers mean in the Nexus 7000 IO module part numbers. This will allow you to quickly identify the characteristics of the card just by looking at the part number which in turn should help you out as you're building BOMs and picking the right card for the job.
Update July 2, 2013: Updated to reflect release of the Nexus 7700 and F3 modules.
Dinner with His Toadishness, Derick Winkworth, the other night rolled into a 3+ hour discussion of avant garde ways to do networking. One of the adjunct topics that came up was that of ownership within IT. Ownership is a complex problem in the data center, because there’s many complex technologies at work. No one single […]
The post A Data Center Delivers Apps – So Shouldn’t We Monitor App Delivery? appeared first on Packet Pushers Podcast and was written by Ethan Banks.
Yesterday, a “breaking news” tweet at 1:07 PM EDT from the Associated Press reported that two explosions had occurred at the White House and President Obama had been injured. The news immediately sent the Dow Jones Industrial Average down 143 points, as this graph at the London Telegraph shows. There’s also a lovely animated display […]
The post Machine Fragile appeared first on Packet Pushers Podcast and was written by Russ White.
You have recently joined a new company that still uses Frame Relay. For monitoring purposes, you implement a script that pings all interfaces of a router, but you notice that some of them are not ping-able. Why ?
You say, “It works – don’t fix it.” I hear, “It works – don’t touch it.” I’m also thinking that if you don’t touch it, then it’s never upgraded or changed. Is a static, unchanged network the best you can do to support your business ? Are you happy with just doing more of the same […]
The post It Works and It Should Be Better appeared first on Packet Pushers Podcast and was written by Greg Ferro.
Earlier this week, I read the article below. This article took a strong stance that a recruiter works for the employer, not those seeking employment. I think there are some valid points made. However, my views are a little less extreme than that of the author. NEWSFLASH: A Recruiter is Not a Job Finder!. Frankly, […]
The post Your Job Hunt is YOUR Responsibility appeared first on Packet Pushers Podcast and was written by Paul Stewart.
Enabling aaa new model means the switch will try and match all login attempts using a aaa method.
First, define the TACACS or RADIUS server using:
tacacs-server host <IP-address> <optional key value>
There are some other values you can use, but I’ve never had to use these.
Now, give your authentication method a name:
aaa group server tacacs+ <method-name> server <IP-address>
Call the method for authenttication
aaa authentication login default group <method-name> group <fallback method name if configured> local
You should now be good to go!
Okay, let’s say you’re convinced you need to learn to programme and you don’t want to be left behind. The earlier you start, the more you can pick up (and the sooner you’ll become consciously competent) at a pace that suits you. Hopefully, you’ll be able to blend this into your schedule with whatever else you […]
The post Programming 101 for Network Engineers – Preparation appeared first on Packet Pushers Podcast and was written by Steven Iveson.
As part of a small robotics project I've been working on this weekend (affectionately called CoBe1, there will be a follow up blog on that soon) I decided to give by robot some personality in the form a a voice, and uploaded some of my code to GitHub.
While Arduino is capable of playing music and sounds from an SD Card I wanted something a little more authentic… something similar to R2-D2's chirps from Star Wars. I had a mini 8Ohm speaker lying around and following the tutorials here it was easy to get it hooked up to my Arduino Uno and start making sounds. By adjusting the default melody and timings I got part way to achieving my R2-D2 style attitude, but notes on their own just didn't cut it. What I needed was some articulations. I got coding and whipped up a library that makes it easy to use glissando and tremolo. Want to give it a try? Grab the code on GitHub Here's a simple example sketch:
#include <pitches.h>;
void setup()
{
MelodyUtils mel(8);
mel.Glis(NOTE_C3, NOTE_C4, 5);
delay(1000);
mel.Trem(NOTE_C3, Continue reading