AWS 3-in-1 Bootcamp Now Avail. Self-Paced!

Now Available!

So many of you have been asking me about the AWS 3-in-1 Bootcamp I led for Kevin Wallace Training…you were not able to attend the 6 live sessions we conducted (and bonus content) and you would love the recorded version. Well, great news, the time has arrived!

Master the cloud with AWS certification prep for the Solutions Architect Track. These live training session recordings include real-world challenges and demos, practice exams, and downloadable recordings with slides.

Here’s what you get:

  • Recorded live sessions with real-world and AWS certification prep for the Solutions Architect Track:
    • AWS Certified Cloud Practitioner – Foundation Level
    • AWS Certified Solutions Architect – Associate Level
    • AWS Certified Solutions Architect – Professional Level
  • Hands-on lab challenges with video solutions
  • Practice exams – one full practice exam for each of the actual exams
  • Downloadable class recordings with slides and memory aids

All this for just $127! Purchase today with this link! CLICK HERE!

Cisco CCNP Data Center SPAN

There is one topic you need to know for sure and that is SPAN. But SPAN where? Well, everywhere! I would know the SPAN config (and options) for the following:

  • IOS
  • NX-OS
  • UCS CLI

OK, OK, maybe the IOS is a bit of a stretch, but I wanted to include it here for my readers.

A Peek Into SkyNet!

Remember, the Switched Port Analyzer feature is necessary because when we are wanting to do packet captures in the switched infrastructure, the switches will do their jobs and keep us from seeing frames that do not need to be sent to our switch port (with the analyzer). This is the filtering that switches do so well (unlike those stupid hubs).

Notice that while there is variation in the syntax – there is an overall consistency in the approach. It is all about setting the source port(s) correctly and the destination port. As you will see in the NX-OS and UCS examples, the destination port often holds the “bells and whistles” of the configuration.

NOTE: I think it will help if I present the source and destination configurations separated as you will see. This should allow us to really focus on each.

First, an IOS example:

SOURCE

Switch(config)# monitor session 1 source interface gigabitethernet0/1

DESTINATION

Switch(config)# monitor session 1 destination interface gigabitethernet0/2 encapsulation replicate

Here is the NX-OS example:

SOURCE

switch(config)# monitor session 3
switch(config-monitor)# source interface ethernet 2/1-3, ethernet 3/1 rx
switch(config-monitor)# source interface port-channel 2
switch(config-monitor)# source interface sup-eth 0 both
switch(config-monitor)# source vlan 3, 6-8 tx
switch(config-monitor)# source interface ethernet 101/1/1-3
switch(config-monitor)# filter vlan 3-5, 7
switch(config-monitor)# exit

NOTE: The keywords for direction are tx, rx, and both

DESTINATION

switch(config-monitor)# destination interface ethernet 2/5
switch(config-monitor)# no shut
switch(config-monitor)# mtu 500
switch(config-monitor)# rate-limit 10
switch(config-monitor)# multicast best-effort
switch(config-monitor)# exit

Here is the UCS CLI example:

SOURCE

UCS-A# scope eth-traffic-mon
UCS-A /eth-traffic-mon # scope fabric a
UCS-A /eth-traffic-mon/fabric # create eth-mon-session EthMonitor33

DESTINATION

UCS-A /eth-traffic-mon/fabric/eth-mon-session*# create dest-interface 2 12
UCS-A /eth-traffic-mon/fabric/eth-mon-session/dest-interface*# set speed 20gbps
UCS-A /eth-traffic-mon/fabric/eth-mon-session/dest-interface*# commit-buffer

Thanks so much for reading! Oh – and you might want some more info on the UCS config, which is certainly the most interesting. Here is the relevant Cert Guide:

https://www.cisco.com/c/en/us/td/docs/unified_computing/ucs/ucs-manager/CLI-User-Guides/System-Monitoring/4-1/b_UCSM_CLI_System_Monitoring_Guide_4-1/b_UCSM_CLI_System_Monitoring_Guide_4-1_chapter_01111.html