AONE Launches New Cloud-Focused Podcast

Today, The Art of Network Engineer team is proud to announce that we are adding a second podcast – creating the AONE Network of Podcasts. The new podcast, called Cables2Clouds, features a trio of Network Engineers turned Cloud Architects. They are passionate about Network Engineering, Cloud, and helping other Network Engineers on their Cloud journey.

Your cohosts are Chris Miles, Tim McConnaughy, and Alex Perkins.

Chris Miles
Tim McConnaughy
Alex Perkins

The podcast will focus on an array of Cloud topics and already has a very stunning guest lineup. As of this writing, six episodes have already been recorded, edited, and scheduled for release, and the team is working hard on future episodes already.

Episode 1 is available now in your favorite podcatcher! Cables2Clouds will release bi-weekly opposite of the flagship podcast, so you can expect weekly content from the AONE Network.

Cables2Clouds Episodes will also be available on YouTube, released from their very own YouTube Channel.

For additional information you can:
Check out their website: https://www.cables2clouds.com/
Follow them on Twitter: https://twitter.com/cables2clouds
Subscribe to their YouTube Channel: https://www.youtube.com/channel/UCZqtOhYtwCjJMHlxoCF0ZAg

Ep 115 – From the Cables 2 the Clouds

In this episode, we talk to three Cloud SMEs. Tim McConnaughy, Chris Miles, and Alex Perkins. We also have a very special announcement – but you’ll have to listen to hear what it is!

https://podcast.artofnetworkengineering.com/2127872/12410999-ep-115-from-the-cables-2-the-clouds

How ‘telnet’ and similar tools help you troubleshoot

In Episode 110 of the Podcast there was a brief discussion of “telnet” as a troubleshooting tool (starts around 22:00).

The question arose about why telnet is a troubleshooting tool, what it can (and can’t) do – and I thought I would use this opportunity to detail why this works, how far up the OSI ladder you can use it to troubleshoot and what tools will take it even a step further.

Telnet dates back into the late 60’s, when the Internet was just a bunch of universities and research facilities connecting to each other, known as the ARPAnet, interconnected to exchange data.

You might think now: “The 60’s? Didn’t IP and therefore TCP start out in the 70’s?”
And you’re right. These early RFCs talking about TELNET and the HOST-HOST-Network connection were written before TCP/IP came to light and do not mention it.

They do however mention the most important characteristic of telnet:

* Is "teletype-like", i.e.:
               - ASCII characters are transmitted;
               - Echoes are generated by the remote HOST;
               - The receiving HOST[s] scan for break characters;
               - The transmission rate is slow (less than 20
               characters/sec).
RFC 15

The host-host connection is meant to be “teletype-like” – meaning like the old telegraphy transmission from the 19th century, and also what got telnet it’s name: TELetype NETwork.

I could make this article a long list of subsequent RFCs, but to sum things up: The goal was to type on a keyboard cross-country from the computer you are working on, instead of having a terminal directly connected to it. This was over the course of years and RFCs standardised to be 7-bit ASCII text and a few control characters.

When TCP/IP gained traction and protocols were defined, telnet was moved over, as – beside from a few terminal control infos – just this plain text over a TCP socket, using Port 23.

As you can see in Wireshark, after the TCP handshake – SYN, SYN/ACK, ACK – the telnet data starts flowing.

There is some data exchanged nowadays about the terminal in use and it’s capabilities, but then you see just plain ASCII going back and forth in the TCP segments.

The “00 00” before the blue highlighted data still belongs to the TCP header, the “0d 0a 0d 0a” are already the first CR-LF before the “User Access Verification” text (55 hex = 85 dec, which is “U” in the ASCII table)

So the answer to the question “What is it about telnet that makes it possible to use it to connect to other services?” is: all telnet does is open a TCP socket, and waiting for either side to send data. Either you start typing, or the server on the other side sends something.

As it is only opening a a connection to a port and waiting for data, there is really nothing from stopping you to connect to other services that talk TCP. Just put a second parameter after the host or IP address as TCP port and off you go. If the TCP handshake is successfully completed, the telnet application either displays the text that the other end sends, or just waits for you to send text. “Text” in this context is meant as data – not necessarily something you can read, depending on the protocol.

% telnet artofnetworkengineering.com 80
Trying 192.0.78.25...
Connected to artofnetworkengineering.com.
Escape character is '^]'.

As we’re connecting on TCP port 80 here, the web server on the other end waits for us to send data, and if we don’t send any, quits the TCP connection after a few seconds.

What have we accomplished with this?
We checked a connection up to layer 4, the TCP handshake was successful when we see “Connected to x”. Not getting a timeout here tells us:

  • Our cable, their cable, and the cables in between are plugged in or wirelessly connected (layer 1)
  • Data-link is working, whichever is used – probably Ethernet (layer 2)
  • IP routing works from end to end, maybe with NAT somewhere (layer 3)
  • TCP on a specific port works (layer 4), and an application is listening

So we can infer that no firewall – on one of the hosts, or between them – is blocking our connection, at least not the typical kind (looking at layers 3 & 4). But we also checked another thing – we use the hostname/FQDN here, not an IP address, which means that DNS resolution is also working. “Unknown host” or similar error messages would point to DNS resolution failing, “Operation timed out” to the host not responding on this port or a firewall blocking.

This works with every TCP protocol. We can connect to ssh – it even gives us some plain text with version info before the ciphers are negotiated:

% telnet 172.17.71.210 22
Trying 172.17.71.210...
Connected to 172.17.71.210.
Escape character is '^]'.
SSH-2.0-OpenSSH_7.5

Connection closed by foreign host.

Or DNS (yes, DNS runs on UDP and TCP) – we won’t see anything, because DNS is a binary protocol, but the TCP connection would be established:

% telnet 172.17.71.1 53   
Trying 172.17.71.1...
Connected to 172.17.71.1.
Escape character is '^]'.

Connection closed by foreign host.

If the TCP handshake fails – because nothing is listening, or the connection is blocked – it would lead to a timeout.

% telnet 172.17.71.1 52
Trying 172.17.71.1...
telnet: connect to address 172.17.71.1: Operation timed out
telnet: Unable to connect to remote host

If we are looking at a layer 7 plain text protocol, we can even troubleshoot more. Many of our upper layer protocols came out of the UNIX world, and there were strong proponents to make them plain text protocols – which means there are no complex bit sequences indicating different things, but strings of readable text going back and forth. This has the advantage of relatively easy expansion (your new idea wont fit into the 2 bit value? Too bad. With text, you can just write more), easy to program (just read newlines from the TCP socket), and easy to troubleshoot.

One example of such an plain text protocol is HTTP. Nowadays of course it serves mostly as redirector to HTTPS (which wont work as easy in telnet), but you can check a TCP/IP+HTTP connection that way:

% telnet cisco.com 80      
Trying 2001:420:1101:1::185...
Connected to cisco.com.
Escape character is '^]'.
GET / HTTP/1.1
HOST: cisco.com

HTTP/1.1 301 Moved permanently
Location: https://cisco.com/
Connection: close
Cache-Control: no-cache
Pragma: no-cache

Connection closed by foreign host.

The “GET” line is the HTTP request method, and the “HOST” is needed because we have more than one site on one IP nowadays. Press enter two times, and you get an HTTP answer back. You can see that we would be redirected to the HTTPS site, so HTTP is working fine – even with IPv6 if you have noticed. Without any redirect, we would be getting the HTML code of the site after the HTTP header, directly into our telnet window.

More protocols that work great debugging this way are the mail protocols SMTP, POP3 and IMAP, or the chat protocol IRC.

So what can’t telnet do?

  • It has to be a TCP service, as telnet always opens a TCP socket. If you need to test UDP, have a look at netcat – it can do TCP like telnet too, but you can switch it to UDP. But – as there is no connection establishment with UDP – you won’t know if you are really connected. So you need to control the receiving end too (for example, with netcat running there too), or have a UDP service running sending something back (for example, echo).
  • If you want to try troubleshooting a layer 7 protocol like above, it has to be unencrypted. A way around that would be stunnel – it handles the SSL/TLS for you, and you can then connect through it with telnet.
  • If you suspect that some certificate change or mistake is the culprit, the openssl command is great in troubleshooting that. It is not only to create and manage certificates, but you can use it to connect on any TCP or UDP port and get the certificate, chain, and cipher information when an encrypted connection is expected. openssl s_client -connect artofnetworkengineering.com:443 is all you need to see the public server certificate of this website.

These tools – telnet, netcat, stunnel, openssl – are in part already installed on Linux/UNIX distributions (even macos), or easily installed. To get them on Windows, the easiest way for me is always to install WSL, the Windows Subsystem for Linux. That way you’ll have a great shell too.

Of course, for all of this dedicated tools exist – nmap, curl, swaks, to name a few – but nothing beats telnet for a quick check, as it is easy enough and most of the time already installed.

Ep 114 – Things are getting Cloudy

In this episode, we talk to Shean Legion, a Cloud and SDN Product Manager. Shean and the group discuss what is the cloud, the challenges, and of course the benefits. Shean also shares some great resources for learning Cloud.

You can see the rest of the show notes and listen to the episode over at https://podcast.artofnetworkengineering.com/

Import Announcement

We’ve moved to a new podcast-hosting platform.

if you’re hearing this message that means you are still subscribed to our old RSS feed, and missing our new shows.

Here is a link to our new feed: https://feeds.buzzsprout.com/2127872.rss

Some podcast syndicators, like Apple, Spotify, and Google Podcasts, automatically updated our feed to the new one, while others accepted the new feed as an entirely new and separate podcast. You may need to search through their catalog and re-subscribe to the new feed. So far we know PocketCasts is doing this and we are working with them to correct this.

If you’re listening to our episodes on the web you can go to our new site podcast.artofnetworkengineering.com to keep listening.

If you’re manually subscribed you’ll need to grab the new RSS feed. That link is https://feeds.buzzsprout.com/2127872.rss

If you’re still having problems please reach out to us. You can Tweet at us or DM us on Twitter, we are @artofneteng

or you can email us directly at artofnetworkengineering@gmail.com.

We hope you join us on our new platform and catch up on all of our latest content, and Thank you so much for listening to the Art of Network Engineering Podcast!

Ep 113 – Russ White

In this episode, we chat with Russ White! Russ has made significant contributions to Networking, such as writing some of the very RFCs we use today! Russ hold’s a Ph D., is one of a handful of Cisco Certified Architects, and is the host of the Hedge Podcast, among other things. Please enjoy our conversation with Russ!

More from Russ:
Twitter: https://twitter.com/rtggeek
Website: https://rule11.tech/
Podcast: https://rule11.tech/hedge/

Check out our Patreon – https://www.patreon.com/artofneteng
Follow us on Twitter https://twitter.com/artofneteng​
Follow us on Instagram https://www.instagram.com/artofneteng/
Like us on Facebook https://www.facebook.com/artofneteng
Join the group on LinkedIn https://www.linkedin.com/company/artofneteng/
Check out our website https://artofnetworkengineering.com
Merch Store – https://artofneteng.com/store
Join the Discord Study group – https://artofneteng.com/iaatj

Book Reaction – Big Magic

Given that this is the Art of Network Engineering, I thought it appropriate to write about a book I recently finished, around creativity. Big Magic – Creative Living Beyond Fear by Elizabeth Gilbert sheds some light on what it is like to live a creative lifestyle. To me, after going through this book, a creative lifestyle means consciously finding what interests you, both inside an outside of your career, and continuing to explore those interests. In my opinion, it is about finding what “makes you tick” as a person and spending time to do it justice. It might be easy as IT professionals to think that we do not need creativity to function in our careers, or maybe that there is not much room for creativity. There are protocols, standards, and documentation that we need to follow, so we don’t ever have to think outside of the box, right? Well, that just is not true. We constantly need to think of new and creative ways to integrate solutions and make technology fit our requirements. Network design is a great example of this concept. There are often many more ways than just one to design and implement a solution. We must take inputs of our requirements, business goals, scale considerations, and internal staff skill to architect the right solution. There are not always guidelines or tutorials to walk us through this thought and decision process. Believe it or not, we must get creative. I found this book interesting and helpful. It made me take an audit of how I spend my time and what I could do to better leverage and grow my own creativity. I would like to highlight some of the concepts of this book that resonated with me.

Creativity as a Means to an End
It seems natural for us to always want to try to get the most out of life. I don’t think there is necessarily an issue with that by itself, however, I think the problem is when we take that a step further. I think the issue here lies with only wanting to pursue creative ventures as a means to monetize or make a career out of the creative act. This can easily put a lot of pressure on you to be successful so that you able to support yourself, which could take some luster off of the creative pursuit. The author writes about examples of people quitting what interests them becuase they have not been financially successful, and how she stuck with writing even when she was not successful because she genuinely enjoyed the craft. In my opinion, she became a successful writer because she wanted to write, not because she had to write. Elizabeth Gilbert sees no shame in having a day job to support the creative lifestyle. In fact, she encourages it. This allows you to truly be creative because you want to, rather than relying on it to make a living.

Passion vs Curiosity
I often fall into the potential trap of having an “all or nothing” mentality. What I mean by this is that sometimes if I do not think I can maximize the benefits of trying something new and dedicate tons of time to it, I often will not even try. In other words, I seem to be pressuring myself to find things that I am passionate about, otherwise, what’s the point, right? After going through this book, I now see how that can be an issue. What I am doing is putting up guard rails around what I am willing to spend time on, and not allowing myself to adequately explore new things. Don’t get me wrong, I know there are two sides to this. If all I do is dabble in a million different things, I will probably never focus on anything. As with practically anything, a balance must be struck. What Elizabeth Gilbert suggests is rather than pressuring yourself to find a passion, allow yourself to be curious. Curiosity opens your mind up to new ideas and can even surprise you with what you may end up finding. An example she gave was that at one time she was curious about gardening, ended up starting a garden at home, which led her to research adjacent topics, and ultimately led to an entire book idea. Essentially, what I gathered from this was that we should give ourselves a chance by being curious.

Perfect is the Enemy of Good
While I do not think this exact quote was mentioned in the book, the idea was definitely there. It is easy to put a lot of pressure on ourselves to do things right the first time and only be satisfied with something as close to perfection as possible. This mentality can easily lead to us never actually finishing a creation. When I decided to start a blog a few years ago, my initial thought was that “well, I’m not going to publish anything until my site looks good”, whatever that really means. However, I received some solid advice to just create, just get some content out there so I can practice and grow. Looking back, I fear that if I had not taken that advice, I may have never started writing, or at least would not have done as much as I have to this point. The author also gave an example of how she almost missed her first short story being published in a magazine. She had a story accepted, then due to budget constraints was told that she had to either cut out a percentage of the story, or it would not have been able to be publised in the upcoming edition of the magazine. Hopefully, it could have been published in its entirety in the next edition, but it was by no means a guarantee. After consideration, she put the work in to rewrite the story enough so that it could be shortened enough and could get published. Getting a story published at all meant more than waiting and maybe never getting the “perfect” story published. Let’s face it, perfection is an incredibly difficult, lofty, and frankly unattainable goal. What I mean be that is that we will always have room for improvement. Try not to let the goal of perfection keep you from creating something awesome.


This book gave me a lot to ponder. I think my biggest takeway, as you can probably gather from this post, is that I need to relieve the pressure. I put these lofty unwritten requirements on myself that I think keep me from reaching my full potential. I probably need to make more of an effort to get out of my own way. Making a conscious effort to allow myself to be curious and see where it takes me seems to be a good start. If you are looking for ways to approach your own creativity, I definitely recommend this book.


Featured image credit – Ricardo Esquivel
Pexels
Website
Twitter

Ep 112 – NFD30 Special!

In this episode, A.J. and Tim are joined by repeat guest Girard Kavelines, of TechHouse570. The guys all attended Networking Field Day 30 together and wanted to share their thoughts on what they saw at the event.

TechFieldDay
NFD30 Event Page: https://techfieldday.com/event/nfd30/
Become a Delegate: https://techfieldday.com/delegates/become-field-day-delegate/

Follow us on Twitter https://twitter.com/artofneteng​
Follow us on Instagram https://www.instagram.com/artofneteng/
Like us on Facebook https://www.facebook.com/artofneteng
Join the group on LinkedIn https://www.linkedin.com/company/artofneteng/
Check out our website https://artofnetworkengineering.com
Merch Store – https://artofneteng.com/store
Join the Discord Study group – https://artofneteng.com/iaatj

Cooking up Coding Fun, from ‘Scratch’

Have you ever wondered of a fairly low effort, fun way to get your kids, friends, or family members into the basics of programming? Or maybe even yourself for that matter? On the surface, this can seem like a daunting task. I mean, when I think coding, I immediately default to command line and start seeing “The Matrix” gloss over my mind’s eye. Having a low barrier to entry method for learning basic programming principles in a fun way would be fantastic. Well, such a platform does exist, and it is called ‘Scratch‘. The Scratch community and program strives to teach and get people involved in coding with a fun, free platform. To get started, all you need to do is go to the website and click “Create” near the top left. This opens up the Scratch editor and you can either just click around and start creating, or you can view some of their many, very informative video tutorials. If you want to be able to save your projects, you can create a free account. With Scratch, you can let your imagination run wild. You can create projects such as animations, stories, and games. Let’s jump right in and create a scene to show some of the possibilities with the Scratch platform.

First, we will select our backdrop for this scene.

Rock and roll! This is a pretty cool backdrop, but something is missing. Let’s add a sprite (AKA a character or object). A sprite can be selected from an available list of sprites, or we can upload something. First, we will upload a sprite to give this scene some extra character.

Now that is what I’m talking about, AONE Live, in concert! Now, it is coding time. We will want to start with the action that will begin our program, then the first steps of our code. One easy way start a program is with a click of the green flag. For this program, we will say that when the green flack is clicked, we will set the backdrop to our concert stage and place the AONE flag where it is shown above. Here is what that will look like in the Scratch GUI. One thing to keep in mind is that as we are building this portion of code, I have the AONE flag sprite selected, and the code is being built around that sprite.

There are many different action groups and options that you can see above and I encourage you to explore them. We are really just scratching the surface here (pun definitely intended). The small snippet of code above is what sets the concert stage scene that was shown earlier. One really nice thing is that as you move a sprite around in the workspace screen on the top right, the “go to” coordinates option in the blue Motion action group automatically update so you can place a sprite where you want, then just click and drag the “go to” option into your code, like I did above. Like eluded to earlier, each sprite requires it’s own code section. Now, we will add a sprite from the available options, similar to the upload that we did earlier, but now we can just click the cat icon to select a sprite from the listing.

Now, we have added a sprite named Devin and the image above shows the flow of the Devin’s code. When the green flag is clicked, Devin goes to the coordinates on the screen listed, appears, waits for two seconds, then gives an introduction. I definitely like the idea of this scene. Maybe we’ll have to take this AONE act on the road sometime in the future!


This tutorial was really just to highlight some of the basics of this platform, there are so many possibilities here. Scratch is a fantastic, fun, and free way to start learning the basics of programming. You can even do some in depth projects as well. By searching the Scratch website you can view and interact with projects that people have built and made public. I definitely recommend checking this out. Happy coding!

Ep 111 – Wireless Networks

In this episode, we talk wireless network with Rowell Dionicio, from  @ClearToSend !

More from Rowell:
Twitter: https://twitter.com/rowelldionicio
Website: https://rowelldionicio.com/

Clear to Send:
Twitter: https://twitter.com/cleartosend
YouTube: https://www.youtube.com/@ClearToSend
Website: https://www.cleartosend.net/

Check out our Patreon – https://www.patreon.com/artofneteng
Follow us on Twitter https://twitter.com/artofneteng​
Follow us on Instagram https://www.instagram.com/artofneteng/
Like us on Facebook https://www.facebook.com/artofneteng
Join the group on LinkedIn https://www.linkedin.com/company/artofneteng/
Check out our website https://artofnetworkengineering.com
Merch Store – https://artofneteng.com/store
Join the Discord Study group – https://artofneteng.com/iaatj

NFD30 – Gaining Intelligent Observability w/ Selector AI

Troubleshooting networks can be a very difficult, manual process. Businesses run disaggregated systems and operators often need to jump from one to another when trying to find and fix problems. A large amount of valuable time can be spent investigating different systems and infrastructure while trying to gather data, to then go through a manual correlation process to find what specifically needs to be fixed or adjusted to resolve an issue. What if there was a solution that aggregated all of this “go-to” information, correlated it for us, and then sent us a message pointing us in the right troubleshooting direction? That is the solution that Selector AI is proposing. From their first ever Networking Field Day event (NFD30), below is the problem that Selector AI believes enterprises are facing and what we covered in their presentation.

Introduction to the platform.
Specifically, the Selector AI platform is pulling in and aggregating different types of network infrastructure state information. This could be information such as logs, metrics, and events from network devices. Telemetry from the infrastructure can be streamed directly to the Selector platform, or Selector can pull from an existing aggregated source, such as Kafka. The Selector platform can run on-premises or in the cloud. The images below show Selector’s target customers and environments, then some of the available source data types, protocols, and integrations they support today.

So, Selector has the data, now what?
It was mentioned earlier that a challenge that network operators have is manually correlating events from different systems to find just what might be the problem. A core competency of the Selector platform is doing just that. Selector AI treats the process of collecting, correlating, and delivery actionable information as a data pipleline.

Once raw data is collected, the platform tags different data types to pull in meaningful information, which makes the platform able to compare and correlate that information to different types of data, for instance, logs and metrics. To put it one way, this is how they compare apples to oranges when it comes to data.

Do Selector AI customers need to go in and set up thresholds for all of these different data types so the platform knows what specifically is good and bad to alert accordingly? Absolutely not, the Selector platform leverages a baselining method to analyze data and automatically determine what is, and is not a problem. The baselining method turns numbers into events and displays what events are good and bad, or more specifically, normal and abnormal.

Event Correlation Result
Alright, so the Selector platform is ingesting data, performing baselines, doing the data conversion, and event correlation; now what? In the demo, they showed us how they integrate with platforms such as Slack to be able to deliver meaningful, actionable information to individuals and teams so they are made aware of an issue and immediately pointed in the right direction to go solve it. Users of the Selector platform can even interact with the Slack messages to query the platform to get more information about the specific alert. As part of the event correlation process, multiple events are combined into a single, correlated alert. This way, teams are not inundated with a large number of alerts and can more easily focus on solving the problem in front of them.


In my opinion, Selector AI really seems to have a special product here that can provide a lot of value to large companies. The target audiences that were listed in one of the above images make sense as far as who would benefit from this platform. Having aggregated and correlated intelligence that is automatically delivered to not only alert you about an issue, but to also essentially point you in the right direction for next steps is extremely valuable. As mentioned earler, this was Selector’s first Networking Field Day presentation, but you would not have been able to tell. The team is clearly passionate and excited about their product and where they are going in the future. Click here to watch Selector’s NFD30 presentation so you can see exactly what the delegates saw from them.

NFD30 – Juniper Campus Fabric and Segmentation

Major goals for enterprise campus networks are flexibility, reliability, and security. With legacy networks, it sometimes seems to be difficult to get all three in one solution. For example, to build flexible networks, we would end up spanning VLANs across many switches and potentially compromising reliability. One solution to this is to adopt the underlay/overlay concept of building fabrics. With fabrics, we can build stable and scalable Layer 3 end-to-end underlay networks and then leverage technologies such as LISP and VXLAN (as examples) to build our flexible networks in which users and devices can roam the infrastructure and maintain their Layer 2 and Layer 3 adjacencies as needed. Juniper provides this level of flexibility, reliability, and security through their Campus Fabric solution, managed by Mist AI.

Juniper presented at Networking Field Day 30 (NFD30) and told the story of how they are helping their customers build campus fabrics from the Mist AI cloud platform, with security tagging and enforcement embedded into the infrastructure. This solution is just part of their overall goal to provide “Experience-First Networking“.
(***Don’t blame Juniper for the image quality. I took these as screenshots from their NFD30 presentation. Blame me, I deserve it.***)

As stated earlier, campus fabrics provide us some benefits over legacy networks. Juniper presented those benefits as follows:

Next, Juniper understands that customers may be in different stages of their campus network journeys. Due to this, when standing up a campus fabric, they provide you with three topology architecture options. This flexibility allows customers to decide how far they want to take their EVPN-VXLAN fabrics.

One more concept that I want to cover out of Juniper’s Campus Fabric solution is around security; specifically around authentication and authorization. Over the years (like it or not), the network infrastructure has become a natural security sensor and policy enforcement point. There are a few different ways of accomplishing this in enterprise campus networks. One of these methods involves leveraging a Radius solution to determine authentication and authorization actions, then instructing the infrastructure implement that authorization policy via VRFs, VLANs, ACLs, and/or some sort of packet tagging. Juniper’s Campus Fabric solution allows for this method. They implement Group Based Policy so that you can enforce VRF, VLAN, ACL, and tag based segmentation. You can create and set static security tags (which get added into the VXLAN header), but the more common and dynamic method seems to be leveraging a Radius solution to perform dynamic tagging, as mentioned earlier.

One thing that I thought was particularly interesting is that Juniper supports scalable group tag enforcement at either ingress or egress. In having a great chat with Jordan Martin, we discussed that while ingress enforcement seems more efficient from a bandwidth perspective, something to keep in mind is that the entire database of tag policy has to be downloaded to the switch to be able to support that level of enforcement. That has the potential of causing TCAM concerns. Whereas, if you allow the packet to traverse the network to the destination switch, the destination switch only needs to do a lookup to the policy database for the given source and destination to decide whether to permit or deny the packet. In typical campus networks, maybe egress enforcement isn’t a big deal because we may not be worried as much about potential inefficient use of bandwidth.


Campus fabrics, or the concept of underlay/overlay networks can help organizations achieve all three goals of flexibility, reliability, and security. In Juniper’s case, they lean into the cloud based Mist AI platform to perform that fabric management plane function for their customers.

As far as this NFD 30 presentation, I have to give the Juniper team a lot of credit. The delivery was very engaging and flowed very well from presenter to presenter. As questions were asked, each presenter seemed to jump in effortlessly when it was a topic within their expertise. They clearly work very well together. Also, I appreciate that the product management team maintains close relationships with their customers so that are able to operate a strong feedback loop. They truly seem to want to make sure that they are developing products and solutions based off of real customer need and desire. I had a great time participating in this presentation.

Ep 110 – Network Tools

In this episode, the team discusses some of their favorite network tools!

Check out our Patreon – https://www.patreon.com/artofneteng
Follow us on Twitter https://twitter.com/artofneteng​
Follow us on Instagram https://www.instagram.com/artofneteng/
Like us on Facebook https://www.facebook.com/artofneteng
Join the group on LinkedIn https://www.linkedin.com/company/artofneteng/
Check out our website https://artofnetworkengineering.com
Merch Store – https://artofneteng.com/store
Join the Discord Study group – https://artofneteng.com/iaatj

Ep 109 – Labs, Labs, Labs!

In this episode, Tim and Lexie talk all about labs! Home Labs, study labs, and even labs at work!

Check out our Patreon – https://www.patreon.com/artofneteng
Follow us on Twitter https://twitter.com/artofneteng​
Follow us on Instagram https://www.instagram.com/artofneteng/
Like us on Facebook https://www.facebook.com/artofneteng
Join the group on LinkedIn https://www.linkedin.com/company/artofneteng/
Check out our website https://artofnetworkengineering.com
Merch Store – https://artofneteng.com/store
Join the Discord Study group – https://artofneteng.com/iaatj

Entry Level Cloud Certification

About mid-way through 2022 I was looking for the next step in my learning journey. Earlier in the year I had taken on an architecture role and saw it fit to start branching out from purely network infrastructure related concepts. It seemed like a good time to start gaining broader skillsets and knowledge. For me, cloud seemed like the right path to take. To be honest, I would sit in certain meetings and hear phrases and acronyms that would go right over my head. My objective was to gain some base-level knowledge around cloud concepts. Not that there is anything wrong with this, but personally, I didn’t want to jump straight into one of the major cloud vendors learning paths. I wanted that vendor-agnostic approach to get the basics down first. By basics I mean characteristics of cloud computing (what makes something a cloud offering) and hopefully pick up and understand some of this terminology that I was not grasping. That lead me to start looking at some of the CompTIA options. Given the new role I had taken on, I wanted something that gave me a good mix of high level technical and business related concepts. This would hopefully help me “speak the language” when it comes to groups and individuals outside of the IT department. CompTIA has two main options for cloud related studies, the Cloud+ and the Cloud Essentials+ certifications. After a little research, I landed on wanting to prepare for the Cloud Essentials+ (CLO-002) exam.

Reasoning for Cloud Essentials+ Journey
A big reason that I went with preparing for the Cloud Essentials+ exam was that it covers that mix of technical and business principles that I was looking for to start building my knowledge around cloud. This really is an entry-level path and my starting cloud knowledge was practially zero, so I felt this was a really good option for me. The curriculum started with the basics which is what I really wanted. Personally, I typically try to make sure I hit and reinforce the basics when I am learning something new so that I do not miss something important which can make learning future concepts more difficult. You definitely do not have the follow what I do, find what is right for you. I will say that my method typically takes longer when it comes to cerfications, but I am alright with it. One of the early topics that was covered was the main cloud characteristics, as defined by NIST. According to NIST, the five characteristics that a cloud service must have are:

1. On-demand self service
2. Broad network access
3. Resource pooling
4. Rapid elasticity
5. Measured service

This is exactly what I wanted to see early on because I wanted that base level understanding of what makes up a clould service and be able to have somewhat intelligent conversations regarding cloud services. Some other topics that I enjoyed covering were:

  • Cloud Service Models
    • Software as a Service (SaaS)
    • Platform as a Service (PaaS)
    • Infrastructure as a Service (IaaS)
  • Cloud Deployment Models
    • Private Cloud
    • Public Cloud
    • Hybrid Cloud
  • Cloud Migration Types
  • Disaster Recovery Concepts
    • Recovery Time Objective (RTO)
    • Recovery Point Objective (RPO)
    • (The two sub-concepts above are examples of acronyms I would hear out in the wild and not know what they were.)

Preparing for the Cloud Essentials+ Exam
To prepare for the Cloud Essentials+ Exam, I used the following materials:

  • CompTIA Cloud Essentials+ Exam Prep Bundle:
    • Official Study Guide (ebook)
    • CompTIA CertMaster Practice
    • Exam Voucher and Retake Voucher
  • CBT Nuggets course for Cloud Essentials+
  • Pluralsight learning path for Cloud Essentials+
  • Anki cards throughout the entire journey for review as there are a lot of concepts that you should be able to understand and explain.

How it’s Going
I found that preparing for the Cloud Essentials+ exam was just what I was looking for in my intro to cloud concepts journey. I was able to take and pass the exam near the end of 2022. One thing that I have started doing somewhat recently is documenting my learning journey in blog form as I go. I will typically take a concept that I am learning and write up a blog post about it. I find that it not only helps solidify the knowledge, but also allows me to practice writing, which I really enjoy. You can find my Cloud Essentials+ Journey series on my blog site. Happy learning!

Featured image photo credit – A.J. Murray
Website
Facebook
Twitter

You Are Good Enough

As I think it is natural for us to do near the end of a year, I have been doing some reflection. While ups and downs are often the norm, it seems to have been quite the year for many of us. All I have to do is check out the IAATJ Discord winning channel to be reminded. One thing that I find in common with successful people both inside and outside their careers is that they invest in themselves and those around them. What does it mean to invest in yourself? Well, that’s the beautiful part, it can take on many different meanings.

First, I think you need to understand something. You need to understand that you ARE worth the investment. Imposter syndrome is alive and well in our lives, often on a daily basis. Imposter syndrome is that nagging feeling that we inflict on ourselves that tells us that we are not good enough to be where we are, doing what we are doing, and that we do not belong. In small doses, imposter syndrome probably is not a terrible thing. It can cause us to want to continue to better ourselves, because let’s face it, we’re never going to know everything. We cannot, however, let imposter syndrome consume our lives. We need to understand that there is a reason we are in the positions we are currently. For instance, let’s say you are in a new role and feel like you are not skilled enough to be in that role. Well, there is a reason you made it into that role. Someone or a group of people saw something in you to give you that chance. Or let’s say you are making a change in your life and trying something new. Well done for taking that step! You are good enough to be you and share your contributions. Take a chance, bet on yourself. I think you will be surprised what you can accomplish and where your journey can take you.

To me, investing in yourself is a making a conscious effort to continue to better something about your life. I am not just talking about your career either. This is by no means a plea for you to go out and get as many certifications as you can. That is a completely different conversation, I’ll just say that certifications are great and all, but there are other ways to gain experience and confidence in your skills. I am taking a holistic approach here. There are many different facets to our lives and I find that trying to maintain some sort of balance is key. Investing in yourself can take many different forms, and this is by no means an exhaustive list.

  • Mental Health
    • Many of us have probably heard a phrase similar to “you cannot fill up the cup of others if your cup is empty”. My translation is that it is very difficult to take care of others and responsibilities without first making sure that you are taking care of yourself. I am by no means even a novice when it comes to mental health, but I will say that you should keep yourself honest. Understand when something does not feel right or when you need a break. And when that happens, seek the assistance of others. You do not need to fight battles on your own or suffer in silence. Remember, you are good enough. You are worth it.
  • Physical Health
    • This is an opinion article, so I have no peer reviewed facts, but I feel that physical health can tie directly into mental health. Exercise has been an important part of my life, especially recently. Let me caveat exercise really quick. Anyone who has seen me can probably tell very quickly that I do not do a lot of strength training. However, I make a conscious effort to get my heart rate up and move around most days for a sustained period of time (usually around 25 minutes). Second caveat, much like my lack of mental health expertise, I do not claim to know what I am talking about when it comes to physical health either. But, I do know what seems to work for me, and physical exercise is definitely a piece of that puzzle.
  • Support System
    • I mentioned seeking assistance in the mental health section above. Some of us are lucky enough to have people (and I count furry friends here as well) that care deeply about us. It is easy to take things for granted, especially our support system of awesome people. I feel we should invest in our support systems as well. I am not saying you need to continuously buy people lots of cool gifts either. Investing in your support system can be as simple as reaching out. I am a big fan of the check-in. I like to reach out to people over time just to say “hi” and see how they are doing. I know how awesome it feels when people do the same for me, and this is how I invest in my support system.
  • Career
    • I think I may have left this one last in the list on purpose (again, not an exhaustive list). I wanted to convey how important I think the other items in the list above are to me. That being stated, I am also very passionate about my career and continual growth within it. Investing in yourself from a career standpoint in IT can mean many different things and a combination of many different things. First, I think it is important to understand what you want out of your career, and it is definitely fine if that changes over time. In fact, I would expect it to change over time. Once you have at least a high level idea of what you want your career to look like, it is time to invest. I mentioned certifications earlier and that is definitely a good method, but not the only one. Other options to invest in your career can be to lab things up to improve knowledge, volunteer to jump into something new and even lead new initiatives, and ask questions. Asking questions and showing that you are curious is a great way to invest in yourself.

This post has all been a bit of a lengthy way for me to state and reiterate that you are good enough. You are good enough to be invested in, starting with yourself. Understand that you are worthy enough to take a chance on yourself, your development, and your happiness. The examples of success are plentiful. Take the AONE team for example. There has been a lot of growth in the co-hosts since the show has started, largely in part to self-investment. Do I even need to mention the rockets? Seriously though, you are good enough, and I cannot wait to see you grow in life. Happy holidays, happy new year, and happy reflecting, from the AONE team.

Ep 108 – TME Panel

In this episode, we talk to two different Technical Marketing Engineers to learn more about this position, what it entails, and the type of work a TME does. Pete Lumbis and Wes Kennedy join us for this exciting episode!

More from our guests:
Pete Lumbis: https://twitter.com/PeteCCDE
Wes Kennedy: https://twitter.com/wesdottoday

Check out our Patreon – https://www.patreon.com/artofneteng
Follow us on Twitter https://twitter.com/artofneteng​
Follow us on Instagram https://www.instagram.com/artofneteng/​
Like us on Facebook https://www.facebook.com/artofneteng
Join the group on LinkedIn https://www.linkedin.com/company/artofneteng/
Check out our website https://artofnetworkengineering.com
Merch Store – https://artofneteng.com/store
Join the Discord Study group – https://artofneteng.com/iaatj

Ep 107 – Augtera Networks

In this episode, we interview the Founder and CEO of Augtera Networks, Rahul Aggarwal. We learn about Augtera and how they can help network engineers!

More from Augtera and Rahul:
https://www.linkedin.com/in/raggarwa/
https://twitter.com/raggarwa
https://twitter.com/Augtera
https://www.linkedin.com/company/augtera/
https://augtera.com/

Check out our Patreon – https://www.patreon.com/artofneteng
Follow us on Twitter https://twitter.com/artofneteng​
Follow us on Instagram https://www.instagram.com/artofneteng/
Like us on Facebook https://www.facebook.com/artofneteng
Join the group on LinkedIn https://www.linkedin.com/company/artofneteng/
Check out our website https://artofnetworkengineering.com
Merch Store – https://artofneteng.com/store
Join the Discord Study group – https://artofneteng.com/iaatjhttps://augtera.com/?utm_source=aofne&utm_medium=podcast&utm_campaign=augtera

Ep 106 – Data Center Network Design

This week we talk to Gabe Pariacote. Gabe is a Principal Architect with Sirius Computer Solutions (a CDW company).  He helps customers design and implements enterprise campus and data center networks.  Gabe also has a background in the service provider space and is a 3X CCIE Routing and Switching, Service Provider, and Data Center.

Check out our Patreon – https://www.patreon.com/artofneteng
Follow us on Twitter https://twitter.com/artofneteng​
Follow us on Instagram https://www.instagram.com/artofneteng/
Like us on Facebook https://www.facebook.com/artofneteng
Join the group on LinkedIn https://www.linkedin.com/company/artofneteng/
Check out our website https://artofnetworkengineering.com
Merch Store – https://artofneteng.com/store
Join the Discord Study group – https://artofneteng.com/iaatj

Ep 105 – Leadership

In this episode, we discuss leadership with Mike Bushong, GVP of Cloud Ready Data Center at Juniper Networks. We reveal what leadership is, the characteristics of a good leader, leading with your strengths, connecting with people in a genuine way, the power of questions, cognitive biases, influence, and work/life balance.

More from Mike:
Twitter: https://twitter.com/mbushong

Check out our Patreon – https://www.patreon.com/artofneteng
Follow us on Twitter https://twitter.com/artofneteng​
Follow us on Instagram https://www.instagram.com/artofneteng/
Like us on Facebook https://www.facebook.com/artofneteng
Join the group on LinkedIn https://www.linkedin.com/company/artofneteng/
Check out our website https://artofnetworkengineering.com
Merch Store – https://artofneteng.com/store
Join the Discord Study group – https://artofneteng.com/iaatj

“FREE” IT/Cyber Training for Air Force People

When it comes to money, I don’t like to spend it. Furthermore, one of the key tenets to writing is ‘write what you know’ or so says a few people anyways. So here we are. There is a lot of training out there so in the following I hope to provide stuff that’s not only free/almost free but stuff that’s actually good content and worth your time. Even if you are not getting any of the following for ‘free’ because you are not in the Air Force, you can at least get a bit of insight into a few learning platforms and what I find valuable in each.

O’Reilly Books

Access to O’Reilly books can be had by any current military member through the MWR library system. MWR libraries has had available subscriptions to O’Reilly for a long time, way back when they were called Safari Books. These days, not only does O’Reilly provide thousands of digital books, they also offer cloud labs and sandboxes to try out code so you can get a bit of hands along with their book offerings. O’Reilly also has a bunch of video on demand courses and most Packt publishing books.

O’Reilly Homepage After Login

If you were to purchase this great service on your own it would run you $49/month or $499/year. If I had just $50 to spend on training this is probably where I’d spend it. The amount of content you get here is just unparalleled. Just getting every book by the Manning and No Starch publishing are worth it on it’s own.

Digital University

DigitalU or DU for short, is a new offering for those in the Air Force. It’s main page tries to get you organized into specific training goals. Once you actually begin a course, skill or goal you are then redirected to one of their many platforms that actually provides the training.

Digital University Homepage After Login

While I currently don’t use Digital University the way it’s intended, as I find it’s UI difficult and non intuitive, it allows access/subscription to some great resources. Namely, DataCamp, Cloud Academy, Udemy and Pluralsight. To get to these websites, you search for a course or skill path within Digital University and then pay attention to who is providing the course, regardless of whether you are interested in that course in general:

Once you click on ‘continue’ or ‘start next’ you will be redirected to the platform I’ve outlined in the rectangular box. Now you can do anything within that particular platform/website, and that’s usually how I navigate and use this resource.

DataCamp

DataCamp has been an absolute joy to use. So far, I’ve completed four courses introducing Python data science concepts. It’s got short explainer videos and then you spend most of your time doing related exercises. Here is the common interface for most of your exercises:

In here you can try stuff out on the iPython Shell before running your script, look at the slides if you need a little help with syntax, get help with a hint if you’re a bit stuck. I just think this is such a great learning tool/environment. I plan to keep using DataCamp to learn some data science skills as I think it’s valuable to get more comfy with Python in general but even more so to wrangle large datasets into something useful no matter where I find myself. If you were to purchase this subscription on your own it would run you $39/month or $300/year. A quick aside, I always prefer the month approach to subscriptions as you never know what sort of projects/interest you maybe in 8 months from now.

Cloud Academy

This is my other favorite platform whose access is provided by Digital University. So far I’ve completed a Docker and Kubernetes learning path. The video instruction is really clear and concise yet their labs are where this platform really shines. Every lab requires you to access a cloud provider and some initial setup no matter if the topic you are covering is strictly cloud or not. To do this they give you a username and password to Azure or AWS for example and you are on your way. The lab guides are also top notch as I’ve found nothing unclear or incorrect which means they are staying up to date with the ongoing changes of each cloud provider to make sure their labs are accurate and on point.

Cloud Academy Welcome Screen After Login

I just started Microsoft Azure Fundamentals today and hope to test on AZ-900 by mid November. More on Microsoft certifications later in this post. The cost of Cloud Academy if you were to purchase this on your own is, at the time of this writing, $39/month or $399/year.

Pluralsight and Udemy

The last two big offerings through Digital University are Pluralsight and Udemy. I’m not the biggest fan of either platform, so I’m not here to tell you how awesome they are. See how that works. Pluralsight in it’s defense, may have the best mobile app out of the bunch. So if you find yourself with a long commute, and enjoy some of the courses, you may find a home with Pluralsight. The best use I’ve got out of Udemy thus far are the practice tests associated with certifications. There are a few courses that are nothing but some very well written practice exams. Cost for both platforms are comparable to DataCamp and Cloud Academy’s pricing.

Splunk

Splunk offers free training to veterans. Once verified with your ID.me you’ll have access to many eLearning courses and eLearning courses with labs. Each class with labs is a $300 value. I first got started with Splunk Training with Splunk 7.x Fundamentals Part 1 (eLearning). It seems they broke apart the Fundamentals training into the smaller eLearning modules. Furthermore, instead of having you install a local instance of Splunk to go through the labs, they have you use a cloud instance. Other than that, the training seems to be about the same and of the same quality.

Splunk Education Catalog After Login

Although I use Elastic for most of my work related tasks, getting acquainted with Splunk, learning how to parse large amounts of data to make useful insights will be great for anyone. While most eLearning training is free from Splunk, you are saving $300 per course with labs and able to get valuable hands on experience.

VetSec

VetSec is probably the coolest program out there for veterans. I’m not currently active but have been in the past yet continue to have a smile on my face whenever Thomas Marsland (VetSec Board Chairmen) posts come across my LinkedIn feed. As I’m interested in training, I’m continually impressed by what they have put together to offer the military community. Furthermore, their slack channel is where the true magic happens. From mentoring to resume help to job posting to special training opportunities there is an abundance of help there for anyone who needs it. If you need more direction/help/community do not hesitate to sign up with VetSec.

Hopefully this post introduced you to a few new ways to save a few dollars and get some quality training, and at the very least make sure you get connected with VetSec.

Free Microsoft Certs

As mentioned above, I just started going through the Microsoft Azure Fundamentals learning path in Cloud Academy. Well one reason for doing so is because Microsoft is currently offering 100% discounted exam vouchers to those in the Air Force. The discount looks to expire 6/30/2023:

To ‘get’ the discount you simply enter your .mil email before heading to checkout:

So I’m giving Azure a try, you can also do the associated learning path through Microsoft as well but I’m going to stick with Cloud Academy and see what happens. I’ll report back.

The Bat Cave

Me on the Left, Pedicab Mentor on the Right

Manny Pimentel recently wrote a blog post describing his ‘Nurse to CCNA’ journey. It was a great post and very cool to see the man behind the man who is the president of short IT Twitter. This got me reflecting a bit on my own journey. I’m not up for telling the whole story of how I came to 40 years of age, so I’ll stick to just one…

Somewhere between 2006-2008 I found myself drawn to the Bat Cave, 909 Marion St in downtown Seattle. I just got my Associates degree from South Seattle Community college and I was working at a place not far from the Bat Cave, a corporate lunch spot called Mel’s Market tossing salads. As luck would have it, I spotted an ad on craigslist while looking for some sort of bike messenger position, a pedicab driver. I contacted the ad and let them know of my interest.

My First Business

I felt a bit of apprehension as the guy ‘interviewed’ me and let me drive him around the block as he explained to me what it was about to do this sort of work. He let me do a few days, expecting me to fail or realize this work wasn’t for me, but, as it turns out, this work was just my cup of tea, in my own way.

To be a pedicab driver I would have to obtain a business license and then I’d rent the pedicab from this man. I completed the paperwork, I think at this time you could obtain a business license for about $80. Then I’d show up for work at the Bat Cave where all the pedicabs were stored…

Pedicab rental rates varied depending on what was going on that day. I don’t recall exact rates but the were something like:

  • Mariners Games $35
  • Football Games $60
  • Any old day $15 – $25

So I’d show up, do a quick check on my bike and head out, I’d have to payout the rental fee once I was done for the night. That was it, keep anything I made past my rental, all cash.

We had about the same group of riders while I was there. It consisted of about 2-3 old timers and 6-8 young new comers.

A Typical Shift

A Mariners game is a good example of a typical shift. I’d arrive to the Bat Cave at around 2:30 – 3 pm for a typical 5ish first pitch. Back in these days there was usually between 3 – 6 pedicab drivers in total, on any given night. We’d lineup like taxis before the games start at the ferry dock, waiting for would be baseball fans to get off and take them to the gates at Safeco Field.

The price of this service would fluctuate a bit, most of the time I’d quote $12 or $17. I was taught to always use an odd number so that you can expect at least $15 or $20 by the end of the ride. Even so, I’d very rarely have the change needed at this point, especially early in this shift. On a good day, I’d hopefully get 3-4 trips from the ferry to the baseball game. So I’d already be well into making money time having already covered my rental fee.

Once the game starts till it ends is more of an adventure. You can choose to wait at any of the exit gates, the easiest rides being the one closest to the ferry. People tend to trickle out of the game after the 5th or 6th inning with a big rush at the end of the game. After the game people ask to go to all sorts of places, from a pub, a strip club or the Siren tavern. Even a couple hours after the game it’s not hard to pick up a ride in Pioneer Square to make some extra cash. Also, the later it gets the more people are willing to pay. Not sure if this has anything to do with alcohol consumption but could be an indicative variable.

Two rides I remember more than any other. One such ride was giving two girls a ride to a Tavern and they were groping and kissing my back the way whole way there. I did not enter into that tavern nor ever speak to them again, still a story (for another day or another platform??!)…The other was a single rider whom I’d taken from the stadium area all the way to a place in Belltown. This one stands out because it was the longest one way trip I’d ever done on a pedicab. I told her that and also the chance I’d be getting more rides was slim and she paid me more in one trip than I usually made in most nights. Great conversationist that one as well.

And I digress…

At the end of the night, usually around 11 pm I’d venture, we’d all end up back in the Bat Cave counting our money. Back in those days I wore some pretty form fitting pants and I’d just have bills stuffed in my sweaty pockets. I wasn’t even to dare trying to do too much with those bills in my pockets out in public, so I’d get back and begin separating bills and see what I ended up with.

Bat Cave Money Counting…

A good shift to me was anytime I had over $100 profit. These were easy to do for Mariners and Seahawks games and took some REAL work when you’re just going up and down the waterfront or through Pioneer Square.

The People

With any job I always think whether you had fun or enjoyed what you were doing depends on who you are working with and who you are serving. This job was no exception. There were some awesome people pedicabing and some cool stories from customers I’ll take with me for the rest of my life. People like talking and there is no better place to let someone talk as you are trying to catch your breath peddling them up a small incline…

The night usually ended eating some bbq duck and/or drinking a cloudy beer. To end the night I’d bike the 6-8 miles back to my place of residence back then. Good shape I was in (compared to today me).

Unfortunately, a new pedicab driver had a tragic accident and at least one life was lost. This brought up city politics and the person who’d I’d been renting from moved on after this tragedy. This is about the time I also moved on from pedicabbing as well but always hold this time in my life in high regard even though at the time I was too immature to truly appreciate it. I often wonder what would have been of me had I stuck this out or ventured into buying my own cab had things been different?

How Did this Shape Me

I suppose it shaped me in a lot of ways, but sticking strictly to my career it helped me get out of my shell. The reason the guy, at the interview I initially had was so skeptical of me being a pedicab driver was because I was a shy soft-spoken kid. In this line of work you have to put yourself out there, literally. After pedicabbing I went to barista work and a bit of food service on the side. I don’t think I wouldn’t picked these jobs up as fast or been as successful had it not of been for this experience.

Above all, I got to learn about Seattle. I got to meet all of its citizens. From the out-of-towners that came to the games, to the houseless people eating a Food Not Bombs lunch on a Sunday, to the hot dog vendor cart owners outside of the stadiums. I got to meet and hear so many people’s story in a short amount of time.

So in the end the Bat Cave will always hold a prestigious grip on my heart. We are but the experiences that brought us to where we are.

Ep 104 – Scary Stories!

You sent them in and we’re sharing them! These are some of your scary network outage stories! We even share some of our own scary stories too!

Check out our Patreon – https://www.patreon.com/artofneteng
Follow us on Twitter https://twitter.com/artofneteng​
Follow us on Instagram https://www.instagram.com/artofneteng/
Like us on Facebook https://www.facebook.com/artofneteng
Join the group on LinkedIn https://www.linkedin.com/company/artofneteng/
Check out our website https://artofnetworkengineering.com
Merch Store – https://artofneteng.com/store
Join the Discord Study group – https://artofneteng.com/iaatj

Ep 103 – Packet Capturing with Chris Greer

In this episode, we’re talking Packet Capturing with Chris Greer! Chris shows us all a thing or two about capturing packets and packet analysis with Wire Shark!

More from Chris:
YouTube: https://youtube.com/c/ChrisGreer
Website: https://packetpioneer.com/
Wireshark Training on Udemy: https://www.udemy.com/course/wireshark-ultimate-hands-on-course/?referralCode=4F008584C9FF58683EE9
Chris Live Course: https://packetpioneer.com/product/wireshark-fundamentals-training/

Check out our Patreon – https://www.patreon.com/artofneteng
Follow us on Twitter https://twitter.com/artofneteng​
Follow us on Instagram https://www.instagram.com/artofneteng/
Like us on Facebook https://www.facebook.com/artofneteng
Join the group on LinkedIn https://www.linkedin.com/company/artofneteng/
Check out our website https://artofnetworkengineering.com
Merch Store – https://artofneteng.com/store
Join the Discord Study group – https://artofneteng.com/iaatj

If I Could Start Over in Tech

I’ve written maybe 20 posts or so on this here website. Almost all of them have been explainers or reviews. The following will be something different, something personal. It will probably be a bit short, but I’ll work on that, a journal entry so to speak. Incoming.

The timeline has been a bit cluttered with people giving advise, based on their experience, on what they would focus on if they were starting over in tech. For example, one of my favorite follows on twitter John Breth weighs in:

Follow John! good content from a good dude 🙂

This got me thinking a bit about my own journey and what it means to ‘start over’ in tech.

The Beginning

I’ve started over, money/job/career wise about 5 ‘major’ times since I turned 18; 40 today. I ‘started over’ in tech in July of 2018, enlisting full-time in the Washington State Air National Guard. The first year and change, when you first dive into the job and associated study, it’s easy. Not necessarily the content/job. What I’m talking about is the motivation.

Everything is seemly made for you. The new person in tech. The books, seminars, lectures, YouTube, study groups are 90% for those who are in the beginning stages of their careers. Or, at least that is what it seems to me. Especially after consuming tons of this content over the last 4 years and change.

The rush of taking your first few certs is pretty bad ass. It rivals that of finals week at the collegiate level in my opinion. Sharing your news with those that helped you along the way and those who you’ve studied with is equally as fun. I’m pretty close online with the connections I’ve made at or around this time. It’s a very special time.

But I don’t really want to talk about the beginning. What comes after that first little rush. When you’re just getting your feet wet but think you’ve come to some standard of knowing something. Right before you realize you barely know anything.

The Hard Part

I’ve been in this hard part for the latter part of the last 3 – 3.5 years. Trying to climb your way out of being a novice and getting to something deeper, unsure of what you can call yourself. To motivate myself I spend a lot of time online. Most of the people I look up to online are some sort of engineer, gave talks at conferences, been doing the thing for at least 15 years or some 18 year old CCIE candidate. There are so many freaking awesome people out there to be inspired by.

All that inspiration you get when you are first starting out, when inevitably comparing yourself to those you are inspired by, begins to weigh on you when you are reaching year 3 and into year 4 and you are diving into yet another new technology and having to learn the fundamentals of something new.

I can tell I’ve made progress when I’m talking to those I work with, or someone who themselves are just starting to learn a certain aspect in tech I’ve spent some time on. I surprise myself by how articulate I can explain something. After the conversation I’ll marvel at how much I actually do know.

But then I’ll do something like go to my first tech conference and meet a bunch of super amazing people again. An inner dialogue begins. Am I good enough? Is this the right career? Do i ‘love’ this? What am I doing with this?

How do I relate what I do to my kids? This question right here weirds me out, as the answer is something close to: I respond to emails, solve puzzles and google stuff for people that are too lazy to read. How is this a rewarding life? I’ve always had trouble selling stuff, myself included. I don’t see it as a bad thing but rather see it as me having a true heart and an understanding of what’s actually important (I have trouble lying…).

The Next Thing

This is what I’ve come to accept as what whatever this tech thing is. It’s continually learning. It’s not knowing (but finding out). It’s not something to master, it’s something to be in awe of, to be curious about.

How do you know tech is right for you? If you see something, tech related, and wonder how that works. How can you make it do something else. How can I get it to do what your friend did. I think this attitude, if you are nodding your head north and south, means you are in the right spot.

I doubt 10 years from now will look a lot like today. So that means nothing but learning ahead. Even though I’ll never be Ivan Pepelnjak, the hope is that I’m able to draw on my experience to pick up things faster. Notice that this new thing is actually this old thing bolted on to this other old thing. Speaking of finding little nuggets. When thinking about ‘if I could start over in tech’ I’m reminded of a cool RFC I was linked to a book I was reading. I find it fun to follow a lot of the links when reading 🙂

1. Introduction
   This Request for Comments (RFC) provides information about the fundamental truths underlying all networking. These truths apply to networking in general, and are not limited to TCP/IP, the Internet, or any other subset of the networking community.
2. The Fundamental Truths
   (1)  It Has To Work.
   (2)  No matter how hard you push and no matter what the priority, you can’t increase the speed of light.
(2a) (corollary). No matter how hard you try, you can’t make a baby in much less than 9 months. Trying to speed this up *might* make it slower, but it won’t make it happen any quicker.

(3)  With sufficient thrust, pigs fly just fine. However, this is not necessarily a good idea. It is hard to be sure where they are going to land, and it could be dangerous sitting under them as they fly overhead.

(4)  Some things in life can never be fully appreciated nor understood unless experienced firsthand. Some things in networking can never be fully understood by someone who neither builds commercial networking equipment nor runs an operational network.

(5)  It is always possible to aglutenate multiple separate problems into a single complex interdependent solution. In most cases this is a bad idea.

(6)  It is easier to move a problem around (for example, by moving the problem to a different part of the overall network architecture) than it is to solve it.

     (6a) (corollary). It is always possible to add another level of indirection.

(7)  It is always something
     (7a) (corollary). Good, Fast, Cheap: Pick any two (you can’t have all three).

(8)  It is more complicated than you think.

(9)  For all resources, whatever it is, you need more.

    (9a) (corollary) Every networking problem always takes longer to solve than it seems like it should.

(10) One size never fits all.

(11) Every old idea will be proposed again with a different name and a different presentation, regardless of whether it works.

     (11a) (corollary). See rule 6a.

(12) In protocol design, perfection has been reached not when there is nothing left to add, but when there is nothing left to take away.
Request for Comments: 1925 [1 April 1996]

So if I could do it all over I’m not sure I have any better advice to give. Do what you like to do. I’ve heard John Capobianco on more than one occasion ask people what they are interested in, whether it be Pokémon or baseball, and tie those interests or hobbies into a tech project. I think this is great advice, and I’ve tried to share it with others. There are so many ways to tie something tech related to things out there in the world. If you can combine the two you can learn more about both at the same time.

Like I alluded to above, sometimes I don’t feel all that into everything all the time. Sometimes I use this hobby/job/phase of my life to distract myself from other aspects of my life. We all have our lows. I’ve been there. I doubt myself. I wonder what I’m doing.

In the end I’m just a curious dude. I studied philosophy and my favorite word when I was a seven year-old was why. Every profession I’ve taken up I’ve looked into the science, tried to hone my craft with a bit of flare. Perhaps I’m just in this particular game because I enjoy puzzles. This is just another phase in my life. Another chapter. Will the next chapter be tech. Maybe, but I’ll be equally immersed in whatever I’m doing because as I’ve come to find out that’s just the kind of guy I am.

All Good Things Must Come to an End

Like this blog post.

If you feel something in your heart is pulling you, I’d say follow it, and give it your entire heart. This might not be it for you or maybe it isn’t for you ‘right now.’ I’m not super into long term goals. For me, I focus on daily routines. What do I like to do? Spend time with my family? Yes, put it in the routine. Read? Yes, put it in the routine. Run? Yes, put it in the routine. I control each day, as much as one can, and put my effort in things I enjoy. Where will this get me in 10-20 years? I don’t know career wise, but I know I will have been an active parent who attempted to do his best on any given day.

As with journeys, i’ll see you around the bend, until next time. If you see me, say hi.

Basic NBA Data Parsing with Python

About eight weeks ago I saw John Capobianco and Tim Bert were holding an online meeting about trying to pull down some NCAA football data using an API. I, myself, finally finished up the last certification exam I’ve had on my plate shortly thereafter. Since then, I’ve taken to doing a little bit of DataCamp and CloudAcademy each day.

DataCamp has a python track that teaches you the basics of python while adding in some packages a data scientist may use along the way, specifically, numpy and pandas. I’m square in the middle of DataCamp’s ‘intermediate python’ course.

Then, like a shower whose water never gets warm, I thought to myself, why not try and do some stuff with NBA data while going through the examples and practice during the course. So here we are 🙂

As the title says, this is going to be ‘basic’ as i’m just beginning and truth be told, i’ll prob do some non best practices going forward in this post. This is what learning in public looks like.

Getting Some Data

If I’m going to parse some data using what I’ve been presented thus far in my training, I need some data. In my current lesson we are doing basic data parsing with pandas series objects and pandas dataframe objects. I took to the googleverse and found an interesting github repo. This python package was created to make it easier to interact with stats.nba.com APIs. To install:

pip install nba_api pandas requests

From here it’s all about figuring out a bit from the documentation found on the github I linked above. Jimmy Butler is my current favorite NBA basketball player so the first thing I need to find out is his PLAYER_ID so I can use it to get further info on him.

>>> from nba_api.stats.static import players
>>> players.find_players_by_full_name('jimmy butler')
[{'id': 202710, 'full_name': 'Jimmy Butler', 'first_name': 'Jimmy', 'last_name': 'Butler', 'is_active': True}]

From the output, we can see that Jimmy Butler’s ‘id’ is 202710. I’ll use this when making my next call:

>>> from nba_api.stats.endpoints import playercareerstats
>>> Jimmy = playercareerstats.PlayerCareerStats(player_id=202710)
>>> print(type(Jimmy))
<class 'nba_api.stats.endpoints.playercareerstats.PlayerCareerStats'>

So, at this point we are almost there, just a little bit more mangling and we will get to the types of objects I need…I’m going to use the get_data_frames() function included in the nba_api and select the first table in this object with the ‘[0]’ and assign this to the variable ‘jimmy_panda’:

>>> jimmy_panda = Jimmy.get_data_frames()[0]
>>> print(type(jimmy_panda))
<class 'pandas.core.frame.DataFrame'>
>>> print(jimmy_panda)
    PLAYER_ID SEASON_ID LEAGUE_ID     TEAM_ID TEAM_ABBREVIATION  PLAYER_AGE  GP  GS     MIN  ...  OREB  DREB  REB  AST  STL  BLK  TOV   PF   PTS
0      202710   2011-12        00  1610612741               CHI        22.0  42   0   359.0  ...    23    33   56   14   11    5   14   20   109
1      202710   2012-13        00  1610612741               CHI        23.0  82  20  2134.0  ...   136   192  328  115   78   31   62   97   705
2      202710   2013-14        00  1610612741               CHI        24.0  67  67  2591.0  ...    87   243  330  175  127   36  102  106   878
3      202710   2014-15        00  1610612741               CHI        25.0  65  65  2513.0  ...   114   265  379  212  114   36   93  108  1301
4      202710   2015-16        00  1610612741               CHI        26.0  67  67  2474.0  ...    79   279  358  321  110   43  132  124  1399
5      202710   2016-17        00  1610612741               CHI        27.0  76  75  2809.0  ...   129   341  470  417  143   32  159  112  1816
6      202710   2017-18        00  1610612750               MIN        28.0  59  59  2164.0  ...    79   235  314  288  116   24  108   78  1307
7      202710   2018-19        00  1610612750               MIN        29.0  10  10   361.0  ...    16    36   52   43   24   10   14   18   213
8      202710   2018-19        00  1610612755               PHI        29.0  55  55  1824.0  ...   105   185  290  220   99   29   81   93  1002
9      202710   2018-19        00           0               TOT        29.0  65  65  2185.0  ...   121   221  342  263  123   39   95  111  1215
10     202710   2019-20        00  1610612748               MIA        30.0  58  58  1959.0  ...   106   280  386  350  103   32  127   81  1157
11     202710   2020-21        00  1610612748               MIA        31.0  52  52  1745.0  ...    94   265  359  369  108   18  109   71  1116
12     202710   2021-22        00  1610612748               MIA        32.0  57  57  1931.0  ...   102   234  336  312   94   27  121   88  1219

[13 rows x 27 columns]

Alright. We made it.

Finding Out Some Basic Info About our Data

Alright, above it says at the end of the output we have 13 rows x 27 columns. We definitely see the 13 rows but we don’t see anywhere close to 27 columns. Let’s see how we can see what the 27 column headers are, to do this i’m going to dtypes to see the info about each column in the table as shown:

>>> jimmy_panda.dtypes
PLAYER_ID              int64
SEASON_ID             object
LEAGUE_ID             object
TEAM_ID                int64
TEAM_ABBREVIATION     object
PLAYER_AGE           float64
GP                     int64
GS                     int64
MIN                  float64
FGM                    int64
FGA                    int64
FG_PCT               float64
FG3M                   int64
FG3A                   int64
FG3_PCT              float64
FTM                    int64
FTA                    int64
FT_PCT               float64
OREB                   int64
DREB                   int64
REB                    int64
AST                    int64
STL                    int64
BLK                    int64
TOV                    int64
PF                     int64
PTS                    int64
dtype: object

So this table we have is kind of exciting, at least for a first go at this, am I right?! We can now select to print off only certain columns in the output or slice only specific years of Jimmy Butler’s career or both. One way to do this is to use pandas and make sure the object we are dealing with is a DataFrame, allowing us to use all the options assoicated with this object type. Let’s see how we can accomplish this:

>>> pd.DataFrame(data=Jimmy.get_data_frames()[0], columns=['SEASON_ID', 'PTS', 'AST'])
   SEASON_ID   PTS  AST
0    2011-12   109   14
1    2012-13   705  115
2    2013-14   878  175
3    2014-15  1301  212
4    2015-16  1399  321
5    2016-17  1816  417
6    2017-18  1307  288
7    2018-19   213   43
8    2018-19  1002  220
9    2018-19  1215  263
10   2019-20  1157  350
11   2020-21  1116  369
12   2021-22  1219  312

###
Above we basically changed the Jimmy object into the Data
Frame object we want to play with.  It's the same as doing
what's below because we've already assigned 'jimmy_panda' and
made sure it was a Pandas Data Frame
###

>>> pd.DataFrame(data=jimmy_panda, columns=['SEASON_ID', 'PTS', 'AST'])
   SEASON_ID   PTS  AST
0    2011-12   109   14
1    2012-13   705  115
2    2013-14   878  175
3    2014-15  1301  212
4    2015-16  1399  321
5    2016-17  1816  417
6    2017-18  1307  288
7    2018-19   213   43
8    2018-19  1002  220
9    2018-19  1215  263
10   2019-20  1157  350
11   2020-21  1116  369
12   2021-22  1219  312

Or, an even simpler way to select columns, since we know ‘jimmy_panda’ is of the data type we need:

>>> print(jimmy_panda[['SEASON_ID', 'PTS', 'AST']])
   SEASON_ID   PTS  AST
0    2011-12   109   14
1    2012-13   705  115
2    2013-14   878  175
3    2014-15  1301  212
4    2015-16  1399  321
5    2016-17  1816  417
6    2017-18  1307  288
7    2018-19   213   43
8    2018-19  1002  220
9    2018-19  1215  263
10   2019-20  1157  350
11   2020-21  1116  369
12   2021-22  1219  312

Alright, that was fun, let’s see how we can slice a specific year (row) out of this chart (how did i figure out how to do this you ask, I checked the pandas loc docs):

>>> jimmy_panda.loc[jimmy_panda.index[[12]], ['SEASON_ID', 'PTS', 'AST']]
   SEASON_ID   PTS  AST
12   2021-22  1219  312

Let’s Compare

Now that we’ve seen we can pull out specific columns, rows and the like, we can now decide to do so based on certain thresholds. For example, it maybe useful to know only the years Jimmy Butler shot over 30% from 3-point range.

The first step we need to do is figure out which column we will be using to do our comparison, specifically, which column represents 3 point percentage. We can scroll up and look at the output of our dtypes command or do it again:

>>> jimmy_panda.dtypes
PLAYER_ID              int64
SEASON_ID             object
LEAGUE_ID             object
TEAM_ID                int64
TEAM_ABBREVIATION     object
PLAYER_AGE           float64
GP                     int64
GS                     int64
MIN                  float64
FGM                    int64
FGA                    int64
FG_PCT               float64
FG3M                   int64
FG3A                   int64
FG3_PCT              float64
FTM                    int64
FTA                    int64
FT_PCT               float64
OREB                   int64
DREB                   int64
REB                    int64
AST                    int64
STL                    int64
BLK                    int64
TOV                    int64
PF                     int64
PTS                    int64
dtype: object

Alright, we can see we will be working with the ‘FG3_PCT’ which is the object type float. Next let’s check out the specific values we will be comparing, specifically, we are going to check which years Jimmy Butler shot the 3-ball better than 30%.

>>> jimmy_panda.loc[:,"FG3_PCT"]
0     0.182
1     0.381
2     0.283
3     0.378
4     0.312
5     0.367
6     0.350
7     0.378
8     0.338
9     0.347
10    0.244
11    0.245
12    0.233
Name: FG3_PCT, dtype: float64

Alright, now to see which years he shot beyond 30%; to do this we will simply add the operator at the end of the statement above:

>>> jimmy_panda.loc[:,"FG3_PCT"] > 0.300
0     False
1      True
2     False
3      True
4      True
5      True
6      True
7      True
8      True
9      True
10    False
11    False
12    False
Name: FG3_PCT, dtype: bool

Every ‘True’ is when Jimmy shot better than 30% and every false is when he failed to do so. Next, i’ll show a series of commands. First, i’ll assign the variable FG3_is_good to the comparison and then use that variable as an index. Lastly I’ll use the value_counts() function to see how many ‘True’ or ‘False’ in total, so you can see how many years he was better than 30% and how many years he was not.

>>> FG3_is_good = jimmy_panda.loc[:,"FG3_PCT"] > 0.300
>>> print(type(FG3_is_good))
<class 'pandas.core.series.Series'>

>>> jimmy_panda[FG3_is_good]
   PLAYER_ID SEASON_ID LEAGUE_ID     TEAM_ID TEAM_ABBREVIATION  PLAYER_AGE  GP  GS     MIN  ...  OREB  DREB  REB  AST  STL  BLK  TOV   PF   PTS
1     202710   2012-13        00  1610612741               CHI        23.0  82  20  2134.0  ...   136   192  328  115   78   31   62   97   705
3     202710   2014-15        00  1610612741               CHI        25.0  65  65  2513.0  ...   114   265  379  212  114   36   93  108  1301
4     202710   2015-16        00  1610612741               CHI        26.0  67  67  2474.0  ...    79   279  358  321  110   43  132  124  1399
5     202710   2016-17        00  1610612741               CHI        27.0  76  75  2809.0  ...   129   341  470  417  143   32  159  112  1816
6     202710   2017-18        00  1610612750               MIN        28.0  59  59  2164.0  ...    79   235  314  288  116   24  108   78  1307
7     202710   2018-19        00  1610612750               MIN        29.0  10  10   361.0  ...    16    36   52   43   24   10   14   18   213
8     202710   2018-19        00  1610612755               PHI        29.0  55  55  1824.0  ...   105   185  290  220   99   29   81   93  1002
9     202710   2018-19        00           0               TOT        29.0  65  65  2185.0  ...   121   221  342  263  123   39   95  111  1215
>>> FG3_is_good.value_counts()
True     8
False    5
Name: FG3_PCT, dtype: int64

One funny thing that jumped out at me is that Jimmy has been unable to shoot better than 30% from three after the age of 30. Interesting. Furthermore, we can easily conclude Jimmy has shot better than 30% from 3 61% of the seasons he’s played thus far.

Playoff Jimmy has been said to be a thing. One aspect of this is that he shoots better from three in the playoffs as well. We can use the same format as we did above to quickly figure out his percentage. Jimmy Butler’s playoff stats happen to be [2] index of the original ‘Jimmy’ object we pulled down using the nba_api:

>>> print(Jimmy.get_data_frames()[2])
   PLAYER_ID SEASON_ID LEAGUE_ID     TEAM_ID TEAM_ABBREVIATION  PLAYER_AGE  GP  GS    MIN  FGM  FGA  FG_PCT  ...  FTM  FTA  FT_PCT  OREB  DREB  REB  AST  STL  BLK  TOV  PF  PTS
0     202710   2011-12        00  1610612741               CHI        22.0   3   0    4.0    0    0   0.000  ...    0    0   0.000     0     0    0    0    0    0    0   1    0
1     202710   2012-13        00  1610612741               CHI        23.0  12  12  490.0   50  115   0.435  ...   45   55   0.818     9    53   62   32   15    6   16  26  160
2     202710   2013-14        00  1610612741               CHI        24.0   5   5  218.0   22   57   0.386  ...   18   23   0.783     6    20   26   11    6    0    3  13   68
3     202710   2014-15        00  1610612741               CHI        25.0  12  12  506.0   94  213   0.441  ...   59   72   0.819    18    49   67   38   29    9   21  27  275
4     202710   2016-17        00  1610612741               CHI        27.0   6   6  239.0   46  108   0.426  ...   38   47   0.809     9    35   44   26   10    5   15  10  136
5     202710   2017-18        00  1610612750               MIN        28.0   5   5  170.0   28   63   0.444  ...   15   18   0.833     3    27   30   20    4    1    5   9   79
6     202710   2018-19        00  1610612755               PHI        29.0  12  12  421.0   79  175   0.451  ...   63   72   0.875    22    50   72   62   18    7   22  20  233
7     202710   2019-20        00  1610612748               MIA        30.0  21  21  806.0  144  295   0.488  ...  164  191   0.859    46    90  136  127   41   14   59  37  467
8     202710   2020-21        00  1610612748               MIA        31.0   4   4  154.0   19   64   0.297  ...   16   22   0.727     6    24   30   28    5    1    9   6   58
9     202710   2021-22        00  1610612748               MIA        32.0  17  17  629.0  166  328   0.506  ...  111  132   0.841    41    84  125   78   35   11   25  25  466

Now I can quickly assign this to a variable so I can interact with it as a pandas object.

>>> Playoff_Jimmy = Jimmy.get_data_frames()[2]
>>> Playoff_Jimmy.loc[:,"FG3_PCT"] > 0.300
0    False
1     True
2    False
3     True
4    False
5     True
6    False
7     True
8    False
9     True
Name: FG3_PCT, dtype: bool
>>> Playoff_Jimmy.loc[:,"FG3_PCT"]
0    0.000
1    0.405
2    0.300
3    0.389
4    0.261
5    0.471
6    0.267
7    0.349
8    0.267
9    0.338
Name: FG3_PCT, dtype: float64

Kind of funny that Butler has a perfect True False pattern throughout his playoff career. Also, as with anything in IT there are at least 25 ways to do the same thing, the more you learn. Above I was able to pull the “FG3_PCT” for each row. Here is another way to do the same thing using a for loop:

>>> for column, row in Playoff_Jimmy.iterrows():
...     print(str(row['SEASON_ID']) + ' 3ptfg%: ' + str(row['FG3_PCT']))
... 
2011-12 3ptfg%: 0.0
2012-13 3ptfg%: 0.405
2013-14 3ptfg%: 0.3
2014-15 3ptfg%: 0.389
2016-17 3ptfg%: 0.261
2017-18 3ptfg%: 0.471
2018-19 3ptfg%: 0.267
2019-20 3ptfg%: 0.349
2020-21 3ptfg%: 0.267
2021-22 3ptfg%: 0.338

Conclusion

Well, if you read this far you realized we didn’t do anything mind bending. I suppose writing this out and doing the same type of practice activities I’m doing in my DataCamp course on some data I pulled down myself helped me learn quite a bit more than simply going only through the course.

I’ve always enjoyed doing data parsing in Linux. I’ve mentioned in previous blog posts how much I’ve enjoyed doing log parsing on the Linux shell using cut, grep, awk, uniq and sort to break down logs. This data science stuff seems to tickle a bit of that same excitement. I’m also excited to continue this project. Specifically, making visualizations should be fun, and i’m sure i’ll check back in here once I make it that far. I’ve seen some people plot shot charts as well, which would be a fun little side quest. I imagine a site like statmuse.com does a lot of what’s shown here behind the scenes when you ask a question.

See y’all around the bend.

Sharkfest22 Kansas City Review

I was scrolling through twitter.com and saw a post about a new podcast, ‘Sharkbytes‘ hosted by Roland Knall. The first episode is an interview with Betty DuBois and Sasha Mullins-Lassiter. In the interview, Sasha goes over her experience getting into cyber security and attending Sharkfest. This got me reminiscing, Sharkfest was my first ever ‘in-person’ tech conference and I don’t think I could have had a better experience.

Gerald Combs giving Day 1 keynote

Why write a retrospective? Well, I want more people on the fence, thinking about going to perhaps read this while they are researching and end up pulling the trigger. I remember before I attended I saw Denise Fishburne’s ‘review’ of Sharkfest on her YouTube channel Networking with Fish. Now I will never be as charismatic as Ms. Fishburne or on a podcast with Roland so I’ll fill this page with words behind my keyboard 🙂

Pre-Conference Classes

A great way, as it turns out, to lower any pre-conference social anxiety issues is to attend the pre-conference classes. My first class of two classes was titled ‘Introduction to Packets-How to Capture and Analyze with Wireshark’ and I simply couldn’t wait.

Before we even entered the class, we had a catered breakfast just outside of the classroom in a fairly fancy hotel in downtown Kansas City. Upon finishing, making sure to refill on my coffee, I entered the class to be met with one of the nicest people I’ve ever met in tech, my instructor, Betty DuBois. At my desk I had a notebook with sharks on it, Wireshark pens and a place to plug my laptop into. All in all I think we had less than 20 students in this two day ‘get to know’ Wireshark course.

The main point of this course was to try and take everyone, from where ever they are at skillset wise, and set them up for success during the following course and the conference itself. Highlights being a few hands on labs and most importantly all the ways in which to make your pcap sing by creating specific profiles for specific types of traffic within Wireshark.

Each day in these courses we all ate together around big tables, rubbing shoulders with the Wireshark development team as well as fellow students. It being such a small group you can’t help but feel included, no matter how nervous you might be on the inside. As mentioned before, these small groups helped ease the transition as we got a little more crowded in the second pre-conference course I attended ‘Cyber Threat Hunting with Wireshark’ taught by Chris Greer.

This course doubled in size, we had to be getting close to 40 people in the room. Chris had on a microphone and it seemed as though we were gearing up so to speak. The course was great with every lecture leading into a hands on lab. I took away some major advantages of pcapng vs pcap file structure as well as getting some practice using Betty’s profiles to quickly solve some lab challenges. Besides using Wireshark I tried to solve every lab using tshark, the cmd line version of Wireshark, as well.

After this one day course, we had a kickoff dinner. All the food that was catered was very good. I was continually surprised each meal of each day. I’ll discuss finances later, but will mention here that breakfast and lunch were included on pre-conference class days and then lunch and dinner was included on conference days (dinner with an open bar mind you).

The kickoff dinner was the first time you start to see a bigger group. But, in talking to the other attendees this is still a very small conference. I’d guess we had maybe 100 – 150 people at the opening night dinner and talk. Having met people during my two pre-conference classes I felt as though I already made connections and had conference friends. No awkward ‘all these people i don’t know’ feeling ever crept in. Like Sasha mentioned in the SharkBytes podcast, I felt like I belonged.

The Conference

The conference had three options for every time block with each time block consisting of about 90 minutes. So we had two talks before lunch and then two talks after lunch. As an attendee you get to decide which talk interests you the most, or mosey around the snack table, whatever suits you.

One of the main highlights was that I got to meet Tony Efantis. I’d been following him online since he started posting streams about his CCIE journey. Getting to know him a bit online before the conference as I’ve done with quite a few people over the last 3-4 years, Tony was the second person after A.J. Murray whom I got to connect with in person. Come to find out, our jobs are pretty closely aligned as he works on the hardware that the Air Force uses to do Defensive Cyber Operations.

Tony Efantis giving a talk titled “Build your own: Remotely accessible packet-capture drop box for troubleshooting networks <$100”

Besides Tony, if I had to give awards out to my favorite talks they would be Josh Clark’s “Troubleshoot like a doctor” on the first day. The attention to detail on the presentation and its foundational approach both moved me. In summary, this talk gave an illustration on how a doctor goes through training and then quickly makes choices on what to do with a patient and then he seamlessly ties this into how we could do this with IT troubleshooting. Taking into account that doctors have honed their troubleshooting methodology for way longer than IT has been a thing and it’s this experience he believes we can take from and apply to IT troubleshooting.

Another talk that has stayed with me was Mike Kershaw’s talk about software defined radio magic stuff on the last day! My current position in the Air Force deals mainly with different kinds of RADAR data sets and having Mike discuss ADS-B got me all excited. It was only a 90 minute talk but I enjoyed how he went from how to initially capture the traffic from the air to trying to make something meaningful out of it. Wireless technology has always been one of my weakest points but the things Mike is able to do make me want to get better in this field for sure!

The last person I’d give a special speaking award is Hansang Bae. He gave a talk on troubleshooting I believe, I don’t even recall the name of the course. I remember he was using a Remarkable2 for his presentation. Something I’ve been looking at purchasing for a long time and this was my first ever time seeing it in person. Mr. Bae was using it to draw or illustrate his point during his lecture. The way he was able to tell where a specific server was based on the time it took it to respond was the first thing that blew me away. I’ll admit the talk may of been a tad too advanced for me, but seeing him carve a pcap, make quick determinations, I knew I was in the presence of greatness.

Beyond the talks, I was most enthralled in Sake Block’s CTF. I believe this went live the first morning of the conference and ended the morning on the last day. I diligently worked through every challenge. Seemed as though this CTF was made for me difficulty wise. The prompts were difficult but not so difficult I wanted to dispose of my laptop in the nearest trash receptacle. Every break and meal I was following Sake around, probably annoying the shit out of him, looking for ways to accomplish whatever flag I was on and share with him the excitement of previous flags I finally got. I ended up clearing all but one flag by the time the buzzer sounded and placed 4th overall. Staying up to 2 am each night working on flags almost won me a trophy, if it wasn’t for those pesky online attendees, I would’ve been second behind Chris Greer. NEXT TIME!!! 🙂 But in all seriousness, Sake Block was a huge part of this conference for me. At the end of the conference I felt like I jived well with all the people whom trekked over from Europe.

Economics

Cost of Sharkfest

Sharkfest + All Pre-Conference Classes is just shy of $3,000. As mentioned above some food is also included, about 12 meals. In addition to paying for the conference you’ll need to secure air fare and lodging. So a total cost under $4500/person is very reasonable for those living within the US. Looking at the bigger conferences like CiscoLive I think you’ll see this cost is very good for what you end up getting.

Conclusion

I think this is a very good value given the content and atmosphere. From the small size of the conference to it being centered around an open source project, the feeling of inclusion and the lack of a feeling like someone trying to sell me something the entire time can not be overstated. The atmosphere was one of learning, especially the fundamentals as well as inclusion.

We all belong in tech.

Ep 102 – Deep Dive in Fiber Optics

In this episode, we chat with Iain Geddes, a Network Reliability Engineer that understands Fiber Optic networking at a deep level. We deep dive with Iain on how Fiber Optics works!

Download Iain’s slides from the show: Optical 101

More from Iain:
Twitter: https://twitter.com/NetworkDoozer
LinkedIn: https://www.linkedin.com/in/iaingeddes/

Check out our Patreon – https://www.patreon.com/artofneteng
Follow us on Twitter https://twitter.com/artofneteng​
Follow us on Instagram https://www.instagram.com/artofneteng/
Like us on Facebook https://www.facebook.com/artofneteng
Join the group on LinkedIn https://www.linkedin.com/company/artofneteng/
Check out our website https://artofnetworkengineering.com
Merch Store – https://artofneteng.com/store
Join the Discord Study group – https://artofneteng.com/iaatj

GNFA, GCFA, eCDFP, CySA+ & Pentest+

It’s been so long since I’ve sat down to write a blog post. I’ve conferred with Aninda Chatterjee on my lack of motivation to write, where did it go and if it would ever come back again numerous times with months in between. To be completely honest, the drive to do tutorial type stuff just isn’t there. I’m planning to embark on some Kube learning soon, so maybe that could spark something. Time will tell…

So what have I been up to in the last, say, 10 months since my last post? Well, a lot! I’m deep into trying to be a cyber analyst at work, perhaps trying to get fully onboard at a Cyber Operations Squadron (Air Force). In sharpening my skills at work I’ve also continued to study and take exams in my free time as noted by the title of this post.

In the following, I plan to take you on a round robin discussion of the courses and exams I’ve taken since I’ve last checked in, let you know what I think and cap it all off with what comes next. Always looking with an eye toward the future 🙂

GIAC Network Forensic Analyst (GNFA)

The GNFA is the exam associated with the SANS FOR572 course. I chose to do the ‘On-Demand’ version taught by Phillip Hagen. I really like the On-Demand format. From the content broken into smaller, easy to consume videos, to the digital book associated with lecture side-by-side, to the easy navigation, to the mobile App. It doesn’t miss and it shouldn’t given the course is now garnering an $8k+ price tag.

Before taking SANS FOR572 I completed SANS SEC503, which I’d recommend as a precursor if you are a bit new to the field. SEC503 spent a good amount of time going through how to use a certain tool whereas FOR572 assumed such knowledge and really hit the ground running using the same tools and spent most of its instruction in the actual analysis of the output. So it felt really good to feel like I was building upon a foundation started from a previous course and ‘advance’ into ‘doing the job’ type scenarios.

Scenarios, that’s one word to describe FOR572. Scenario! Everything you do deals with a specific, elaborate scenario. You are called in to a company, given network maps, logs from certain devices and start logging all your findings a long the way. Hands on learning from a large data set, allowing you to go far beyond what’s outlined in the lecture or in the lab. This is where SANS shines in my opinion. Not to discount the lecture, as I think that’s top quality as well, but the thought that goes into the scenarios, the lab book and how it’s so nicely put together is something I’ve not seen another vendor come close to (I know, I know, it costs $8k+).

I felt fairly confident going in to take the GNFA on exam day. I began studying networking, built upon what I learned in SEC503, I was ready! This exam turned out to be all multiple choice if I’m remembering correctly, no lab questions. Still, all the questions were paragraphs were you are deciphering log information to come up with conclusions about the data set. My brain was on fire at the end of the 3 hours. I passed the exam with an 80%. Lower than I expected but, like mentioned above, most of the course and this exam was not about knowing and using a specific tool, it was about being able to say things about the output.

Talk about leveling up. I feel as though if I were to relate this to my collegiate learning I’d say I learned as much in 4 months studying FOR572 as I did a whole year in college taking a full load. Furthermore, it’s at this point I think my confidence also begins to show through a bit more in the workplace. I’m beginning to share my opinion more in meetings (and I have a bit of experience to base my opinions on…).

CompTIA CySA+

I’m assuming if your reading this, you have an idea of what the Art of Network Engineering community is. If not, they do a podcast but even better, they have a discord. In the discord people talk about coffee, grilling meats and travel (that’s the channels I mostly check). Additionally, there are channels for studying/discussing specific technologies, sharing employment advice and simply lifting each other up.

One day I saw a post from someone offering up a CompTIA exam voucher. I reached out and a few minutes later I was signed up for the CompTIA CySA+ exam. This gentlemen, who I will not mention by name so he doesn’t get swarmed with free voucher requests, supplies CompTIA with exam questions for certain exams as a side hobby. In return, sometimes CompTIA gives him exam vouchers and he was simply passing this one on.

To study for the exam, I looked quickly at what was available on one of my favorite learning sites: O’Reilly. Each module and topic, after a quick skim, looked familiar. It was at this point I moved my exam up and said to myself “I’m already doing the job, let’s just go take the exam.” So, in short, I didn’t study at all.

The exam itself, I called it fair, insofar as I passed. My logic was that I’m doing the job and in my mind I’m ‘doing the job’ at a fairly high level, pat myself on the back. So, passing the exam would simply validate the skills and knowledge needed and since I passed everything seems to have lined up.

I wish I could give a more, if your just starting out is this worth it, type of opinion but I can’t really view this exam from that perspective, since it isn’t mine. I took to learn networking, learn some networking implementation and then some network design and then I got into cyber. The culmination of 4 years of studying on my own made this exam a pretty easy endeavor.

Beyond just passing an exam, this opportunity helped me garner all the required CEUs to renew my required Security+ certification for my current employment with the Air Force. So I wasn’t just out here passing an exam for no reason! 🙂

CompTIA Pentest+

So I quickly conferred with the person that gave me the previous CompTIA voucher my thanks and that I passed the CySA+. He replies back that he has another voucher…

Interesting.

I believe we are now into February 2022. At work, I’m getting ready to start a cyber exercise called Cobra Gold. In this exercise, I was to be a ‘red team’ member and provide cyber effects to teams defending a network and specific devices within their network as if I were an adversary.

This exercise started off with four days of academics, of which, I even taught a 90 minute course on ‘Linux Host Hardening’ but I had very little experience in offensive tools or techniques. So I had a bit to learn in a week to be a good adversary! This backdrop, and receiving another voucher prompted me to study for specific topics covered in the Pentest+ exam while I study, prepare and execute my tasks associated with my part of the Cobra Gold exercise I’m doing for work.

The main things I implemented and used was Metasploit, nmap and all the impacket tools. Not an exhaustive list by any means, but I had two weeks! One week focused simply on learning and another week implementing my attack. Have to start somewhere!

As mentioned in the exam above, I went back to O’Reilly to fill in the gaps on specific exam topics I wasn’t able to tackle during the work exercise. As far as the Pentest+ exam goes, getting the hands on practice with nmap and Metasploit payed off immensely. Knowing all the nmap options might even be a quarter of the exam, ok, maybe not that much but it’s there for sure!

I would call this exam very entry level as well after taking it. I studied for about two weeks and passed very easily. Again, I do have a lot of other types of experience beyond the two weeks I focused on it, so I’m not saying it’s ‘that’ easy. Now that I think of it, and I’m two CompTIA exams into this post, I haven’t really seen much content on exams from the point of view of a mid to advanced career. I mean people do posts on them that are, but I have to give them more credit on being able to empathize with how it relates to people ‘just starting out’ cause that is not as easy it seems.

GIAC Certified Forensic Analyst (GCFA)

Man. This was a tough one. Just looking at that heading I’m taken a back by the amount of work went in to me barely passing this exam. I just passed this exam a couple of weeks ago, which means, I started this course about 4 months ago. The GCFA is associated with the SANS FOR508 course.

For this course I decided to try the ‘Live Online’ format. Quick recap, I don’t like it as much as the On-demand format. One good thing, work allowed me some time away to do the Live-Online format that was not allotted to me when doing the On-demand format. But content wise, not the best for my learning.

First off, the course pace is FAST! I took this course because I’m mostly comfy with networking, including on the cyber side. This course was about learning about host artifacts. Something I knew very little about. By the end of day two my mind had melted and was on the floor. The lecture by day three, while I could hear words coming out of the speakers, they washed over me like a warm shower at the end of a long day. I knew something was happening but my mind was in a completely separate place, unable to make sense of much beyond day 2. I had trouble catching up at night as my dad duties were far too great for the amount of content I needed to grasp before the next day.

The next thing I don’t like in the Live-Online format is how the recordings of your lecture are laid out. They are simply an 8-9 hour video, unedited in your browser, breaks and lunch included. The connection would time out after a couple of hours and I’d have to reload my page and try to skip to were I’d left off. It just wasn’t ideal. I ended up going through the MP3s associated with the course over trying to deal with the recordings of my lecture as they were edited and in smaller more manageable chunks.

The labs, like all previous SANS courses, were off the charts. There were some 60+ specific tools discussed in the course and you had so much data, including full images, forensic images etc. to run them on. So many tools and so many different kinds of artifacts. A crash course unlike anything I’ve ever experienced. Like FOR572, the labs for FOR508 use the same org but you have a completely new set of evidence so that you can learn how to analyze hosts. The labs built off each other as well. You are able to take what you learned from one tool as a starting point as we examine evidence from another tool or data set.

After going through the course, going through the course again with the MP3s, going through the course again by reading all the books, going through all the labs a few times I didn’t think I had any chance of passing the associated exam. I NEEDED TO CREATE A VERY GOOD index if I was to get anywhere close to passing.

On a GIAC exam, you are allowed to take any written notes, books, diagrams etc. in with you when you take your exam. Many people make an index, where they have a list of alphabetized key words associated with which book and page number to find it. So if you get a question about shimcache you can quickly find some relevant pages if you are stuck. I went through all the books again, reading each page, summarizing the page, and then adding any key terms to an index. This took about 2 weeks and I had around 900 entries in my index.

And when you go into the exam, there are about 85 questions and you have 5 books that are between 120-180 pages each. So you can’t really look up ‘every’ question. Even so, questions will often be framed with competing tools, viewpoints or ideas so you have to know more than one thing to get to what the answer should be. This exam also included a practical portion, where you get access to a VM and have to use some tools to come up with the correct answer. I much prefer these questions as they seem more straight forward.

I ended up passing the exam with a 76%, 72% was passing. While not impressive by merely looking at the score, just about everything I learned over the last four months was something I didn’t know or have experience with beforehand. Memory analysis was the most fun, most eye opening module to me. Didn’t know how many things you could find out by dumping someone’s RAM. Remarkable.

eLearnSecurity Certified Digital Forensics Professional (eCDFP)

Getting this exam voucher was akin to how I got my CompTIA ones. It’s not what you know it’s who know they say…Here a friend was not going to be able to use his voucher before the deadline due to commitments at work. So here comes me always willing to try my hand at an exam.

I choose to do the eCDFP over other eLearnSecurity exams due to the overlap with FOR508 and I was coming down to the wire of having to take the exam very soon. I signed up for the 7-day free trial to go through the associated course and I was on my way. Exam in seven days.

To say I had trouble with both the course and the exam would be an understatement. Half the labs for the INE course were ‘under maintenance’ and I wasn’t exactly blown away by having to go through some 1500 slides in seven days. The video lectures were short and didn’t really dive into any additional options with any of the tools discussed, very surface level. To INE and eLearnSecurity’s credit their support team was always there, responding quickly to whenever I needed help, mostly with the exam.

So the exam is a 24 hour timed 30 question test. 15 of the questions are typical multiple choice and 15 questions require you to connect to a lab network, perform tasks, analyze output to come up with the answer. I spent about 6 hours and 3 exam attempts simply trying to get properly connected to the lab environment. To note, I needed to install an OpenVPN client about 3-4 versions old to even connect. Then I had to hope that I was able to connect the the VMs in the exam lab environment. If you couldn’t connect, you’d have to reset the lab environment which took another 30 minutes. Very frustrating.

In any case, come the second restart on my third attempt (I was given another voucher due to my technical difficulties) everything was working perfectly. I correctly answered 28 out of 30 questions in about 4 and a half hours.

While this exam does have a lot of overlap with SANS FOR508, it digs a bit deeper into data acquisition from hard drives. How to decipher a MBR in a Hex editor and be able to make out partition tables/sizes and the like. So this wasn’t as simple to study for as the CompTIA exams mentioned above, I really had to dig in on a few modules. Whats more, even though they were trying to get at the same artifacts discussed in SANS FOR508, they were using completely different tools to achieve it. Feel as though I really became more of a pro with FTK imager in this course.

My main gripe with the exam beyond its lack of proper functionality is that it’s still on version 1. People have passed this exam since at least 2018, the same version. The linux machine was using Security Onion and I was using Wireshark version 1.12 which came out in 2014. I shouldn’t be using 2014 version of Wireshark in 2022…

So this exam, while the content is still ok, could use a bit of a refresh if only to fix what’s broken and bring in some new versions of the tools discussed and used. There’s a lot of additional functionality in even the tools discussed that could be of value. I’d like to see eCDFP version 2 come out before I fully endorse this exam and course.

Planning for the Future 🙂

Well were do I go from here??? I want to gain a deeper understanding and working knowledge of kubernetes so I think that might be the next big course I undertake. No associated exam, just in it to learn.

Beyond that, I just applied for a masters program in cyber defense at Dakota State University. Don’t think I can attend awesome SANS courses forever and they have a ‘technical track’ so I hope to be pushed and learn a lot here.

See you around the bend as we continue on this journey, till next time 🙂

Ep 101 – Netris

In this episode, we talk with Alex Saroyan, CEO and Co-Founder of Netris, VPC Networking for On-prem, Edge, and Bare Metal! We learn about how Netris can help us as Network Engineers.

Links:
Connect with Alex on Linkedin: https://www.linkedin.com/in/alex-saroyan/ 
Follow Alex on Twitter: https://twitter.com/alex_saroyan
Follow Netris on Twitter: https://twitter.com/netrisai
Try Netris: https://www.netris.ai/
Netris Videos: https://www.netris.ai/videos/ 
Netris Documentation: https://www.netris.ai/docs/en/stable/ 

Check out our Patreon – https://www.patreon.com/artofneteng
Follow us on Twitter https://twitter.com/artofneteng​
Follow us on Instagram https://www.instagram.com/artofneteng/
Like us on Facebook https://www.facebook.com/artofneteng
Join the group on LinkedIn https://www.linkedin.com/company/artofneteng/
Check out our website https://artofnetworkengineering.com
Merch Store – https://artofneteng.com/store
Join the Discord Study group – https://artofneteng.com/iaatj

Ep 100 – Community, Friendship, and 100 Episodes of AONE

This is episode 100 of The Art of Network Engineering! In this episode, we celebrate you our fans, the Network Engineer Community at large, and all the friends we’ve made over the last 100 episodes. Thank you!

Check out our Patreon – https://www.patreon.com/artofneteng
Follow us on Twitter https://twitter.com/artofneteng​
Follow us on Instagram https://www.instagram.com/artofneteng/
Like us on Facebook https://www.facebook.com/artofneteng
Join the group on LinkedIn https://www.linkedin.com/company/artofneteng/
Check out our website https://artofnetworkengineering.com
Merch Store – https://artofneteng.com/store
Join the Discord Study group – https://artofneteng.com/iaatj

Ep 99 – Mental Health 2

In this episode, Tim, Lex, and Andy talk about Mental Health and how they cope with it. Mental Health is a real problem in our industry as IT Professionals, as well as a serious problem around the world. Take the time for yourself and your mind. If you need help, get help and talk to someone.

Check out our Patreon – https://www.patreon.com/artofneteng
Follow us on Twitter https://twitter.com/artofneteng​
Follow us on Instagram https://www.instagram.com/artofneteng/
Like us on Facebook https://www.facebook.com/artofneteng
Join the group on LinkedIn https://www.linkedin.com/company/artofneteng/
Check out our website https://artofnetworkengineering.com
Merch Store – https://artofneteng.com/store
Join the Discord Study group – https://artofneteng.com/iaatj

Ep 98 – Jason Gooley Returns!

In this episode, Jason Gooely returns! With Tim at the helm, he is joined by two guest co-hosts. The first time we had Jason on the show it was a YouTube Live Stream and we were not able to release it as a regular episode. We are happy to be able to talk to Jason again and release this!

More from Jason:
Twitter: https://twitter.com/Jason_Gooley
Metal Devops: https://www.metaldevops.com/
AONE Live Stream: https://youtu.be/A9Umyi1PKkg

Check out our Patreon – https://www.patreon.com/artofneteng
Follow us on Twitter https://twitter.com/artofneteng​
Follow us on Instagram https://www.instagram.com/artofneteng/
Like us on Facebook https://www.facebook.com/artofneteng
Join the group on LinkedIn https://www.linkedin.com/company/artofneteng/
Check out our website https://artofnetworkengineering.com
Merch Store – https://artofneteng.com/store
Join the Discord Study group – https://artofneteng.com/iaatj

Ep 97 – Ramtin Rampour

In this episode, sponsored by Opengear, we talk to Ramtin Rampour. Ramtin is currently a Solution Architect at Opengear, but he started there as a warehouse employee packing and shipping units. His career journey is certainly one you don’t want to miss. Then we talk about the importance of Out-of-Band Management, and the Opengear Difference.

More from Ramtin:
LinkedIn: https://www.linkedin.com/in/ramtin-rampour-370b5843/

Check out our Patreon – https://www.patreon.com/artofneteng
Follow us on Twitter https://twitter.com/artofneteng​
Follow us on Instagram https://www.instagram.com/artofneteng/
Like us on Facebook https://www.facebook.com/artofneteng
Join the group on LinkedIn https://www.linkedin.com/company/artofneteng/
Check out our website https://artofnetworkengineering.com
Merch Store – https://artofneteng.com/store
Join the Discord Study group – https://artofneteng.com/iaatj

Ep 96 – Jeff McLaughlin

In this episode, we talk to Jeff McLaughlin a Sr. Director of Technical Marketing at Cisco. Jeff, Andy, and Lexie talk about working for large tech companies, network automation, and a whole lot more, in addition to Jeff’s career.

More from Jeff:
Blog: https://subnetzero.info/
Substack: https://subnetzero.substack.com/

Check out our Patreon – https://www.patreon.com/artofneteng
Follow us on Twitter https://twitter.com/artofneteng​
Follow us on Instagram https://www.instagram.com/artofneteng/
Like us on Facebook https://www.facebook.com/artofneteng
Join the group on LinkedIn https://www.linkedin.com/company/artofneteng/
Check out our website https://artofnetworkengineering.com
Merch Store – https://artofneteng.com/store
Join the Discord Study group – https://artofneteng.com/iaatj

Ep 95 – Kori Younger

In this episode, we chat with Kori Younger! Kori shares with us how she was inspired by her own mother to seek a job in tech. She also shares her recent experience landing a job at Cisco and pursuing her CCNA, DevNet Associate, and CCNP. Hear all that and more on this episode of AONE!

You can find more of Kori:
Twitter: https://twitter.com/CyberKori
Blog: http://totalpackets.com/

Check out our Patreon – https://www.patreon.com/artofneteng
Follow us on Twitter https://twitter.com/artofneteng​
Follow us on Instagram https://www.instagram.com/artofneteng/
Like us on Facebook https://www.facebook.com/artofneteng
Join the group on LinkedIn https://www.linkedin.com/company/artofneteng/
Check out our website https://artofnetworkengineering.com
Merch Store – https://artofneteng.com/store
Join the Discord Study group – https://artofneteng.com/iaatj

Ep 94 – Geoff Anderson – CCNA PM

In this episode, we interview Geoff Anderson, Program Manager for the CCNA Certification Program. Tim, Lexi, and Geoff talk about the program, how questions are selected for the CCNA question pool, the value the certification holds, and so much more!

You can find more of Geoff:
Follow him on Twitter: https://twitter.com/ganders2112
Check out his Blog: https://www.prodbistro.com

You can also find more information on Cisco official Certifications and Training Programs: https://www.cisco.com/c/en/us/training-events/training-certifications.html https://learningnetwork.cisco.com/s/certifications

Check out our Patreon – https://www.patreon.com/artofneteng
Follow us on Twitter https://twitter.com/artofneteng​
Follow us on Instagram https://www.instagram.com/artofneteng/
Like us on Facebook https://www.facebook.com/artofneteng
Join the group on LinkedIn https://www.linkedin.com/company/artofneteng/
Check out our website https://artofnetworkengineering.com
Merch Store – https://artofneteng.com/store
Join the Discord Study group – https://artofneteng.com/iaatj

Ep 93 – Adam Hill

This week we chat with Adam Hill. Adam is consulting engineer for an ISP. He helps customers connect their networks to the cloud, and ensures quality and highly available connections. Adam is extremely hard working and great at focusing his energy. Check out Adam’s motivational story!

You can find more of Adam:
LinkedIn: https://www.linkedin.com/in/adamehill87/

Check out our Patreon – https://www.patreon.com/artofneteng
Follow us on Twitter https://twitter.com/artofneteng​
Follow us on Instagram https://www.instagram.com/artofneteng/​
Like us on Facebook https://www.facebook.com/artofneteng
Join the group on LinkedIn https://www.linkedin.com/company/artofneteng/
Check out our website https://artofnetworkengineering.com
Merch Store – https://artofneteng.com/store
Join the Discord Study group – https://artofneteng.com/iaatj

Ep 92 – AONE Live Asheville!

In this episode, we were recording live at our event in Asheville. Check out our first-ever live event!

Check out our Patreon – https://www.patreon.com/artofneteng
Follow us on Twitter https://twitter.com/artofneteng​
Follow us on Instagram https://www.instagram.com/artofneteng/​
Like us on Facebook https://www.facebook.com/artofneteng
Join the group on LinkedIn https://www.linkedin.com/company/artofneteng/
Check out our website https://artofnetworkengineering.com
Merch Store – https://artofneteng.com/store
Join the Discord Study group – https://artofneteng.com/iaatj

AONE Announcement

You heard it here first! To get the pace of the show to a speed we can sustain, we’re going to start dropping episodes every other Wednesday. We appreciate all of our listeners!

Check out our Patreon – https://www.patreon.com/artofneteng
Follow us on Twitter https://twitter.com/artofneteng​
Follow us on Instagram https://www.instagram.com/artofneteng/​
Like us on Facebook https://www.facebook.com/artofneteng
Join the group on LinkedIn https://www.linkedin.com/company/artofneteng/
Check out our website https://artofnetworkengineering.com
Merch Store – https://artofneteng.com/store
Join the Discord Study group – https://artofneteng.com/iaatj

Ep 91 – Our First Time Recording Together!

This episode is the first time in our history we recorded together in the same room! A.J., Andy, Dan, and Lexie discuss their time in Ashville, what it’s like meeting each other for the first time, and then they recount the history of the podcast, and we also discuss its future. Unfortunately, Tim’s travel was delayed and he wasn’t able to join us for this recording.

Check out our Patreon – https://www.patreon.com/artofneteng
Follow us on Twitter https://twitter.com/artofneteng​
Follow us on Instagram https://www.instagram.com/artofneteng/​
Like us on Facebook https://www.facebook.com/artofneteng
Join the group on LinkedIn https://www.linkedin.com/company/artofneteng/
Check out our website https://artofnetworkengineering.com
Merch Store – https://artofneteng.com/store
Join the Discord Study group – https://artofneteng.com/iaatj

Smart Troubleshooting with PathSolutions

While troubleshooting issues is a fantastic skill to hone and practice, as network admins and engineers, it is not something we want to spend all of our time doing on a daily basis.  Rather than constantly working through trouble tickets and “keeping the lights on”, we would like to use as much of our time and energy as possible on more strategic efforts to help the business succeed. One staple of network operations is having some sort of a network monitoring solution.  In the most basic form of network monitoring, our requirement is that we need to know when a device or link is down, or if there is some blatantly large problem that we want to make sure we know about.  It can be a very rough feeling to have a network device at a site go down over the weekend, and completely miss it because there was no monitoring/alerting, which makes it an instant emergency Monday morning when the first person gets there and has to call in and report the issue.  That is a really important function of a network monitoring solution, but should we accept that as being enough?  With just satisfying this basic requirement, it still leaves a lot of time and effort on the network admins and engineers to troubleshoot issues that are not as cut-and-dried as a device being in an up or down state.  What if a network monitoring solution could be more than just firing on standard alerts which still force staff to spend time manually finding issues and correlating events?  What if we could tap into all of the intelligence that is just sitting in our network devices?  What if we could leverage our network devices as sensors to feed our monitoring solution with data, and in turn the monitoring solution is able to analyze and correlate all of this information to then not only alert on issues, but give suggested troubleshooting steps so we do not have to do all of that manually?  All of these “what ifs” are addressed by PathSolutions in their TotalView product.

What is PathSolutions TotalView?

PathSolutions TotalView is a network monitoring solution, but not just any network monitoring solution.  You can think of it as a combined monitoring solution and digital troubleshooting assistant.  TotalView can provide not just alerts about problems, but actual recommendations on troubleshooting next steps.  Rather than receiving an alert about packets loss, or potentially nothing at all if the issue is around slowness or poor performance, you could receive a message that looks like the following:

That message is very powerful for two reasons.  First, a junior or senior engineer has some direction on next steps to resolve an issue before having to log into any device and start information gathering and manually troubleshooting.  This is one of those “wins” that was brought up in the introduction.  TotalView can assist with initial troubleshooting so you do not have to spend the time and effort manually.  Secondly, the message above is powerful because the operations team can receive that alert and implement the recommended fix before an end user even reports the issue.  Let’s face it, sometimes people will just deal with an issue and accept the poor performance rather than report it as a problem.  Having this proactive visibility and assistance allows an IT operations team to provide real value to the organization they support.

How does TotalView work?

First off, a big claim to fame for TotalView is that it can be stood up and operational in less than twelve minutes.  TotalView consists of a lightweight Windows installer, and thus is designed to be implemented quickly and easily on a Windows virtual machine.  The solution is self-contained within that single VM installation.  There is no need for separate front end or database servers.  The PathSolutions stance on this is to provide a valuable network monitoring solution that does not take time and effort away from the IT operations teams to put a lot of care and feeding into the solution itself.  Once the server is up and running, it is to be configured with SNMP and SSH credentials, as well as relevant subnets to scan so that it can learn about all of the network devices in your environment.  TotalView can gain insights into Windows servers by leveraging WMI queries.  A benefit to subnet scanning is that once it is set up, it can catch new devices as they are implemented so that staff does not have to remember to manually add in new devices to the network monitoring solution.  Once TotalView has the subnet and credential information, it can continuously crawl the network to retrieve and correlate valuable operational information in your environment.

Troubleshooting Highlights from TotalView

Now, let’s take a look at the troubleshooting guidance from within the solution.  First off, from the main screen, we get a nice default breakdown of items like overall network health and charts of device manufacturers and different interface speeds in the environment.

Next, on the Network > Devices screen, we can see the environment inventory and start to see which devices are tagged as having issues, and drill in to see what specifically is at fault.  For example, in the demo environment, we can see that interface #4 on the Sauvignon switch has a peak daily transmit utilization of over 93 percent.

Further down on this screen, we see the TotalView Network Prescription that details the next steps to dig into this alert.

To highlight the power of the Network Prescription feature, here is another example.  A port on a switch is showing an error due to a high peak daily error rate.  Here are snippets of the Network Prescription section that can immediately point you in the right direction before even having to log into a device.

With this level of information and advice, we are empowered to resolve issues quickly and efficiently.

Unleash Your Full Potential

Are troubleshooting and fixing issues part of a network engineer’s life?  Of course they are, but we also need to find the time and energy to innovate and provide value to the businesses and customers that we support.  We cannot do that very well if we are constantly in break/fix mode, logging into device upon device gathering and correlating data manually to resolve each and every issue.  If we can tap into everything that our network already knows and get assistance with correlation and automated troubleshooting, we all win.  PathSolutions is here to help you unleash your full potential with TotalView.  Learn more at https://www.pathsolutions.com/

Ep 90 – Rocket Girl!

In this episode, we interview Lexie about her amazeballs new job as an Avionics Integration Engineer at Blue Origin and we count the times she says “I can’t really talk about that.” We think she’s seen the aliens, but we can neither confirm nor deny that claim.

More from Lexie:
Twitter: https://twitter.com/TracketPacer
Twitch: https://www.twitch.tv/tracketpacer

Check out our Patreon – https://www.patreon.com/artofneteng
Follow us on Twitter https://twitter.com/artofneteng​
Follow us on Instagram https://www.instagram.com/artofneteng/​
Like us on Facebook https://www.facebook.com/artofneteng
Join the group on LinkedIn https://www.linkedin.com/company/artofneteng/
Check out our website https://artofnetworkengineering.com
Merch Store – https://artofneteng.com/store
Join the Discord Study group – https://artofneteng.com/iaatj

Handling Toolbox Drama with NetAlly

As network/systems engineers and admins, the natural approach to something new is to start with training and understanding a new technology, job, project, or task.  This is a valid approach, but many times is only half the battle.  For practically any role, you not only need to understand the job and technology, but you also need to be able to leverage potentially many different tools to accomplish your mission on a daily basis.  Sometimes you may not have all the right tools in the toolbox to assist you in what you need to accomplish, and need to justify the expense to the organization to add those tools.  Other times, you may have so many different resources at your disposal that you need to determine what you really need at the ready to pack for the task at hand.  Throughout the rest of this article, we’ll explore this toolbox drama, some best practices to troubleshooting, and how NetAlly can help.

Troubleshooting/Testing Best Practices

A core competency of NetAlly’s physical testing equipment and software platforms is to help engineers and admins effectively test wired/wireless implementations and troubleshoot issues, starting at “Layer 1”.  This goes hand in hand with using the OSI Model as a way to approach troubleshooting and testing.  Following the OSI model gives a starting point when troubleshooting an issue.  It can help you efficiently apply a similar methodology framework consistently so that you can achieve similar results each time without falling into traps of glossing over a simple fix and making something more difficult than necessary.  Here are the categories of the OSI model:

  • 7 – Application
  • 6 – Presentation
  • 5 – Session
  • 4 – Transport
  • 3 – Network
  • 2 – Data Link
  • 1 – Physical

From a best practice standpoint, it makes sense to start troubleshooting and testing at the bottom of the OSI model, with the physical layer, and working your way upward.  This gives you not only a good, repeatable starting point, but also keeps you from missing common physical layer issues, such as cabling and radio frequency problems (coverage and/or interference issues).  NetAlly lives in the Physical Layer with their wired and wireless testing products, with an AutoTest and other diagnostics that aid your troubleshooting to Layer 7.

NetAlly’s Tools of the Trade

NetAlly offers a wealth of both hardware and software testing tools to help you implement and troubleshoot wired and wireless networks.  From testing newly installed copper cabling, to troubleshooting a reported wireless coverage issue, NetAlly has you covered.

The wired test and analysis tools include:

  • LinkRunner® 10G – Advanced Ethernet Tester
    • Testing of 1 Gbps, Multi-Gig, and 10 Gbps copper and fiber Ethernet implementations.
    • Layer 1-7 AutoTest to easily find network issues within any part of the stack.
    • Monitor for issues over time up to 24 hours to help catch those intermittent problems.
    • Validate up to 90W PoE implementations.
  • LinkRunner® G2 – Smart Network Tester
    • Enhanced AutoTest diagnostics for copper and fiber Ethernet networks.
    • Validate up to 90W PoE implementations.
    • Discover nearest switch information with CDP/LLDP/EDP.
  • LinkSprinter® Pocket Network Tester
    • Fast and easy network connectivity tests for copper Ethernet links.
    • Discover nearest switch information with CDP/LLDP/EDP.
    • Validate 802.3af and 802.3at PoE implementations.
  • LinkRunner® AT – Network AutoTester
    • Fast and easy network connectivity tests for copper and fiber Ethernet links.
    • Discover nearest switch information with CDP/LLDP/EDP.
    • Validate 802.3af and 802.3at PoE implementations.

The wireless test and analysis tools include:

  • AirCheck™ G2 – Wi-Fi Tester
    • One-button AutoTest to quickly provide a pass/fail score of Wi-Fi quality.
    • Visualize available Wi-Fi networks.
    • View valuable information such as utilization, noise level, throughput, potential rogue devices, and interferes.
    • Test the different Wi-Fi standards.
  • AirMapper™ Site Survey
    • Create visual heat maps for Wi-Fi analysis.
    • See SNR, noise, and interference measurements right on the handheld display of your NetAlly product.

For one tool to rule them all, NetAlly offers a wired and wireless testing option with the:

  • EtherScope® nXG – Portable Network Expert
    • Testing options for Ethernet, Wi-Fi, and Bluetooth/BLE deployments.
    • Ethernet testing available up to 10 Gbps.

On top of all of these solutions, NetAlly also provides the Link-Live™ Collaboration, Reporting, and Analysis Platform to pull in all of the results and data from your network testing gear for further analysis. Link-Live™ provides the following features and benefits:

  • Free cloud platform enabling collaboration on validation and testing projects.
  • Generate Wi-Fi heatmaps on the NetAlly physical testing equipment and upload them to Link-Live™.
  • Easy report generation.

Tool Proliferation and Efficiencies

As you can see, NetAlly provides many different tools for many different scenarios and use cases.  Sometimes it can be difficult to determine which tools make it into the tool bag (and yes, NetAlly has their own tool bags as well) for a specific task, incident, or project.  I feel like you need to strike a nice balance between “prepared for absolutely anything possible” and “I had to make seven trips back and forth because I never had the right gear for the job”.  I will not say that this is an easy feat, especially if you are in a hurry because something important is broken.  Again, you want to be reasonably prepared for what may come your way, but you also want to make sure you are comfortable as well.  I used to struggle with this.  There was one point that I was carrying around switch stack cables and a spare wireless access point in my bag wherever I went.  With all the other gear I had in there, I’m not sure I want to know how much that bag weighed at its peak.  Did I ever actually need either of those in a pinch?  No, I don’t think so.  This all being said, don’t fret.  Knowing what you need and selecting the right gear for the specific situation will come with time and practice.  You’ll start thinking about what-ifs and caveats while you’re getting ready for a task.  Just remember to continue to learn from what goes well, and sometimes even more importantly, what doesn’t go well.

Tool-ing Up

It is definitely important to not only have the proper tools of the trade, but also know how to use them.  For NetAlly’s suite of tools, they have your back with product videos and webinars right there on their website.  Also, refer to this report understanding the tools and trends for smarter network management.

Ep 89 – SheNetworks

In this episode, we interview SheNetworks, aka Serena. Serena is most known for her work on TikTok as a content creator where she makes 60-second videos mostly focused on Network Engineering. Serena has spent years working as a Cisco TAC Engineer. During her time in TAC, she got some of the best experiences anyone can get. She learned to work in very high-pressure situations. As of this recording, she’s currently between jobs, and to find out where she landed you’ll just have to listen!

You can find more of Serena:
TikTok: https://www.tiktok.com/@shenetworks
Twitter: https://twitter.com/notshenetworks
YouTube: https://www.youtube.com/c/shenetworks

Check out our Patreon – https://www.patreon.com/artofneteng
Follow us on Twitter https://twitter.com/artofneteng​
Follow us on Instagram https://www.instagram.com/artofneteng/​
Like us on Facebook https://www.facebook.com/artofneteng
Join the group on LinkedIn https://www.linkedin.com/company/artofneteng/
Check out our website https://artofnetworkengineering.com
Merch Store – https://artofneteng.com/store
Join the Discord Study group – https://artofneteng.com/iaatj

Ep 88 – John Capobianco Returns!

In this episode, John returns to give us an update on his new position at Cisco as a Developer Advocate! John has also been working on numerous automation projects for the community, and a whole lot more!

You can find more of John:
Twitter: https://twitter.com/John_Capobianco
LinkedIn: https://www.linkedin.com/in/john-capobianco-644a1515/
Blog: https://www.automateyournetwork.ca/

Check out our Patreon – https://www.patreon.com/artofneteng
Follow us on Twitter https://twitter.com/artofneteng​
Follow us on Instagram https://www.instagram.com/artofneteng/​
Like us on Facebook https://www.facebook.com/artofneteng
Join the group on LinkedIn https://www.linkedin.com/company/artofneteng/
Check out our website https://artofnetworkengineering.com
Merch Store – https://artofneteng.com/store
Join the Discord Study group – https://artofneteng.com/iaatj

Ep 87 – There’s a Villa and It’s Real

This week we talk to Jordan Villareal. Jordan has a very interesting start to his career, but it’s an exciting journey nonetheless. Jordan also shares some exciting news about a new position he has recently started!

More from Jordan:
YouTube: https://www.youtube.com/c/SystemMTUOne
Twitter: https://twitter.com/SystemMTUOne

Sponsors
PathSolutions – What if you knew as much as your network does? Check out TotalView today! PathSolutions.com
NetAlly – Simplicity. Visibility. Collaboration. Visit NetAlly.com today!

Check out our Patreon – https://www.patreon.com/artofneteng
Follow us on Twitter https://twitter.com/artofneteng​
Follow us on Instagram https://www.instagram.com/artofneteng/​
Like us on Facebook https://www.facebook.com/artofneteng
Join the group on LinkedIn https://www.linkedin.com/company/artofneteng/
Check out our website https://artofnetworkengineering.com
Merch Store – https://artofneteng.com/store
Join the Discord Study group – https://artofneteng.com/IAATJ

Ep 86 – Shouldn’t you know everything your Network knows?

This Episode is sponsored by PathSolutions

In this episode, we talk to Tim Titus, founder, and CTO of PathSolutions. Tim shares his network troubleshooting woes over the course of his 30-year technical career and then walks us through PathSolution’s automated troubleshooting platform. Tim is one of us; a cabling tech turned network engineer turned director turned entrepreneur.

Tim talks about how his solution can enable junior network engineers to quickly identify and fix problems, without escalation or the need for tribal knowledge. PathSolutions TotalView network monitoring software bridges the gap between NETWORK MONITORING and RESOLUTION telling you WHEN, WHERE, and WHY network errors occur. What if you knew everything your network equipment knows? Your network is trying to tell you something. Are you listening?

You can follow PathSolutions on:
Twitter: https://twitter.com/gopathsolutions
LinkedIn: https://www.linkedin.com/company/pathsolutions/
YouTube: https://www.youtube.com/user/PathSolutions Facebook: https://www.facebook.com/goPathSolutions/
Homepage: https://www.pathsolutions.com/

NFD26 videos: https://techfieldday.com/appearance/pathsolutions-presents-at-networking-field-day-26/

Check out our Patreon – https://www.patreon.com/artofneteng
Follow us on Twitter https://twitter.com/artofneteng​
Follow us on Instagram https://www.instagram.com/artofneteng/​
Like us on Facebook https://www.facebook.com/artofneteng
Join the group on LinkedIn https://www.linkedin.com/company/artofneteng/
Check out our website https://artofnetworkengineering.com
Merch Store – https://artofneteng.com/store
Join the Discord Study group – https://artofneteng.com/IAATJ

Careers at a Crossroad: Staying Technical vs. Heading into Management

This article is sponsored by Auvik and first appeared on their blog

There’s a point in every IT professionals’ career where they inevitably ask themselves,“do I want to get into management?” 

Sometimes this point occurs when they find themselves already are in management, either by design, or as I like to say, by accident. IT pros can find themselves thrust into a management position when the old IT manager leaves, or in a de facto leadership spot: the team suddenly grows, and the new techs have to report into someone

As I say to my kids, “accidents do happen”. But, it’s far better to avoid them if we can. Going into management, like a lot of major life decisions, shouldn’t be accidental if you can avoid it. It should be intentional, actively considered and thoroughly thought through.  

There’s a lot of components to IT leadership— people management, vendor management, budgeting, planning, performance and cost reporting, etc.  To ensure you’ll be most successful (and happy) in a management position, or at the very least know what you’re getting into,  spend some time investigating these areas of responsibility before taking the leap. Better yet, if you have the opportunity in your current role, ask your leader to take on some of these responsibilities in a mentored capacity, where they can help you grow and learn. 

But does that mean that as an IT pro you have to get into management to advance? In my opinion, no. I’ve had people leadership roles, and I’ve had senior individual contributor roles, and to be honest, I love them both. But they’re entirely different skill sets, and knowing not only what you’re good at, but what you like to do can help you be successful in your career, and happy in your life. 

So if you’re sitting there trying to decide between, “do I want to lead an IT team one day?”, or “do I want to be the most amazing network engineer out there?”, then this is for you!

Considerations

Speaking from personal and anecdotal experience, the decision on whether to stay technical or go into management is very much a personal one. While I don’t  expect you to discover your true calling while reading this post, I’ve put together some considerations that  you’ll hopefully find valuable when making your decision. 

First, start by reflecting on what components of the jobs you’ve had you’ve enjoyed doing, versus the components of the job you’ve done simply because you had to. I don’t subscribe to the idea that you’ll love every minute of your job, but ideally you should be enjoying it most of the time. If you have a great day 9 out of every 10 days, that’s a win for me! Identify the things in your work that give you  satisfaction and see that they are a part of  whatever career path you go down.

Next, spend some time thinking about how you want your job to contribute to your overall life. For some people this may be financial resources to support their lifestyle (travel, grown-up toys like boats, ATVs, RV’s, or  support for a large family)). For others, there may be value they place on the impact their work makes on their own wellbeing, the wellbeing of others, or the impact it has on society.  Some derive their purpose or self-worth through their career accomplishments. Wow, getting deep in here!

How you define success in your life or your career is ultimately up to you. Different paths will provide for different outcomes. What’s important is that you consider them before you jump in.

Some other standard “job interview” considerations include::

  • Career progression opportunities. Are there advancement opportunities in only one path with your current employer?
  • Seniority. Do you need to, or want to, be at the top of the “corporate ladder”? Does your organization enable technical leaders to have a seat at the table on big decisions, or only people leaders?
  • Compensation: Does your employer have  comparable high-level technical leadership roles that come with increased pay, or do you need to go into management to get that increase?
  • Job Availability. While many companies  are embracing a work-from-anywhere model, if you prefer (or need) to be in an office, the availability of jobs along your preferred path can be affected by the local job market. 
  • Mobility. If there’s low availability of job options in your ideal career where you are, are you able and willing to relocate? 

While these are all important factors, the most important one for me was simply understanding the intersection of “what are things I like to do” and “what am I good at”. 

If you want to move into management, what should you focus on? 

First, get out of your cubicle. Whether it’s an actual stall in a cubicle farm (aka the corporate open-plan office), or a virtual cubicle in the new distributed work world many of us find ourselves in, you need to become visible and present to the rest of the business.  While you may not be in a formal leadership role yet, providing indirect leadership with indirect power can be a very rewarding experience, and it is an in-demand skill for employers. 

This means increased and improved communication. Work on your communication processes, as well as your personal communication skills, to help effectively talk with your colleagues, managers, and executives in a way that positions you as a subject-matter expert people can trust (creating comfort with the idea of you in a leadership position). 

Next, network. No, I don’t mean work on IT networks. Get out and meet with your colleagues over a coffee or lunch. Talk with IT leaders at other companies. Ask them how they made the transition from a technical role into leadership, and what they learned along the way. You’ll get a tip or two from them, and some may be open to a more formal mentorship! Never undervalue the return on simply asking others for advice.

Finally, speak with your current manager about moving into a leadership role. A good leader will help set you up for success in a leadership role, even if that means preparing you for a new employer. There’s also value in the concept of being radically candid, ask your manager to be direct: do they see you in a leadership position? If not, is there something you can do to steer towards that goal? Nothing is ever a done deal, but don’t operate under the guise that you are already something you’re not. Getting an honest assessment of your skills and potential is just good career advice. 

If you want to remain technical, what should you focus on?

There are many, many of us out there that will choose to stay in a technical role for our entire careers—and that is definitely not a bad thing! 

Technical leaders are a commodity in short supply, and keep in mind if you’ve decided to stay technical, it shouldn’t mean that your career growth and development is done. IT is constantly evolving, and to stay on top of your game you need to be consistently working on your skills. Remember, you cannot be an expert in everything, so identify your passion, then grow and learn skills around that. For example:

These are some trends today. Keep an eye out for new technologies that will lead the way in 2022 and beyond.

The right answer on whether to stay in a technical role or head into a management role is unique to every person. While I hope that this post gave you a bit to think about, I wish you luck on your journey of understanding what is the right path for you. 

Every journey, even one toward network automation, starts with a single step. If you haven’t already, why not give Auvik a try? Get your free 14-day Auvik trial here. You’ll see the difference that automated documentation, config backup, and alerts will make to your network management. 

Ep 85 – Bofhgirl

This week we interviewed Heather, aka BOFHgirl in our Discord. Heather has been working in Network Engineering/IT for over 20 years. She graduated from college with her degree, her CCNA, and her CCNP thanks to Cisco’s Networking Academy. She currently works as a Senior Network Engineer for Wayfair. She with us her enthusiasm for Network Engineer and shares her advice for a successful lifelong career in IT, as well as some advice for aspiring women in tech and network engineering.

More from Heather:
Twitter: https://twitter.com/bofhgirl
Instagram: https://www.instagram.com/bofhgirl/

Sponsors
PathSolutions – What if you knew as much as your network does? Check out TotalView today! PathSolutions.com
NetAlly – Simplicity. Visibility. Collaboration. Visit NetAlly.com today!

Check out our Patreon – https://www.patreon.com/artofneteng
Follow us on Twitter https://twitter.com/artofneteng​
Follow us on Instagram https://www.instagram.com/artofneteng/​
Like us on Facebook https://www.facebook.com/artofneteng
Join the group on LinkedIn https://www.linkedin.com/company/artofneteng/
Check out our website https://artofnetworkengineering.com
Merch Store – https://artofneteng.com/store
Join the Discord Study group – https://artofneteng.com/IAATJ

Ep 84 – TAC – Technical Attorney Center

In this episode, Lex and Tim talk to Christopher Hart, from Cisco. Christopher was formerly a Cisco TAC Engineer focusing on the Cisco Nexus Data Center Platform, specifically Nexus running NX-OS (as opposed to ACI). Recently, Christopher has shifted to a new role in Solution Validation Services, where he gets to help Cisco’s customers validate their networks!

More from Christopher:
Twitter: https://twitter.com/_ChrisJHart
Blog: https://chrisjhart.com/

Sponsors
PathSolutions – What if you knew as much as your network does? Check out TotalView today! PathSolutions.com
NetAlly – Simplicity. Visibility. Collaboration. Visit NetAlly.com today!

Check out our Patreon – https://www.patreon.com/artofneteng
Follow us on Twitter https://twitter.com/artofneteng​
Follow us on Instagram https://www.instagram.com/artofneteng/​
Like us on Facebook https://www.facebook.com/artofneteng
Join the group on LinkedIn https://www.linkedin.com/company/artofneteng/
Check out our website https://artofnetworkengineering.com
Merch Store – https://artofneteng.com/store
Join the Discord Study group – https://artofneteng.com/IAATJ


Ep 83 – Salary Negotiation

We are going LIVE! Join us on April 9th in Asheville, NC for the FIRST EVER Art of Network Engineering Live Show! Click here for details.

In this week’s episode, we bring back two previous guests – Tim McC and Brittany Mussett. The group discusses the art of Salary Negotiation, what has worked for us when previous job offers have come in, and what we recommend you do the next time you’re negotiating your salary!

Anonymously share salary information with others: https://artofneteng.com/NetEngSalary

More from Brittany:
Twitter: https://twitter.com/NetEngRecruiter
LinkedIn: https://www.linkedin.com/in/brittany-mussett-6836a2146/

More from Tim McC:
Blog: https://carpe-dmvpn.com/
YouTube: https://www.youtube.com/c/CarpeDMVPN
Twitter: https://twitter.com/juangolbez

Sponsors
NetAlly – Simplicity. Visibility. Collaboration. Visit NetAlly.com today!

Check out our Patreon – https://www.patreon.com/artofneteng
Follow us on Twitter https://twitter.com/artofneteng​
Follow us on Instagram https://www.instagram.com/artofneteng/​
Like us on Facebook https://www.facebook.com/artofneteng
Join the group on LinkedIn https://www.linkedin.com/company/artofneteng/
Check out our website https://artofnetworkengineering.com
Merch Store – https://artofneteng.com/store
Join the Discord Study group – https://artofneteng.com/IAATJ

Enterprise Network Automation with Itential

In this day and age, saying that enterprise networks are critical would be an understatement. Networks have essentially become a utility similar to electricity, gas, and water. When you turn that proverbial knob, those packets had better flow; and quickly! Except, the knob is stuck in the on position and never gets turned off. If it does get turned off, somebody is in trouble. As businesses grow, so does their digital footprint, which means the network must grow as well. Not alongside the business, but faster than the business. The network has to be ‘one step ahead’, always ready for what the business has next to throw at it next. Oftentimes, as the network grows, the complexity of the network grows as well. With this growth and complexity come challenges. The network must be built onto, changed, and maintained. These challenges include:

  • Manual, static configurations across many devices.
  • Configuration drift and compliance issues.
  • Multi-vendor environments.
  • Change management processes that are multi-step, manual, and disaggregated.

The challenges listed above can cause the management of enterprise networks to quickly and easily get out of control.  Modern networks require a management strategy that provides value.  They need a strategy that can provide the solutions of centralized configuration management, backup, and compliance that can scale with the organization.

Itential

Itential is a company that addresses the challenges mentioned above by providing network automation, configuration, and compliance solutions for enterprise networks.  Itential believes that modern networks need to “support and enable digital transformation”.  Itential was founded in 2014 and since then, through their products they have supported the automation of over one billion processes.  The automation platform supports both on-premises network and cloud environments.  The platform itself can be delivered either as an on-prem solution or as a cloud native software as a service (SaaS) solution.  The main features that will be covered throughout the rest of this article include Configuration Manager, Automation Studio, and Automation Gateway.

Configuration Manager

A major challenge in medium to large sized modern networks is managing consistent configurations across devices without making the process entirely too complicated.  You want to maintain consistency to reduce the risk of ‘one-off’ issues, but you may also have compliance and regulatory requirements that you have to follow.  Configurations not only need to remain consistent, but it may also need to be proven that they stay consistent throughout the phases of a device’s life cycle.  The configuration phases can be described as such:

  • Day 0 – On-boarding. This phase entails getting enough configuration to the device so that it can be reachable and managed on the network
  • Day 1 – Initial configuration.  This phase includes deploying a common baseline configuration to get the device itself actually operational in the network infrastructure.  This type of configuration can include but is not limited to:
    • NTP servers
    • Syslog
    • SNMP
  • Day 2 to Day N – Production ready.  This is the ‘up and running’ phase and includes applying the proper configuration to the network devices so that they are operational for production traffic.

Itential believes that a configuration management solution should include:

  • Having a full view of the device inventory and the ability to categorize that inventory into groups.
  • A method to easily define, update and view golden configurations.
  • The ability to remediate, with automation whenever possible, when config drift happens.
    • Having documentation of the configuration drift and remediation.
  • Support for non-CLI accessible devices/cloud (API integration).

Itential’s Configuration Manager provides customers with the ability to set configuration standards and detects non-compliant assets that need remediation.  The Golden Configuration Editor is utilized to create standardized configurations.  Those golden configurations are then applied against a customizable tree structure of inventoried devices.  On the proactive side within Configuration Manager, compliance checks can be run against proposed changes to see if they will cause a device to be out of compliance.  Configuration Manager can manage infrastructure via CLI and API integration.  While managing configurations, the platform also supports pulling real-time backups of network devices as changes are made in the environment.

To better simplify cloud network deployments, the Itential Configuration Manager platform can treat cloud infrastructure as if it were traditional network infrastructure and translate complex configurations into more simple, JSON objects.  Finally, Itential understands there is oftentimes no single source of truth in an organization.  Many systems have their own source of truth and we often need information out of multiple sources of truth to make a single change.  That is why Itential, through APIs,  can aggregate necessary information from separate, disjointed sources of truth so all of that information is available when it comes time to make configuration changes.

Automation Studio

Although it can be easily overlooked, even the smallest configuration changes that need to be made to the network can quickly and easily become complicated.  Many times, the change itself is quick and simple, but the additional pre and post work can be cumbersome and lengthy.

Itential’s goal is to greatly lessen this burden on practitioners with their Automation Studio platform.  This platform provides low code, drag and drop automation workflows that can include third party solutions.  Automation Studio provides end-to-end change automation.  This means that it is able to automate pre and post change tasks as well, such as:

  • The change request process.
  • Performing prerequisite validation.
  • Pulling pre-change backups.
  • Temporarily suspending monitoring.
  • Post change validation.
  • Reactivation of monitoring.
  • The updating of documentation.
  • The closing of change requests.

Automation Studio allows practitioners to create centralized workflows of all change related tasks so they can focus on the change itself rather than making sure they remember all of the additional before and after steps that have to take place as well.

Automation Gateway

Before adopting an automation suite like Itential’s platform, many individuals and organizations may have already built their scripts and workflows to efficiently complete tasks using tools like Python, Ansible, Terraform, NetMiko, and Nornir.  Itential’s Automation Gateway gives you the ability to onboard your different scripts and modules, or connect to existing tools via API, so that they can be orchestrated centrally by the entire team from the Itential platform.  This provides customers the ability to continue to use the results of the tools and work they have already invested in, while adding in the value of bringing those different tools together with Itential.

Bringing it all Together

To support digital transformation, IT Infrastructure teams need to be able to keep up with the business in order to provide value. To ‘keep up’ means to have the ability to grow and modify the network quickly and efficiently.  With the size, complexity, and sophistication of modern networks, it just isn’t possible to do so manually.  Infrastructure teams need a network management solution that can provide end-to-end change and compliance automation.  Itential can provide this value to network infrastructure teams with their automation platforms. To learn more, visit itential.com or check out their YouTube channel.  Itential also recently presented at Networking Field Day 27, and the full list of videos can be found here.

Ep 82 – Automate your Network with Itential!

This episode is sponsored by Itential.

In this episode, we talk to Peter Sprygada. Peter is the VP of Product Management at Itential. Peter shares his career and experience and then, we dive into the Itential Automation Platform! Peter then introduces us to the Itential Network Automation platform. Itential can build in intelligent pre and post-checks into the workflows. If pre-checks fail the workflow can be configured to safely stop before the network is negatively impacted. On the other end, Itential can help verify the work completed successfully with post-checks. Listen now to learn more about Itential!

You can follow Peter on:
Twitter: https://twitter.com/privateip
LinkedIn: https://www.linkedin.com/in/sprygada/

More from Itential:
Twitter: https://twitter.com/Itential
Homepage: www.itential.com
Get Started: https://www.itential.com/get-started/
NFD27 videos: https://techfieldday.com/appearance/itential-presents-at-networking-field-day-27/

Check out our Patreon – https://www.patreon.com/artofneteng
Follow us on Twitter https://twitter.com/artofneteng​
Follow us on Instagram https://www.instagram.com/artofneteng/​
Like us on Facebook https://www.facebook.com/artofneteng
Join the group on LinkedIn https://www.linkedin.com/company/artofneteng/
Check out our website https://artofnetworkengineering.com
Merch Store – https://artofneteng.com/store
Join the Discord Study group – https://artofneteng.com/IAATJ

Ep 81 – Real World Design Discussion

We are going LIVE! Join us on April 9th in Asheville, NC for the FIRST EVER Art of Network Engineering Live Show! Click here for details.

In this episode, A.J. shares some of his experience overhauling IT for a small manufacturing company. Lexie and Andy ask questions and dig deeper into the process of revamping the entire IT infrastructure. We started this episode as a Data Center Design discussion, but we took a slight detour. We think you’ll enjoy it just the same!

Enjoying the show? Please take a moment to complete our 2022 Listener Survey!
https://artofneteng.com/2022survey

Vote for your favorite content creators in the Cisco IT Blog Awards!
cs.co/6010JhKDM

Sponsors
NetAlly – Simplicity. Visibility. Collaboration. Visit NetAlly.com today!
NordVPN – 70% off the 2-year plan + 1 Month Free – visit nordvpn.com/taone or use promo code TAONE at checkout

Check out our Patreon – https://www.patreon.com/artofneteng
Follow us on Twitter https://twitter.com/artofneteng​
Follow us on Instagram https://www.instagram.com/artofneteng/​
Like us on Facebook https://www.facebook.com/artofneteng
Join the group on LinkedIn https://www.linkedin.com/company/artofneteng/
Check out our website https://artofnetworkengineering.com
Merch Store – https://artofneteng.com/store
Join the Discord Study group – https://artofneteng.com/IAATJ

Ep 80 – Nick Russo

In this episode, we interview Nick Russo! Nick is a Technical Leader at Cisco, a 2x CCIE in Routing and Switching and Service Provider Networks, as well as his CCDE. Nick is often called upon to help solve complex networking issues with Cisco’s customers. Nick talks about his career in the military and how he got started in networking.

You can find more of Nick:
Twitter: https://twitter.com/nickrusso42518
Blog: http://njrusmc.net/

Enjoying the show? Please take a moment to complete our 2022 Listener Survey!
https://artofneteng.com/2022survey

Vote for your favorite content creators in the Cisco IT Blog Awards!
cs.co/6010JhKDM

Sponsors
NetAlly – Simplicity. Visibility. Collaboration. Visit NetAlly.com today!
NordVPN – 70% off the 2-year plan + 1 Month Free – visit nordvpn.com/taone or use promo code TAONE at checkout

Check out our Patreon – https://www.patreon.com/artofneteng
Follow us on Twitter https://twitter.com/artofneteng​
Follow us on Instagram https://www.instagram.com/artofneteng/​
Like us on Facebook https://www.facebook.com/artofneteng
Join the group on LinkedIn https://www.linkedin.com/company/artofneteng/
Check out our website https://artofnetworkengineering.com
Merch Store – https://artofneteng.com/store
Join the Discord Study group – https://artofneteng.com/IAATJ

Ep 79 – LabEveryDay

In this episode, we speak to Du’An Lightfoot! Du’An has recently moved into a new role as Sr. Developer Advocate for Amazon Web Services. Du’An talks about his time in the military and the experience he gained from it. He also shares with us how he started creating content and his brand – LabEveryDay!

Netmiko training – https://www.youtube.com/c/Grelleum

You can find more of Du’An:
Twitter: https://twitter.com/labeveryday
YouTube: https://www.youtube.com/c/LabEveryday
Website: https://www.labeveryday.com/

Enjoying the show? Please take a moment to complete our 2022 Listener Survey!
https://artofneteng.com/2022survey

Vote for your favorite content creators in the Cisco IT Blog Awards!
cs.co/6010JhKDM

Sponsors
NetAlly – Simplicity. Visibility. Collaboration. Visit NetAlly.com today!
NordVPN – 70% off the 2 year plan + 1 Month Free – visit nordvpn.com/taone or use promo code TAONE at checkout

Check out our Patreon – https://www.patreon.com/artofneteng
Follow us on Twitter https://twitter.com/artofneteng​
Follow us on Instagram https://www.instagram.com/artofneteng/​
Like us on Facebook https://www.facebook.com/artofneteng
Join the group on LinkedIn https://www.linkedin.com/company/artofneteng/
Check out our website https://artofnetworkengineering.com
Merch Store – https://artofneteng.com/store
Join the Discord Study group – https://artofneteng.com/IAATJ

How to do a Basic Linux Server Installation using Ubuntu

In this article, we will show you how to do a basic Linux Server OS install using Ubuntu Server. Linux is an extremely popular operating system in our field. Many system builders will build their platform on Linux. As a result, having the skills and experience with any version of Linux can help you navigate those platforms. Ubuntu Server is Open Source, and available for free, and can be installed on nearly any platform, physical or virtual. This makes it a platform for lab use, as well as production.

The Install Procress

Download the media

Go to https://ubuntu.com/download/server and click on Option 2 -Manual server installation

Prepare the media

Preparing the media will depend on what you’re installing on to. If it’s a physical machine you’ll likely be going to create a bootable USB drive or if you’re going to run a virtual machine you can just mount the ISO file directly. Rufus is a great tool for creating bootable USB drives for any bootable image.

Boot from the Install Media

The first thing you’ll do is select your language. Use the arrow keys to navigate the list and then press enter to select.

Next, select your keyboard layout.

Then, select a Network Interface. In our case we only have a single network interface, named ens33, and it is connected to the network and getting a DHCP address.

A Proxy is sometimes used to connect to the Internet. All traffic is sent to a proxy address so it can be scrubbed to ensure security. If this is a home or lab network you likely do not have a proxy. Leave the line blank and press enter.

Ubuntu Archive Mirror Address is the location on the internet where Ubuntu will download updates from. Leave the default here and press enter.

Next, configure your local storage. By default (recommended) you can just use the entire disk. However, in a production environment, you may want to be more specific about partitioning the storage.

Review the Storage Configuration Summary and then use the arrow keys to navigate to Done and then press enter.

You’ll be warned that the disk will be formated and all data will be lost. Use the arrow keys to highlight and select continue by pressing Enter.

Profile Setup – Here you enter in your name, the server’s hostname, your username, and then your password. This is the first user and will also be an administrative level user with Root privileges.

Press the Space Bar to select Open SSH Server and then use the arrow keys to navigate down to, and select, Done by pressing enter. Open SSH Server will allow you to remotely access the server via SSH.

Ubuntu is now being installed. Monitor the progress here. It will take several minutes to complete.

Once the installation is complete you’ll see the Reboot Now option at the bottom of the screen. Use the arrow keys to highlight it and then press Enter.

You will be prompted to remove the installation media so that upon reboot the installation process doesn’t start all over again.

Post Installations Tasks

After the installation completes there are a few things you may want to do, such as applying updates, setting a statically assigned IP address, or adding additional users.

After rebooting you’ll be at a login prompt. Enter in the username and password that you created earlier to get going.

Download and Apply Available Updates

First, let’s download and apply package updates that may have come out since the build was created. To do that we’ll use a couple of commands. First, is ‘sudo apt update’ for you first-time Linux users let’s break that down. Sudo is short for Super User Do – basically the “run as administrator” of the Linux world. Apt is short for Apt-get or Aptitude, and is a package handler for Debian flavors of Linux. On Red Hat flavors of Linux, such as REHL – Red Hat Enterprise Linux, CentOS, and Fedora, you would use Yum as the package Handler.

This refreshes the package database and can tell you how many packages that have updates available. In the above screenshot we see 87 packages can be upgraded. To get a detailed list of available updates we can run “apt list –upgradeable.”

Here we have a list of all of the packages, in green, listed with a / and then the latest version of that package, followed by a set of square brackets with the currently installed version within.

To execute the upgrade we can run sudo apt upgrade. This will list all of the packages that have updates available, and the size on disk these updates will take to install. In this example, we see the updates will take up 399 MB of disk space.

At the prompt press Y and then enter to continue.

The package manager will go through and apply all of the available updates.

Setting a Static IP

A statically assigned IP address makes management of a remote host a little bit easier in that you’ll always know what the IP address is for that host. First let’s view the IP Address information for our host. Use the command ‘ip address’

In this example we can see this device has two network interfaces, the Loopback which is lo here, and the Ethernet Adapter, ens33. To view the IP info for a specific adapter you can use the command IP address show dev [device name]:

Newer versions of Ubuntu use netplan to manage Network Adapters. There’s a folder under /etc/ called netplan that holds YAML configuration files for each network adapter. We can modify these files and set the desired configuration.

First let’s look at the files in the /etc/netplan folder. To do this, run the command ‘ls /etc/netplan’

On this host, we only have the one file 00-installer-config.yaml. Your system may show more files depending on how many adapters are installed. Let’s open that file and change the settings. Use the command sudo nano /etc/netplan/FILE-NAME.

First, let’s start by changing the dhcpv4 key value from true to false. Use your arrow keys to navigate to that line. Then we’ll add the following, addresses, gateway4, and nameservers. Pay particular attention to spacing. YAML files will not process correctly if the spacing and indentation is not correct. Your file should look something like this:

Press control X to exit, and then press Y and Enter to confirm and save the changes you’ve made. Now let’s go refresh Net Plan to pick up the changes. We do this by running the command ‘sudo netplan apply.’ You may be prompted to enter in your password again.

There isn’t much for feedback here so let’s go ensure the changes took affect with IP address show dev [DEVICE NAME]

And now, we can see that it is, in fact, using the IP we configured in the netplan YAML file. We can further verify things are working by using the PING command to ping our local gateway, a DNS server out on the public internet, and we can verify DNS is working using the nslookup command.

Add Users

Lastly, let’s add some users. Perhaps we want to add users to our lab machines so we have extra accounts we can do testing with. In an Enterprise environment it’s just a generally accepted best practice to give each user their own account. This is part of Authentication, Authorization, and Accounting. We need to know who the user is, give them the bare minimum privileges they need to do their work, and then log and verify their access to that system. If everyone shares the same user account we can’t tell the difference between when one person or another uses it.

To add a user account we’ll use the command adduser. Let’s add the rest of the AONE Co-Hosts to the server. The syntax is ‘sudo adduser username‘ Be prepared to enter in a password for the new user accounts.

The system also prompts you for some additional, but optional information. We can verify the user accounts have been added by listing all of the folders in the /home/directory, by typing ls /home/:

Here we can see I’ve created a new user account for each AONE Podcast Co-Host. Now, let’s add one of them to Super Users, or the sudo group, so they have administrator rights on the system. We do that using the usermod command with the -aG switch.

Summary

In this article we showed you how to:
1. Install Ubuntu Server
2. Complete common post-installation tasks: Applying Updates, set a Static IP, and add additional user accounts.

Ubuntu is an extremely popular platform as it is Open Source and easy to learn Linux on. There are many other flavors of Linux out there, so do some research and find one that fits you the most!

We hope you enjoyed this article. If you had any trouble or would like to add to it you can contact us, or connect with us on Twitter!

Ep 78 – Time to Move On

In this episode, we talk to Andy about his recent job change, from working as a Network Engineer in FinTech to a Product Manager at Juniper. Andy discusses imposter syndrome and how one interview changed his view on it, and possibly broke him of it, forever! We’ve also got some exciting news to share, but you have to listen to find out!

Andy’s Book Recommendation
Now, Discover Your Strengths – https://amzn.to/3FQ3OMn

Enjoying the show? Please take a moment to complete our 2022 Listener Survey!
https://artofneteng.com/2022survey

Vote for your favorite content creators in the Cisco IT Blog Awards!
cs.co/6010JhKDM

Check out our Patreon – https://www.patreon.com/artofneteng
Follow us on Twitter https://twitter.com/artofneteng​
Follow us on Instagram https://www.instagram.com/artofneteng/​
Like us on Facebook https://www.facebook.com/artofneteng
Join the group on LinkedIn https://www.linkedin.com/company/artofneteng/
Check out our website https://artofnetworkengineering.com
Merch Store – https://artofneteng.com/store
Join the Discord Study group – https://artofneteng.com/IAATJ

Top 10 Book Recommendations by Network Engineers, For Network Engineers

In our Discord Server – It’s All About the Journey – we’ve got a book club where all of our server members share books that have helped them throughout their journey. We’ve compiled a list of the Top 10 books recommended by Network Engineers, for Network Engineers. It’s composed of tech and non-tech books alike. As a bonus, we’ve had the pleasure of interviewing some of these authors on our podcast! Here’s the list:

Make it Stick: The Science of Succesful LearningBrown, Roediger, McDaniel
This book discusses the science of how we, humans, learn! It discusses several strategies and tools people of any age and profession can use. The book does not read as a scholastic paper, but a really good book. It starts each section by engaging the reader with a powerful story about learning and then highlights a particular strategy or tool learners can use.
Bonus – We interviewed one of the co-authors on Ep 32 of The Art of Network Engineering Podcast, you can check out the YouTube video of the interview here: https://youtu.be/yXk_3TEspfA

The Subtle Art of Not Giving a F*ck – Mark Manson
There are so many things in life we can put effort into and so many more we are told we should put our energy and effort into (RIGHT NOW!). This book will help you decide which ones are actually worth putting your effort into and the rest you can just let go over.

Network Warrior – Gary A. Donahue
As the subtitle of the book suggests this book contains “Everything You Need to Know That Wasn’t on the CCNA Exam.” While some of the switches referenced in the book are End of Life the knowledge that this book provides is certainly not! Network Engineers from the most Jr. to the most Sr. will all get something from this fantastic book!

Succeed: How We Can Reach Our Goals
by Heidi Grant Halvorson
In this book author, Heidi Grant Halvorson offers some very insightful bits that will help you set goals, build willpower, and avoid failure. “Succeed unlocks the secrets of achievement, and shows you how to create new possibilities in every area of your life!”

A Mind for Numbers – by Barbara Oakley
Revealed that the way most of us are taught in school is not really a good way to learn, and then it reveals much better ways of learning based on science-based research. There is also a related course on Coursera.

The Practice of System and Network Administration – Limoncelli, Hogan, Chalup
The book was suggested because it is a non-technical book written specifically for network and Sys Admins to guide them on how to behave in different situations like how to hire and fire people and how to deal with misconducts by co-workers and managers.

Automate the Boring Stuff with Python – by Al Sweigart
This book is aimed at beginners trying to learn Python and apply it to everyday tasks. There’s also a completely free companion website https://automatetheboringstuff.com/

Mastering Python Networking – by Eric Chou
This book can take your Python and Network Automation Journey to the next level! We also had the opportunity to sit down and interview Eric in Episode 75 – The Automation Chou’sen One.

The War of Art – by Steven Pressfield
The War of Art emphasizes the resolve needed to recognize and overcome the obstacles of ambition and then effectively shows how to reach the highest level of creative discipline.” One Discord book club member said the book helped them to realize that failure is part of the process and that everyone faces resistance when trying to accomplish something hard.

Outliers – by Malcolm Gladwell
In this book, Malcolm Gladwell asks “What makes high achievers different?” His answer is that too much attention gets paid to what the people are like, and not enough attention to their background and upbringing. One Discord member said this book helped them to deal with imposter syndrome because it highlighted the fact that some people have access to resources that others of us may not, and that adds to their success.

Did we miss one? Make a suggestion in the comments below or let us know on Twitter, we are @artofneteng

Ep 77 – New Year, New Goals!

In this episode, A.J. and Tim are joined by Lexie (@TracketPacer) and they discuss their goals for the upcoming year! Hear how each of them goes about goal planning and the goals they’ve set for themselves for the coming year.

Enjoying the show? Please take a moment to complete our 2022 Listener Survey!
https://artofneteng.com/2022survey

Links:
Space Weather Prediction Center – https://www.swpc.noaa.gov/
Space Weather General – https://www.spaceweather.com/
Cisco Continuing Education Program – https://www.cisco.com/c/en/us/training-events/training-certifications/training/continuing-education-program.html
Lexie on Twitch – https://www.twitch.tv/tracketpacer

Check out our Patreon – https://www.patreon.com/artofneteng
Follow us on Twitter https://twitter.com/artofneteng​
Follow us on Instagram https://www.instagram.com/artofneteng/​
Like us on Facebook https://www.facebook.com/artofneteng
Join the group on LinkedIn https://www.linkedin.com/company/artofneteng/
Check out our website https://artofnetworkengineering.com
Merch Store – https://artofneteng.com/store
Join the Discord Study group – https://artofneteng.com/IAATJ

So, You Want To Start a Study Group!

Studying for certifications is hard, and a lot of people are studying for certifications. It would be great to be able to leverage the thinking of other people: their viewpoints, opinions, ways of solving problems you might not have thought about.

You’d like to join a study group for the cert you are working on, but everyone else is just looking for a group too, and there isn’t an active one to join. Lots of people express interest in joining a study group, but no one seems to know how to set one up. Never fear, we’ve put together some suggestions that will help you start a group and keep it working like a well-oiled machine, carrying the occupants to Certification Valhalla.

Getting Started

The first step in starting a study group is trying to find a group of people looking to join a study group. Thank God for the Internet. There’s Twitter, Facebook, Slack, Discord (shameless plug for IAATJ) and other social media platforms out there where people are studying and collaborating already. You pretty much can’t throw a rock without hitting people looking to study for certifications. Now stop throwing rocks at people, you monster.


Study Group Do’s and Don’ts

Starting and running a study group requires a very different set of skills than joining and participating in the same group. Just like Dungeons and Dragons, someone has to be the Dungeon Master so everyone can play. Here’s a list of suggestions on creating a running a successful study group:

DO:

  • Decide on a common platform for collaboration

Whether it be Discord, Slack, Google Hangouts, Facetime or Webex, the first step in forming a group is establishing what technology you use to meet/collaborate.

  • Decide on common training materials, or agree to focus on the exam blueprint agnostically

This is where a lot of study groups tend to stumble right out of the gate. Let’s be honest, all training materials are not created equal, and people may have acquired their study materials any number of ways. This could be a constraint on your group and the first hurdle to clear.

As a group, it’s better to decide if the group prefers to stick to one provider or approach the topics vendor-agnostically. There are pros and cons to each. One of the biggest pros is that it makes cadence easier and focuses the entire group on the exact same topics and labs. The biggest con of going with this approach is it could be exclusive to people who don’t have and can’t acquire the agreed-upon materials, and thus the group misses out on the added value that some might otherwise bring.

  • Develop ground rules early in the process

Here is another large stumbling block that most don’t even see. So much is assumed that often causes problems down the line, and when dealing with people of different cultures and expectations, it’s really imperative to declare the ground rules for the group and make it accessible to anyone who wants to join. This isn’t just administration for its own sake, it helps defuse arguments before they arise and streamlines the whole process.

Ground rules cover the basic expectations of the group and how it will interact. Cameras on or off? Mute when not talking? What common language will the group work in? Do we raise our hands (digitally or otherwise) and wait to be recognized or can we be more freeform? What is the expectation if late? Is there a consequence for habitual lateness?

  • Establish the frequency of meetings

This seems like a no-brainer, but it can get complex. How often will the group meet? Weekly? Twice a month? Monthly? The frequency influences a lot, including expectations of what can be accomplished outside the group meetings, and the the target dates for taking the exam.

  • Scheduling the meetings

What day of the week should the group aim to meet? What time? Which time zone will the group use as the reference? This could be very simple or extremely complicated depending on where study group members live. Some groups that want to be hyper-focused restrict membership to within 2-3 hours of the reference time zone. Some are more loose but place the burden of making it to meetings on time on the members who live far outside the reference time zone. There’s no right answer here, but in general, the closer the group is to the reference time zone, the easier scheduling the meetings (and making them) will be in the long run.

  • Agree upon the group’s topic format

It would be foolish to study only when the group meets. However, a pace must be set to keep the group somewhat synchronized. To ensure optimal study time when the group is together, it’s important to establish what should be covered in the group and what should be covered on your own between meetings.

For example, simply reading a chapter of a certification guide together in a meeting is a waste of time. It would be more efficient if everyone reads the chapter ahead of time and brings certain review items to the group. That could be questions on the text for review, it could be creating some sort of virtual lab based on the chapter(s) and reviewing that with the group. Generally, reading should be done outside the group and discussion should be the goal of the group meetings. The whole reason to join a study group is for accountability and exchange of ideas, after all.


Now, let’s look at a few things we should NOT do.

DON’T:

  • Establish everything prior to creating the study group and saying, “Take it or leave it”

Study groups aren’t dictatorships. The reward for starting and running a group is that you can drive these discussions, but not decide them alone. Start with finding interested study group members, then start discussing things like ground rules, materials, and let the above details come out of that discussion.

  • Leave the above unvisited for long

Study groups change over time. Someone may get the cert knocked out before others, others may get refocused to something else. Someone new may join, People change and so must things like scheduling, ground rules, etc. Every 3-4 meetings it’s worth revisiting and ensuring all the details are up to date.

  • Waste your own time and others’ by being habitually late and/or distracted and failing to do the work

Time is a precious resource for us all. Most of us are busy professionals juggling work, family and other obligations. A study group is an investment of time towards a goal and that investment is easier for some, harder for others. It’s important to be respectful of your time and the time others are investing by being focused when the group meets, on time, and most importantly, on schedule.

Things happen and you may not be able to do the pre-meeting work one week, but it can’t become a habit. If the group is meeting to trade/review OSPF labs, as an example, failing to create your own OSPF lab to share means you’ve failed to contribute to the group’s learning. Once or twice, life can get in the way, but if this happens habitually, you’re taking from the group without giving back. Just don’t.

  • Forget the point of a study group is to get different ideas and views

IT is full of introverts but there’s a few of us extroverts here too. We extroverts have to be very conscious of ourselves because often, people who are introverted are content to listen. For some, English is a second or third language and they are self -conscious about speaking. The point is, don’t dominate discussions. Make an effort to engage everyone.

  • Fail to participate in group discussions and activity

On the other side of that coin, failing to share your ideas, views and knowledge also makes for an ineffective group. Teaching others is a powerful way to cement knowledge you have and find your gaps. Don’t deprive yourself of that opportunity. Others also benefit from your questions and clarifications. A lot of times, people are wondering the same things but are not brave enough to speak up thinking they may be the only one who isn’t ‘getting it’. Speak up, the study group is a place to get information you can’t get from a book, video or blog post. It’s real human explanation addressed to your specific question.


I hope this has given a solid framework of things to pay attention to when starting and running a study group. It shouldn’t be a stressful endeavor, though at the outset it can feel like herding cats. Don’t be afraid to do what works for the group as a whole. Don’t be afraid to firmly refer to the ground rules when they are broken. The study group has an ultimate goal of ensuring those within the group get certified. That’s the mission statement and so focus on that.

Ep 76 – Deep Dive with Women in Networking

In this episode, women network engineers discuss the current realities for women in the network engineering space: the challenges, the support they’ve received, and how we can continue to make the industry a place that’s open to everyone. (Step one: ladies’ cut vendor t-shirts.)

More from our Guests:
Lexie
Twitter: https://twitter.com/TracketPacer
Twitch: https://www.twitch.tv/tracketpacer

Eyvonne
Twitter: https://twitter.com/SharpNetwork
Blog: https://esharp.net

Micheline
Twitter: https://twitter.com/MichyfishMurphy

Check out our Patreon – https://www.patreon.com/artofneteng
Follow us on Twitter https://twitter.com/artofneteng​
Follow us on Instagram https://www.instagram.com/artofneteng/​
Like us on Facebook https://www.facebook.com/artofneteng
Join the group on LinkedIn https://www.linkedin.com/company/artofneteng/
Check out our website https://artofnetworkengineering.com
Merch Store – https://artofneteng.com/store
Join the Discord Study group – https://artofneteng.com/IAATJ

CCNA Series – Automation and Programmability

In this article, we are going to discuss several parts of Section 6 – Automation and Programmability of Cisco CCNA Syllabus. Programmability and Automation are two huge and very hot topics in the world of Networking. Having Programmability and Automation skills is practically a requirement – so many organizations are adopting it. This article hopes to cover sub-sections 6.1, 6.2, and all of 6.3.

First, we should address the age-old question – Will Network Automation replace Network Engineers? No, this is a very common misconception. Automation is ultimately about consistency. Doing the same task over and over again manually can introduce human error. Sometimes these errors, while not catastrophic in nature, can be problematic and cause downtime.

An infamous example is adding a VLAN to switches throughout your network. In order for the VLAN to work properly, it needs to be created on each switch and then allowed on the trunk links that interconnect the switches. When adding the VLAN to the trunks a very common mistake is to forget the “add” keyword which will remove all VLANs that are tagged on the trunk and then allow the new vlan only. This simple fatal mistake has sent many a network engineers running with their laptop and console cable in hand.

A quick word about the above – This is a very common mistake. You will make this mistake in production and it will cause problems. But, find comfort in the fact knowing that many other network engineers that came before you have made that same mistake.

When using network automation you can get the syntax for the commands you need to send correct once, and then let automation do the rest for you. But, be aware. Automation is the tool that you use to deploy that thing over and over again. If you make a mistake it will do that mistake over and over again. So, always test your code before deploying it.

Automation and Network Management

Automation has changed the way we manage networks. In a traditional network, everything is done manually. From the deployment of new switches, updates to standard or baseline configurations, and deploying new network services are all done by the network operator.

In SDN (Software Defined Networking) Controller-based networks, a lot of the mundane repetitive tasks are handled by the controllers. Some examples of controllers in Cisco-based soltuions are: DNA Center in SD-Access, vManage in SD-WAN, and the APIC in ACI. The controllers handle all of the configuration deployment, as well as software upgrades, services deployment, applying security policy, and can even handle deploying new networking devices with Plug-and-Play or ZTP (Zero Touch Provisioning). This allows the network operator to focus on higher-level tasks like designing the network for scale and to best support the business, support operations, and more, like making progress on projects and other tasks.

The 3 Planes

In any networking device there are three planes of operation: The Management Plane, the Control Plane, and the Data Plane.

The Managment Plane is how the Network Operator accesses the devices and manages it. Whether it’s through SSH, HTTPS, or a Secure API and manually or via automation tools the Management Plane is where this takes places. This how the Operator tells the network device to function.

The Control Plane is where the device makes forwarding decisions. If we’re talking about a router then this is where Routing Protcols live, the routing table, and so forth.

The Data Plane is where traffic ingresses and egresses the device. This is literally the data being sent across the network, from an end user device out to a web server on the internet.

In a traditional network these three planes live on each and every device in the network. If you need to deploy a new security policy or update an existing one then you need to access the management plane on EVERY device in the network, or at least where the policy update is applicable, and update or apply the new rules. This is where Controller-Based networks make a huge impact.

In a Controller-based network the Management Plane is the Controller. This is where the Network Operator manages the network, regardless of how many network devices there on. The Control plane pushes the configuration, as described by the network operator, down to the devices. The networking devices themselves are the forwarding plane and just move traffic based on the instructions provided by the Controller. Let’s take a closer look at this in practice in Cisco’s SD-WAN.

In Cisco’s SD-WAN (Software Defined Wide Area Network) you have several pieces that fit within the 3 planes.

Within the Management Plane you have vManage, vBond, and vAnalytics. vManage is administrative interface for the rest of the network. vBond is the Orchestrator. When a device comes online either for the first time or after a reboot the device reports to vBond first and vBond will provide the device with the information on how to reach vManage and the rest. vAnalytics takes in all of the telemetry data and turns that data into useful information to be consumed by the network operator so they can make informed decisions about their network.

Within the Control Plane are vSmart Controllers. These controllers take the instructions from vManage and push the configuration down to the devices. They can also control the routing table for each device.

The Data Plane is composed of the routers themselves. In the above example it’s the vEdges, which is simply a Cisco SD-WAN capable router.

Overlay, Underlays, and Fabrics

Overlays, Underlays and Fabrics are very common terms that you’ll hear when discussing Controller Based networks. If you’ve ever looked at GRE or IPsec Tunnels across a network, like the Internet, then you already familiar with Overlays and Underlays.

VPNTunnel Anonymous Internet. Your private network security.

In the example of a GRE or IPsec tunnel operating over the Internet, the Internet is the Underlay network. It provides the networking connectivity from one endpoint to the other. The Overlay is the tunnel being formed over top of the internet. The underlay is just forward traffic, it really has no knowledge of the overlay.

In, for example, a Cisco Secure SD-Access network the underlay is composed of network devices that move traffic. They don’t really even need to be Cisco devices, or understand what SD-Access is. However, the edge devices need do, because they use the overlay protocols to initiate communications.

Going back to our previous example of IPsec tunnels across the internet – the internet routers are not speaking or using IPsec to form the tunnel, they are just routing packets using protocols like BGP. The end-point devices like laptop and firewall pictures above are using IPsec in the overlay. In an SD-Access network the underlay is using a routing protocol like OSPF, and the overlay uses protocols like VxLAN or LISP – more on those later. But, only edge switches and routers need to understand LISP and VXLAN in order for the Overlay to work.

Finally, the Fabric. This term is used often and simply refers to the network where the overlay and the underlay are operating. Once you exit that you have left the fabric and are back in a traditional network, or perhaps a different fabric. Again, back to the IPsec tunnel examples, once the packet has arrived to the destination firewall it is exiting the fabric and entering the Enterprise network. That network maybe a Cisco SD-Access Fabric, so it’s exiting one Fabric and entering another one. The Fabric is just a term for controller based networks, and not just a traditional network.

APIs

First off, what is an API – an API stands for Application Programming Interface. It’s a way for someone to interact with a piece of software and APIs can even be configured to interact with each other. The API enables automation and programmability, as well as Orchestration. API’s typically use standard HTTP calls, which are verbs like GET, POST, PUT, DELETE, and PATCH. This of the HTTP GET like the Cisco CLI version of show. The show command lets you view configuration. The HTTP GET will let you view information as well.

The network operator can use tools and the verbs to get information and then send configuration changes. Automation and scripting can be used to make these changes as well. Additionally, when one system sees certain changes or things happening in the network they can be configured to send API calls to other APIs on other controllers. This is very common in the Data Center. You’ll have an API on the ACI controller, called the APIC that interacts with the virtualization controller, in VMware known as vCenter.

These are two different interactions. When a Network Operator is interacting with an API, or two APIs are interacting with each other, this is a Northbound API interaction. When the API is interacting with network, or other, devices that it controls, this is the Southboud API interaction.

Summary

In this article we discussed sub-sections 6.1, 6.2, and 6.3 including 6.3a and b of the Cisco CCNA 200-301 Syllabus. This article should be considered a starting point for the topic and may not be comprehensive enough to fully prepare the learner for the Cisco 200-301 CCNA exam.

Ep 75 – The Automation Chou’sen one!

In this episode, we interview author Eric Chou. Eric has written one of the most important books in Network Automation – Master Python Networking. Eric shares his career journey which includes working for two of the largest cloud service providers! Eric also shares with us all of the other content he is working to create for the community.

More from Eric:
Blog: https://networkautomation.ninja/
Twitter: https://twitter.com/ericchou
LinkedIn: https://www.linkedin.com/in/choueric/
YouTube: https://www.youtube.com/c/EricChouNetworkAutomationNerds
Books:
Mastering Python Networking https://amzn.to/3qzJpWh
Kafka Up and Running https://amzn.to/3mJk373
Podcast: Network Automation Nerds – get it in your favorite podcatcher

Check out our Patreon – https://www.patreon.com/artofneteng
Follow us on Twitter https://twitter.com/artofneteng​
Follow us on Instagram https://www.instagram.com/artofneteng/​
Like us on Facebook https://www.facebook.com/artofneteng
Join the group on LinkedIn https://www.linkedin.com/company/artofneteng/
Check out our website https://artofnetworkengineering.com
Merch Store – https://artofneteng.com/store
Join the Discord Study group – https://artofneteng.com/iaatj

Be the Ally, Not the Ego

Competition is everywhere. Sometimes it is unavoidable. For instance, when you are looking for a job. You want to focus on you, skill up, and set yourself apart from the rest that are competing for that same job. It is definitely stressful, but can also be necessary when it comes to career advancement. Not always, but sometimes. However, job hunting is not the scenario that I want to cover in this post. In this one, I want to go over the scenario in which you are already in the role that you want. You are not only bright, established, driven, and hard-working, but you are also a part of a team. Let’s say in that team, there are some new, up-and-coming, less experienced members. Or maybe, there is someone within another department in the company that is looking for a change, and wants to explore your specialty. How would you handle something like that?

The Reflex?
This obviously isn’t ‘one size fits all’, but I think a natural reaction could be to want to protect yourself. That first reflex might be to immediately enter the competition mode that was brought up earlier. Your mind could quickly take you to a far-end, worst case scenario spectrum quickly, if you let it. You could find your brain starting to race with questions such as:

  • Well, who is this new and ambitious person?
  • Why do they want to get into, and familiar with my responsibilities?
  • Do they think they are better than me?
  • Are they trying to take my job?
  • What if I train them and my boss likes them better than me?

Honestly, I think it’s fine if this is the first place your mind goes when this situation comes up. This competitive instinct pops up in me fairly often. I think it’s important however, to realize this happening, and shift the energy elsewhere.

Flip the Script
As stated earlier, the strong competitive spirit, and looking out mainly for yourself has its time and place (job searching for example), but successfully functioning in a team environment is definitely not it. Let’s turn the tables on the situation. If you were the one that was new and trying to better yourself, would you rather have a role model/mentor to look up to and get assistance from, or a standoffish, information hoarding co-worker who looks down on you and pays you minimal attention? I’m hoping we all agree that we would want the former, rather than the latter. The ol’ golden rule seems to fit nicely here. Treat others the way you want to be treated.

Be the Ally
Being an ally, a mentor, or even just someone who is helpful when needed can make a big impact on someone’s career and life in general. For me, the first step is to be observant. This could happen directly and obviously, with someone new joining the team. Or, you may just happen to see someone outside your direct team that is showing an interest in what you do and potentially wants to be a part of it some day. If you have the time and energy to spend, I encourage you to key in on that observation and reach out to that person. Some newcomers may reach out to you, but others might be a little more reserved. If you start the conversation, that can be the spark to making a real impact on someone’s career. Again, there is no ‘one size fits all’ here, your involvement can be varied based on your judgement. It can range from just making it known that you see that this person has an interest in career growth and you are willing to help out and answer questions; all the way to setting up recurring meetings with this person to provide assistance and advice. I assure you that any degree of assistance you give to someone in this scenario will be appreciated.

The Win-Win
Now, this could be seen as selfish on my part, but I see no shame in gaining a benefit from helping or mentoring someone else. Now, if you get into a trend of only providing assistance when you know it will benefit you is another story. No, the win-wins I am talking about here are the indirect benefits you can gain from being that helping hand, and mentoring someone:

  • Teaching something is a great way to help you solidify your knowledge in a concept, and practice gathering your thoughts to present them to someone else.
  • Taking time for others can build upon the image that people see of you. You will be seen as a kind, thoughtful, and helpful person. People will want to share ideas and work with you.
  • To add on to the previous point, your management will see what you are doing. You will be seen as a team player, and maybe even a leader.

Again, try not to get the goal skewed. The goal is to show that you care and are willing to give back, with time and effort to someone who needs it. That might be because someone else did the same for you, or because you wish you had someone like that when you were coming up and now you want to be the difference maker for someone else, that you never had. Either way, the end result is the same. Someone that wanted or needed some help to further their career got it. I just wanted to highlight some indirect benefits that you could see by helping others.

Bert’s Brief
I seem to often say this phrase on the podcast: “just be cool”. What I really mean by that is to be kind, considerate, and helpful. You never really know what someone else might be going through, and you can easily help be a reason that things get better, or at least pointed in the right direction. There are many different ways to help, but I think the most important thing to do is to just start. Don’t wait for someone to ask a question. Be proactive and start the conversation. Share that knowledge and experience, don’t hoard it. Be the ally, not the ego.

Planning and Maintaining Wireless Networks with NetAlly

For years now, the ability to be productive has been changing.  In many cases, you do not need to be tethered to a desk working off of a computer that is wired into the network to get things done.  We have evolved from that practice, to leveraging laptops, tablets, and even smaller mobile devices such as phones to get work done and stay connected, not to mention the growing plethora of Wi-Fi connected IoT devices.  Supporting a mobile workforce is key, and how do we do that?  This is accomplished by building, maintaining, and enhancing robust wireless networks. Wireless networks and RF environments can be more difficult to plan, maintain, and troubleshoot in respect to their wired counterparts.  As an engineer, you need to understand many factors such as:

  • What kinds of devices and applications will the wireless network support (ex: voice, video, location services)?
  • What is the layout of the space that needs to be supported with wireless coverage?
    • Are there walled offices with cubicles?
    • Is it a large open space with a high ceiling?
    • Are there long, narrow hallways?
  • Understanding the physical environment helps determine what AP and antenna type will make the most sense.
  • How many access points will be needed to provide both RF coverage and capacity support? With having to support the Internet of Things, having just enough access points to provide sufficient wireless coverage is not good enough anymore.  We also have to be able to support large amounts of clients simultaneously, and that can mean that we need more APs due to capacity rather than RF coverage.

So, how do we plan out our wireless design?  Then, once deployed, how do we validate the design to make sure it is functioning as expected?  These common scenarios are exactly where NetAlly can help.  For wireless network planning, the AirMagnet SurveyPRO is the application to use.  For post-validation and troubleshooting, the AirMapper™ Site Survey application runs on both the AirCheck™ G2 and EtherScope® nXG to collect performance metrics and upload them to the Link-Live Cloud Service. This cloud service is included with the purchase of a device in the network tester portfolio.  Within Link-Live you can create and view visual heat maps to see how the design measures up.  If it is determined that the design needs to be modified; once the changes are implemented, you can run through the Air Mapper process again to check the results of your modifications. The goal of AirMapper™ Site Survey is to take the stress out of wireless site surveys by allowing you to gain meaningful data quickly and easily.  The primary features of AirMapper™ Site Survey include:

  • The ability to view SNR, noise, and interference measurements directly on the AirCheck™ G2 or EtherScope® nXG devices.
  • Comfort of completing full enterprise site surveys without balancing (potentially clumsily) a laptop and multiple external antennas.
  • Find rogue devices with automatic triangulation of wireless access points on a floor plan with the use of the Link-Live Cloud Service.
  • Even complete Bluetooth/BLE surveys with the EtherScope® nXG to gauge Bluetooth coverage areas.
  • Automatically find typical Wi-Fi issues with the new InSites™ feature in the Link-Live Cloud Service.

A versatile feature of the AirMapper™ integration with Link-Live is the ability to view different types of heat maps. Typically, when I think of a wireless heat map, it is just strictly the AP coverage, or essentially a visual representation of each access point’s signal strength.  Well, that is just one of the many pre-configured heat map visualizations that exist within Link-Live.  The pre-configured heat maps that you can choose from include:

  • Signal (dBm)
  • Noise (dBm), SNR (dB)
  • Co-Channel Interference
  • Adjacent Channel Interference
  • AP Coverage
  • Min Basic Rate (Mbps)
  • Beacon Overhead
  • Max Tx, Max Rx Rates (Mbps)
  • Max, Min MCS

In addition to the existing features, NetAlly recently released the InSites™ Intelligence feature into the AirMapper™ platform by directly integrating it into the Link-Live Cloud Service.  The InSites™ Intelligence feature allows customers to create custom pass/fail thresholds so that when survey data gets imported into Link-Live, users can quickly and easily see where potential issues reside in the Wi-Fi environment.  In addition, InSites™ will also automatically filter and show the problem areas right there on the floor plan.  A major goal of this feature is to provide actionable data to IT generalist teams so they can make intelligent wireless decisions without needing to be Wi-Fi experts.  This can be a simple, yet powerful way to get through root cause analysis.

The different customizable threshold categories include:

  • First AP Coverage
  • Secondary AP Coverage
  • SNR (dB)
  • Co-Channel Interference
  • Adjacent Channel Interference
  • Beacon Overhead
  • Max TX Rates (Mbps)

InSites™ Intelligence takes the data supplied to the Link-Live Cloud Service from the AirCheck™ G2 and EtherScope® nXG analyzers and provides an easy to digest view into the ‘goods and bads’ of the wireless infrastructure.  For each metric category, you can simply see if the environment test is a pass or fail, what the threshold limit is set at to determine a failure, and the value of the worst reading in the environment.

Let’s face it, gaining actionable insights into RF environments can be difficult without the right tools and applications to help.  It can force you to spend time inefficiently guessing and checking to try to get to the root of the problem and implement proper resolution.  In some cases, you just need a visual representation of the physical RF environment with metrics that can allow you to see problems and data to help point you in the correct direction to resolve those issues.  The combination of the NetAlly network testers, AirMagnet SurveyPRO, AirMapper™ Site Survey software, and the Link-Live Cloud Service can help you do just that.  For more information, check out this introduction video to NetAlly and their products.

For more information on NetAlly network testers and analysis solutions visit www.netally.com/products

Ep 74 – Holiday Special

The best way to spread some cheer is by recording a podcast for all to hear! Please enjoy our holiday special episode.

Check out our Patreon – https://www.patreon.com/artofneteng
Follow us on Twitter https://twitter.com/artofneteng​
Follow us on Instagram https://www.instagram.com/artofneteng/​
Like us on Facebook https://www.facebook.com/artofneteng
Join the group on LinkedIn https://www.linkedin.com/company/artofneteng/
Check out our website https://artofnetworkengineering.com
Merch Store – https://artofneteng.com/store
Join the Discord Study group – https://artofneteng.com/iaatj

Toys For Tots

***This article was written by Patrick Kinane. We thank Patrick for this contribution!***

I recently used my Cisco Time2Give to help families in my local community via Toys For Tots. While I was there volunteering for 7 days, I was fortunate enough to do a little of everything from receiving toys at the warehouse to sorting the toys and filling orders, even delivering toys to a family. I will elaborate on my experience, but here is a short list of cool things that happened throughout my Time2Give.

  • Working with Toys For Tots, in general, was pretty cool (details and pictures later)
  • Seeing fellow Marines I’ve not seen since 2012
  • Working alongside my new team (which we are all remote) and working with Cisco Partners from ePlus
  • Getting to know people who were delivering toys (I always asked where the toys were coming from)
  • My Toys For Tots journey
  • Delivering toys to the house of a recipient family
  • Shout out to fellow Cisco employees

Let’s go on down to the unit and dive into things.
Note: I am a Marine; I like books/blogs/reading material that has plenty of pictures… That’s right, reading material = pictures.
Other note: I promise there will be a lesson here for people working in (or aspiring to work in) tech.

General Coolness
Working with Toys For Tots (T4T), in general, was pretty cool. Just seeing the piles of toys coming and going. Getting to be a part of it. I do not have the metrics from this year as the current T4T campaign is just now coming to an end. I was able to get the metrics from 2020 though, and I expect this year’s numbers would be comparable.

  • 27,000+ children received toys from the local T4T campaign (servicing North Carolina)
  • Roughly 80,000 toys distributed
  • $86,000 raised
The basketball courts and the warehouse. That’s where all the magic happens.

Among the highlights of the campaign, for me, was when a U-Haul van filled with $28,000 worth of toys arrived:

It took a very long time to offload that truck. You cannot see all the bicycles under that massive pile of toys, but there were so many really nice bikes. I asked the driver where the toys were from, he said a family donates each year, and last year they did $22,000 worth of toys (I will revisit this later).

One of the Cisco Volunteers (Michael Dayton) started a toy drive in their neighborhood. Michael was collecting toys at his house, and then in the morning, he would bring the toys to the warehouse. Then the toys would be offloaded and sorted accordingly. Afterward, Michael worked the day helping with whatever tasks were waiting. One more thing about Michael, he is a former Marine (SFMF). The next photo shows just one of the toy hauls Michael and his neighbors collected.

Reconnecting With People
Something to note about the unit where we did T4T is that I was once a Platoon Sergeant at the same unit; with two other Sergeants (Hudson and Presslein). The uniformed picture captured the last night we were together (back in 2012). That night Hudson and I got pulled over in a taxi by 9 sheriff deputies, but that’s a topic for another time (maybe something to cover in a podcast episode of The Art of Network Engineering). The following picture is Hudson and I at our old unit, assembling bicycles for T4T.

I was also able to work with two other Marines from the old unit. One of them is Lewis, who is the CEO of SPOTR. He does a ton of great work for the community (locally and nationally) and does work with USVCHernandez is the Marine I was referring to in this tweet. This is one of the important lessons for people looking for a job in tech. She is about to graduate with a degree in cyber security, and she met cybersecurity professionals. They discussed which certificates to go for and why; furthermore, she received some excellent guidance with career development and job market trends. People also started reaching out to their networks to ask about vacant cybersecurity positions.

Team Building and Partner Relationship Building
Several people from my new team were able to join us, and working with my new team, in-person and sitting down together for lunch was huge! I believe it was an intense way for us to finish out our first year working together. It was also great that new relationships between my current team and people from my previous team were able to take root. Even more beneficial is that we worked alongside Cisco Partners from ePlus, which facilitated some Cisco Pre-sales Eng interacting with Cisco Partner Pre-sales Engineers (Brian Meade specifically – those in collab may know his name).

What’s The Story Behind The Toys?
I would get to know people who were delivering toys, and while talking with them, I would always ask about the background of the toys. Some originated from office toy drives such as a dentist or doctor office, others neighborhood toy drives, often a fire station (bring a toy and get to ride the fire truck), some veteran groups, and boxes outside local stores (Walmart, Target, Starbucks, Grocery Store, etc.).

What about the family who donated $28,000 worth of toys? The gentleman driving the U-Haul of toys is a local firefighter. He let us know the family lost their son in a tragic car accident in 2003. The family donates all those toys in honor of their son, and it is incredible how something so sad has also become something so amazing.

My Toys For Tots Journey
I joined the Marine Corps out of high school. This took me from New York to some yellow footprints, and I eventually landed in Huntsville, Alabama (for a few months to learn a job). While I was there, it was the holiday season, so we Marines helped with T4T. The best part of that experience was interfacing directly with the families. While giving a bicycle to a family, it reminded me of when I was a kid, and someone delivered toys to our place (good ole 1994). I remember getting a bike from him and wondering why, but not thinking much of it because I was psyched about the new ride. At T4T in Huntsville, I realized the deal with the toys and bike from that day back in 1994.

While on Active Duty that was my last time working with Toys For Tots; however, I joined the Marine Corps Reserve after my time on Active. This is important because Toys For Tots is a Marine Reserve initiative. So I was back to interacting with T4T during the holiday season while I was a reservist; however, I left the unit in December 2012 because I began working at Cisco in January 2013 and I wanted to put all my focus into Cisco.

While working in Cisco TAC (pre-covid) I used to work with several other veterans to help facilitate the T4T drive throughout the Cisco RTP campus. I eventually stepped away from Toys For Tots (having more kids, studying for CCIE, etc.); however, this year was my first time back since pre-covid and it was awesome!

Something I want to reiterate is, my experience and the experience of my fellow Cisco employees was made easy by Cisco providing us with Time2Give.

The Best Part
There’s a family about 20 minutes away from where I live today. The children lost their dad earlier this year, and a wife lost her husband. A mom and dad lost their youngest son, and two brothers lost their younger sibling. Assisting families during trying times is one of the most rewarding things I’ve ever done. I wish everyone who donates their time, money, food, toys, etc., could see the impact of their efforts because it is beautiful.

Shout out to fellow Cisco employees

  • Michael Dayton
  • Kenneth Onyebinachi
  • Kyle Davenport
  • Taylor Noumi
  • Bill Davis (and wife)

Check out these other people from my team who are making an impact in their communities using Cisco Time2Give

Ep 73 – Zeros and Wons

In this week’s episode A.J. and Andy interview David Alicea! While David was exposed to the Cisco Networking Academy at a young age in High School he actually didn’t land in Networking until later on. Since then he has been a career Network Engineer and recently landed himself a position at the mothership, Cisco. Hear how did it all in the week’s episode!

You can find more of David:
Twitter: https://twitter.com/Dayvee87
LinkedIn: https://www.linkedin.com/in/david-alicea-495b5733/
Blog: https://zerosandwon.blog/

Check out our Patreon – https://www.patreon.com/artofneteng
Follow us on Twitter https://twitter.com/artofneteng​
Follow us on Instagram https://www.instagram.com/artofneteng/​
Like us on Facebook https://www.facebook.com/artofneteng
Join the group on LinkedIn https://www.linkedin.com/company/artofneteng/
Check out our website https://artofnetworkengineering.com
Merch Store – https://artofneteng.com/store
Join the Discord Study group – https://artofneteng.com/iaatj

Transcript

A.J.: [00:00:00] This is the art of network engineering podcast

This podcast

and share the stories of fellow

David: network.

A.J.: Welcome to the art of network engineering. I am A.J. Murray at @NoBlinkyBlinky. How are we doing tonight? No, that’s Blinky Blinky, Blinky,

uh, Andy and Andy laptop. All things Andy can be found at permit IP. Andy, andy.com. Danny, how are ya, man?

Andy: Um, I’m better than I’ve been in a really long time. And, uh, I tell anybody why yet?[00:01:00]

A.J.: What does it say, Randy? You’re killing.

Andy: You’re killing.

A.J.: I know. Isn’t it. Time to let the cat out of the bag? I don’t

Andy: know. I feel like the whole team should be together. I feel like maybe it’s too early. There’s some timing stuff that, you know, it’s going to be great. And I’m really excited. Let’s build some suspense.

I have a cool announcement. Yeah. There’s, there’s a cool announcement coming. I think there’ll be a lot of happiness for me and, uh, just know that I’m making a big change and I’m very happy about it. So overdue, but it

A.J.: shows,

Andy: it shows. I’m sorry. You guys have had to put up with, uh, a whole Andy for two years, but you know, I, I, I apologize.

That’s what, you know, you’ll find out who your friends are, right. People that put up with. It’s your toughest times and coming out of some of that. And, uh, yeah, you guys are still here, so thank you friends. I’m good. Hey Jay, [00:02:00] tell me, are you doing,

A.J.: doing very well? I have completed week three of the new job.

I’m settled in pretty acclimated to have a bunch of projects assigned. So in fact, I’m taking my first work trip tomorrow. Get to go to Maine, work on site with a customer. So I hear Maine’s beautiful.

Andy: You got to like get the hang or you’re just in and out.

A.J.: Um, I’ll hang for like a night. Yeah. Yeah, just onsite for one day to do a quick switch install.

So sweet man.

Andy: That’s great. That’d be good to get your first one under your belt, the new place, right? Yep. Yep. That’s great.

A.J.: Maybe switch a little switch chassis, switch a little switch. Actually. It’s pretty funny. So this customer is somehow got their hands on. No shit. One of the last 5, 29, 60 Xs. That’s Cisco

and now they’re gone.

Andy: Wow. Are they like.

A.J.: But over there end of life. End of sale. No more. And you’re you, you want [00:03:00] to

do the install on this one,

Andy: so well, can you get support on end of life? I always there’s end of life. End of support. And like there’s a

A.J.: well, there’s, there’s end of sale, which means that’s the last time that you can sell it or buy one. Uh, and then there’ll be end of support, which means you won’t be able to renew your support on there.

And then there’ll be like absolute end of life. Like not going to touch it anymore.

Andy: So you’re going to install switches that Cisco no longer will support.

A.J.: I’m going to install switches at Cisco no longer will sell. Oh gotcha. They will continue to be supported for the next, I don’t know how many years I’d have to look up,

Andy: but awesome.

Yeah. I always get close. Get confused in the different end of. Terminologies. Good stuff, dude. Don’t break spanning tree, right?

A.J.: No, I won’t. I promise I’ve done it.

Andy: That’s all. I’m just saying don’t pick Spanish rates.

A.J.: I know I’ve done it too.[00:04:00]

And now it’s time for some wins. Winning in our discord channel this week is Dalton B. They moved into their first network position coming from the service desk in their organization. And they’re currently working on their CCA. N a congratulations, Dalton, U M U T C 24, late at an it support position.

Congratulations, Carlos RM passed the Jan CIA Juno’s ticker bit it’s past the J and CDA. Congratulations to grits. Number Mang past the dev net associate who was staying Pilgrim past two exams this week, the NRC and the CISP congratulations. RFG labs passed to CCNA and smiling. Chris, our very own smiling.

Chris was promoted to networking and InfoSec manager. Congratulations, Chris run and. Took on a new network engineer position and starts [00:05:00] Monday. Congratulations, run and myrrh pup 5 69 past the Encore. Big win there. Congratulations. MoPOP welcome. And thank you to new patrons, Ryan, Eddie, Canada, Adam Smith, a new identity, and yet sick.

Thank you so much for your support of what we do here are the art of network engineering podcast. And thank you to all of our fans for listening and downloading and liking our content. Following us on all of our social platforms, uh, that really helps an awful lot. Uh, if you’re interested in joining the Patrion program, you can go to patrion.com forward slash art of net enj.

And I want to personally wish all of our listeners, a very happy and safe holiday season. Thank you so much for listening to the art network engineering podcast. Now back to the show. I am very excited to introduce our guests tonight. If you have spent any time on Twitter or in our discord, [00:06:00] you are completely familiar and should know the name.

David Alicia, David, welcome to the show. I’m so excited to have it here.

David: Hello, everybody happy to be here?

A.J.: Oh yeah. So, uh, if, if you’re not following David, if you haven’t talked to him, uh, then you will be happy to know that, uh, David has recently changed jobs and, uh, and so David, where do you work these days?

I

David: am currently working at a small organization. I am currently at Cisco. Ah,

A.J.: that’s awesome. That’s awesome. So I’m sure like many, a network engineer in our field landing at a, at a large OEM, such as Cisco is. The dream, right?

David: It’s it’s been a journey I’ve been trying to get the Cisco for a while now. Yeah, door’s just never, uh, never opened in the past.

And then things worked out and [00:07:00] you know, it was the right time. That’s one thing. I believe that if something’s not working out, it’s just not the right time it’s going to happen. It’ll happen in the future.

A.J.: I think we were talking about this earlier. Somebody commented something in the failure plaques channel, right?

I think you would comment on, on there too, but like, uh, when you get to know that beans new opportunity. So sometimes it’s, it’s just about timing, right? Like if, if the world’s telling you now it’s not the right time, like the something better is coming your way, don’t get defeated. Uh, when you, when you get to know, and just like you said, you had gotten to know a few times from Cisco before, but this time they said, yes, and here

David: you are, that’s natural.

I mean, it’s natural to, you know, if you get rejected, it’s natural. Like, well, you know, what’s wrong with me, but it’s just not the right time. You go back, you get better, you continue improving. And then from there, doors continue

A.J.: to open. Awesome. And so what, what do you do for Cisco?

David: So I’m a systems architect in enterprise, uh, near Chicago.

[00:08:00] Um, I have three customers that I work with. I am three weeks since I am learning as much as I can about them. And as well as furiously bookmarking, all the links that people are sending, there is a lot to learn, uh, you know, coming from an organization where we had, you know, 3000, 3,500 employees to an organization like Cisco, it’s, it’s a different animal.

So it’s, there’s a lot to learn. There’s a lot of people to, to figure out who does what, uh, so I do appreciate the people that have reached out to me from Twitter though. There’s a, there’s people at Cisco that, that I follow them and they follow me and they’ve reached out on WebEx and like, Hey, it mean it.

So I, I appreciate that. It’s it’s, everybody’s been very cool.

A.J.: So

Andy: you said system architect, right? Sorry. Yep. So, so that’s like the essay role, right? You also hear it like se so. Okay. Can you explain to people because I I’ve recently learned about that role and I’m still not sure. I understand. What an [00:09:00] essay does.

David: So I am a partner to the customer, right? If the customer has any technical concerns, if the customer wants more information about different product lines, uh, if the, if the customer needs some advice, uh, if the customer needs some assistance, uh, assistance, roadmapping, anything that has to do with Cisco and technology, I’m there to assist them.

I’m there to be, uh, you know, the hands and feet is needed. Right. Um, of course there’s other partners that they work with, but from the Cisco side, uh, I am the one that’s given me advice along with the account manager now.

Andy: So it sounds a little bit like sales, but it’s not a sales rep.

David: It is still under the sales umbrella.

So that’s definitely coming from operations, going into sales. This is my first sales role. It’s a, it’s a different, uh, you know, it’s a different world, so there’s a lot to learn. Uh, and I’m, I’m diving head first into it. Pre-sales right.

Andy: I consider that pretty,

David: pretty much. I mean, even, [00:10:00] even after the fact, I still support the customer through the entire process.

Andy: Right. So I’m in an organization and you’re assigned to my account and I’m like, Hey, we got upgrade some switches and we’re not exactly sure what we want to do. Maybe we go to spine leaf. Now we’ve got to talk to David and you can direct us through, Hey, here’s, what’s going on? Let’s talk about your needs.

Right. Here’s our

David: product lines. Yeah. How does it fit into your ecosystem? Is there anything better that we can do? Uh, you know, the goal really is that everything’s working together, right? We don’t want something to be siloed, want everything to work together for your benefit. Awesome.

A.J.: So what I’ve been under the impression of in, based on being a customer myself and now working on the partner side is that, that kind of relationship between your, uh, your sales, uh, account manager and then the essay it’s kind of like, almost like CFO’s CIO kind of like advisory role to the business.

Is that kind [00:11:00] of, uh, an accurate ish?

David: Yeah. I mean, right now I’m, I’m trying to meet as many people as I can on the customer side. I mean, I’m sending notes and like, Hey, you know, I’m here. I want you to know, Hey, I exist. You know, I wasn’t here before reach out to me. I want to have a relationship with you. So I just want to be there for you.

That’s really what I’m working on now. But yeah, it’s, it’s really that

A.J.: very cool. Very cool. Well, you haven’t always been at Cisco and you haven’t always been into it or network engineering. So what, what kind of, you know, originally, oh, so long ago, or maybe not. So also long ago, uh, got your interest, got you into it.

David: So pretty much it was back at high school. Uh, you know, one of the, one of the classes that was offered back in high school and, you know, I’m, I’m, I’m 35 years old right now might not look at, but it’s cause I shaved my head, but yeah, back then in high school, uh, there was Cisco networking academy, [00:12:00] so that’s interesting.

And then

A.J.: your high school, you had it, you had a Cisco networking academy. I don’t think we’ve heard that too much. I think we’ve heard like network academies at like colleges and stuff, but I think we’ve heard it too much at high school, so that’s

David: really cool. So quickly we put it in high school.

Andy: Quick point when I was in high school, I don’t think we had internet at the high school.

David: Just a couple computers. We had

Andy: a computer lab, but I’m pretty sure there’s no internet. I’m just, I’m just level-setting as you know,

David: you’re not as you have a whiteboard, was

A.J.: it still

Andy: chalkboards? It was the stone tablets.

A.J.: The overhead projectors would like to really

Andy: I’m sorry. Ignore my dumb jokes, David.

So you’re in high school and you heard about Cisco networking academy. You’re like, huh, this is maybe a thing

David: that was one of the choices. And I believe it was tied to as well as getting college credit. [00:13:00] So from there on, on, I think every Tuesday and Thursday, I was able to go to university to take, uh, to take a class at the university and I would get college credit beforehand.

So, you know, my mom pushed me to those programs. It’s like, do as much as you can. Um, you know, my parents education was really, you know, almost non-existent. I mean, my, my mom for years worked in housekeeping and my dad, I remember when I was young going around, picking up scraps of metal and sell them at different places.

I mean, that was really the history. So they wanted me to do, uh, even better. Right. So any program that opened up, go do it, go do it. It’s going to be good. No, don’t do this. Don’t pick up scraps like me. That’s what my dad would say. You know, you can do so much more. So I was like, Hey, you know what? I’ll, I’ll take that advice.

I’m a big believer in education. So Cisco academy and in high school was really a door that opened up, uh, for technology, right. It wasn’t exactly, you know, networks [00:14:00] interested me at the time, but it wasn’t what I dived into when I actually went to college.

A.J.: Okay. So you didn’t leave high school with your CCNA?

David: Nah, no, no, no. I know there’s some people out there, there are, that’s great for them, but I did not. And my plan actually was to do programming. So when I went to college, I was looking at web design. I was looking at programming and that that’s really what my bachelor’s was. Computer information systems.

Was it database administration? Um, I, my goal was to do DBA as well as do some web design on the side, things like that. And it just never materialized.

Andy: You went through the Cisco network academy and you did not get your CCNA.

David: No, what they did in high school actually is instead of, instead of the CCNA, they had us take the A-plus, which was interesting.

So they, I remember that because I failed it. Didn’t pass. Plus

Andy: that’s the hardware. And [00:15:00] that would be a good place to start right in your journey. So

David: we would sit, we would sit in the classes and you know, our professor. I remember, I remember we would always call him coach, coach Colbertson somewhere on LinkedIn.

I’m sure I’m listening. Right. He’ll probably listen to this. I’m sure. But, uh, yeah, we always call him coach. He was a great teacher and that’s one of the things that really, uh, continue to spark that interest in a bunch of the students is because he had such a good personality that he could bring us into the lesson.

And it’s like, look, you know, look at, this is how the internet works. You know, this is, wow, this is great. This is how I can get the most.

Andy: Did that grab your attention at the time? Like, oh my God, this is magical. Like,

David: I mean, this is how communication works, you know? So that was interesting, but it wasn’t interesting enough that when I went to college, I was like, oh, I want to do this for the rest of my life. I still had that interest in design and creating websites and doing programming and learning that, that side of the house.

Andy: So quick, quick question. [00:16:00] Before we struck a chord, when, when you talked about your parents and how. You know, I don’t want to say they struggled. Right. But like you said, they didn’t have much of an education and they, they worked hard jobs that, that rings true, you know, for me to a certain extent. So do you feel, did that have any impact or did that mold kind of what you wanted for your life?

Like, you know, I have, so I have like memories, right. Of like certain portions of my life where like I wasn’t wearing the nice clothes. The other kids were like, you know, when you have these experiences, sometimes, you know, as a child that like stick with you and I, for me, I remember thinking, you know, like someday I want something different.

Right? Like I don’t want my kids to feel like I feel right now, you know, and I know that that’s kind of like heavy and crazy, but you just hit me. How was it growing up right. With like parents that weren’t educated and really had to work hard. Like, did that have an impact on you and what you wanted?

David: It did.

I mean, you hit the nail on the head. I [00:17:00] mean, really it was, I mean, to me it was, what’s going to be my legacy. Right. You know, my parents, you know, they dived and did everything that they needed to do. Uh, you know, they, they poured into me as much as they could. Right. So I want to do the same thing for my kids.

Right. So what’s going to put me in a place where I can pour as much into my kids as I can, you know, you have to get better. So that’s definitely something that I was looking for, even when I was young. I mean, even when I was young, I think I had, you know, the soul of an old man. I mean, that’s just how it works.

Um, I even, I even got married early, so my wife was 19 and you know, I was 22. The reason we got married early, we’re just all, you know, we, we look young, we’re old people mentally.

Andy: I love that, man. And how, how did you. Did you, so computer science, I’m jealous of people like you, right? Cause I failed at a computer side.

So did you always know that something you wanted it was that a natural progression for [00:18:00] you? Did somebody recommend it to you?

David: I think we went through, I remember sitting down and then looking at all the programs and that was the program that really spoke the most interest. It’s like, oh wow. I can learn programming, create something for myself at the time.

I remember, I think, I think X-Box had X and a, which was like the Microsoft developer for X-Box and stuff like that. So then that interested me a bit. So I was buying X and a books. I think I still have one or two behind me.

Andy: Um, that was interesting language under the

David: hood of, for X-Box for X-Box yet to create games.

It was X and a pretty much loud thing, but it used C-sharp. So that’s an, they utilized these sharp bikes and I guess was just the architecture of the program. But, um, Yeah, that was interesting to me, creating something from scratch, creating a game, creating a site, creating something that I could call my own that sparked the interest.

So I went in that direction and, uh, and somehow I ended up in database administration and I [00:19:00] in sequel and Oracle and all this, I don’t know how, but that’s the track that I went into. Uh, but it still involved me learning, C-sharp learning Java, uh, which I now have completely forgotten so long and I haven’t used it, you know, use it.

Uh, but, uh, at, at one point, uh, I was able to get a job one, the beginning, when I first started college, I got a job at the help desk, which was extremely beneficial. I mean, if you’re starting out and you’re starting for a place, you know, to look and learn a help desk, a service desk is definitely a place that

Andy: I’d recommend you get that in college to help us spot.

Now, was that an internship through the program

David: student worker? It was a student worker spot. So, uh, I worked for the help desk. I picked up the phone professors and students yelling at me, complaining tickets, all this stuff, I’d go around, running around imaging computers, you know, uh, formatting stuff. I mean, there was just a ton of stuff that we had to do.

Um, I [00:20:00] remember we had a DBA at the campus and for some reason, Uh, she had me running Oracle scripts, like to create student accounts or something. I remember that. So that was pretty cool. There was a bunch of stuff in the beginning, the campus wasn’t centralized to all the other universities. So we had their own exchange, throwing everything.

So I remember creating email accounts when I was a student worker. I mean, there was a ton of stuff I did. So, um, it was a little bit of everything and that kind of, that helped me piece together, you know, all these different areas and it, and how they work

A.J.: together. Hmm. Very cool.

Andy: Getting that experience, man.

It was huge. That’s amazing. My experience. I couldn’t get arrested when I graduated because I didn’t do any internships. And I was, I was working full time, you know, waiting tables, pay my rent and stuff. And my buddies who did internships, they all had, you know, multiple offers when they got out and you know, I’m in a row and they’re like, where have you worked?

What have you done? And so anytime I hear, you know, where somebody is in [00:21:00] college, right? Like, Hey, what should I do? Like get experienced if you can, like, you know, there’s, there’s internships, there’s student work. You’re getting hands on. You know, not that that turned into a job for you at graduation. Maybe it did.

You have experience, which is what everybody wants, right. When you get out, what do you know, what

David: have you done? And I think the biggest part is, you know, getting to know people, you know, cause in the university, I got to know the other teams to help us managers, you know, th th th there was a network team on site.

Uh, so I got to know them. Uh, I got to have a relationship with them, build that relationship up, uh, even as a student worker. So, I mean, one of the things that I always tell people is, you know, work hard, you get noticed, right? We were talking about that, you know, before the show is like, work hard, you get noticed, you know, 99% of the time, if you work hard, if you put in the work, somebody’s going to look at you and be like, wow, this person busts.

They, you know, they deserve to move up or they deserve something right. 99% of the time. There’s always that 1% that it doesn’t work out, but I didn’t have present of the time. [00:22:00] Somebody will notice you. So that’s really what happened. And, you know, there was a desktop, a full-time desktop support, uh, with the university that opened up, you know, to drive around between the satellite locations.

And they, they asked me if I was interested in it, you know, it wasn’t the greatest pay in the world, but it was like, you know what, I’ll take it. You know? Cause there was some benefits behind it, you know, they would help pay for, for some of the schooling as well. So it was like, yes, this is great. So there was some good benefits behind it was that.

That was full time and you are still in school. I was still in school, so I was still going for my bachelor’s. So did

Andy: you have to scale back on the amount of classes or did you do full-time school

David: by the, by the time I got the full-time desktop support, I was pretty much almost done. Okay. Um, so I did that for about a year.

By that time I had graduated, um, After desktop support with the university. Uh, another spot with the university opened up, which was a lab manager position, which was being a manager, a supervisor to the [00:23:00] student workers. So I started managing the student workers, you know, picking the schedules, helping them out with escalations, things like that.

Uh, and I was like, Hey, you know, we were working with this guy now he’s the boss. So it was pretty cool. I got along with everybody like everybody, you know? Um, so I think, I think it was, it was pretty good. And, and, and it helped me, it turned me into a little bit of a teacher because at that point, you know, I was showing the student workers, well, this is how you do things.

This is what’s the best way to, you know, image this procedure, you know, careful with that professor. You know, I think it helped out a lot. And doors continued to open after that, within the unit.

A.J.: Wow. Very cool. So as a student worker, was that like a paid position or was it just the work experience that you got?

David: There was a paycheck. Yeah, I wouldn’t say it was a lie. You know, the government was paying something. I know it through the school, but there was a paycheck and, you know, I was able to take my girlfriend at the time. I, you know, on a [00:24:00] date to cellies or something somewhere, you know, I’d worked out

A.J.: and

David: I got, I got the bills paid, but you know, my, my parents, I was still living with my parents and they were helping me out as much. They go, you know, that’s one thing that I’ll say that, you know, Throughout my time in high school and the university, you know, they, they did everything they could to make sure I was successful.

So that’s one thing that I, I do say, and I want to thank my parents for everything they did, because obviously, you know, if they hadn’t pushed me as much as they did, if they hadn’t helped me out, uh, you know, by talking to me and even monetarily, I wouldn’t be where I’m at today. Right,

A.J.: right. That’s awesome.

That is awesome. You’re you’re a supervisor at the university. How long did you work for the university?

David: Uh, I was honestly, I was there for I at the campus at the campus and it was the campus in Chicago. I was there. I mean from 2005, through [00:25:00] 2009 in various positions, eventually I was managing the help desk.

I was managing some of the other lab managers who managed the student workers. And these were full-time, you know, adults that I was managing at that point. Um, So, I mean, I continued to do my fan. I continued to work and learn and teach pretty much as much as I could. Um, and eventually, um, you know, I was in a, in a position where I was able to help at the campus.

I was able to help the, the network team. So there was a network team that took care of all of the campuses around the U S uh, they would, they would install the switches. They would do all the work, they would change the lands, they would do everything. So they placed a little bit of trust in me. And they said, Hey, you know, you’re at the campus and we know you, you go install this right.

You help us out. Uh, so that is really what opened the door. Into network engineering. Right? So that sparked the interest. I was like, this is pretty cool stuff, right? This is, you know, the roots of communication. This is where it’s at in the closet, so that, you know, they [00:26:00] continue to put some trust in me and to, to give me things to do upgrade this or help somebody out with, you know, taking, uh, taking a blade out of the 6,500 and swapping it out.

Uh, so those opportunities continue to pile on, uh, you know, they probably didn’t want to do the cable work. So I ended up doing all the cases. I’m sure there was a little bit of that, right. I enjoyed it. I mean, it was just like, this is great. Um, so there came a time where corporate needed somebody to help out with physical security.

They had a huge physical security project to switch everybody over to Honeywell, I believe. Um, so they, you know, I was voluntold. I was like, they’re like, Hey, you’re perfect for this. This is a great project that you can assist with. We’re going to take you out of your help desk manager role. And you’re going to come to corporate to help us out with this.

So I, I did that for six months and eventually it was like, um, you know, my, my, my boss at the time was like, well, you know, we’re filling up your position cause you’re probably going to stay at corporate. And I’m like, well, I don’t want to do [00:27:00] physical security, you know, for the rest of my life, I want to do something else.

So at that point I felt sort of homeless. Like where am I going to go? Right. So, uh, that’s when I started just looking outside for something else and the network team heard that I was looking in. Well, one of the engineers that I had a good relationship with, they’re like, Hey, we have a spot open. Are you interested?

I’m like, yeah, I’ll, I’ll go. You know, that’s definitely something I was interested with. And, and, you know, I knew them. And honestly, the interview was like, Hey, you know, do you want to be a network engineer? Yes, you’re hired. That’s really what it was because

they, they already, you know, the network engineer that, that, um, that was working with the campus that was helping me out. He was the one teaching me everything. So he knew technically, you know, where I was, he knew everything. He was the one that taught me everything. Yeah, this was at the university. Now it was [00:28:00] at the corporate side.

Andy: Yeah. They knew you, they knew your work. You had you’re like 17 managing people.

David: I was young. I was 1920 managing people. I mean, it was interesting, but at the same time, I was trying to soak up as much as I could and learn. I kind of resentment

Andy: that you didn’t have a technical interview for your network engineer only because the pain that I had to endure for mine, they mopped the floor with me and made me cry and then gave me a job.

You’re just like, yeah, my second interview,

David: my second interview with my, within the second place was definitely a little bit more technical, but yeah, it was like, Hey, do you want to be a network engineer? Yes. That’s what that, that’s all it was. Oh, university

Andy: is that? Yes. I’m sorry. You believe it was because.

David: Uh, cause I, I, you know, I spent that time building that relationship. Right. They knew me and they were the ones that taught me. So they knew who I was. They knew [00:29:00] I was responsible. I was a hard worker. That’s why I always say work hard, get noticed, right. Work hard. And you know, sooner or later it’s going to happen, have some patients.

Um, so I, I spent, uh, you know, as a network engineer there for corporate, I spent five years.

A.J.: Five years. Okay. So that, so I’m trying to keep track here. So this was like 20 13, 20 14.

David: I started as a network engineer in 2011. So 20 11, 20 16.

A.J.: I did a couple of years of the security thing. Maybe

David: I did. It was about six months or so beginning of 2011 when I did physical security project.

Uh, and then at the end of 2011 is when, when I was in a position opened up for network

A.J.: engineering. Okay. Got it. Got it. So you were doing the network engineer thing for corporate. Did you work primarily with Cisco? Did you [00:30:00] decide to go after your CCNA?

David: So it was, it was a mixed environment, was a mix of Cisco and Juniper and the data center.

So it’s a mix of both. So I had to learn both

it was definitely the

at the time I was used to Cisco already from the campus, you know, putting in V lands and different things on switches with Cisco. That was like, when I get to the data center and there’s Juniper, I’m like, what is this stuff? Right. But it was sort of familiar because Juniper had that programming feel to it.

So it was interesting, but I wasn’t, I wasn’t even thinking about certifications at that time that, that wasn’t something that anybody had taught me that wasn’t something that anybody had spoken to me about. There was a person in the team that was working on their CCIE and they were going through their second attempt.

And, uh, pretty much he spent some time talking to me and about the [00:31:00] importance of certifications and, and how you can learn a lot of from certifications. And that, that sparked the interest. And I was like, oh, maybe I should take a look at a certification that I can know. I can jump into her learn. Uh, so I that’s when I went for the CCNA.

Uh, but yeah, that was, it took somebody to, to sit down with me and explained to me like certifications can help you with certification, even though you might not use it for a particular job. You’ll learn a lot out of the process.

Andy: And it was this, the CCI you guy is that who you were talking to us as the

David: CC again,

Andy: it’s one of those things that you’re just sitting down and getting to know him.

What’s up, I’m studying for this thing. What is that? And then you kind of started to describe the value of certifications. Yeah. Yeah.

David: That was a breath of fresh air. Cause I mean, honestly, you know, a lot of, a lot of places that, you know, in the past that I’ve seen, you know, there’s people that are there, they’re working there, they bust their butt, but they’re comfortable.

Right. So they don’t want to get better. They’re they’re good at where they’re at. They want to stay there. They’re happy. [00:32:00] Right. And then there’s people that want to go that extra step up. Right. They want to do something harder. They want to learn something new. Right. So this person was really had that mentality and he kept pushing me and he sparked that interest.

So that really is why I started pursuing certifications and continue to dive deeper into that work engineering.

Andy: How did that see Sandy study and go, was it easy for you at this point? Because you had experience and you’re a bright guy in computer science or was struggling.

David: It helped. It helped. Uh, I think, you know, I still struggled through some of the topics I struggled through today.

Like spanning tree spanning tree. Sometimes it’s like, ah, this is terrible, but it’s something that I need to get better at. Uh, but it, it helped that, you know, I, I went straight to eBay. I started pursuing purchasing equipment in the beginning. Uh, in the beginning, I, you know, I bought, I bought, I think I bought an adolescent console.

I bought a bunch of stuff and I had a, you know, [00:33:00] it wasn’t a rack. It was just like a little table. And I just tossed the equipment on top. I was consoling into stuff. I mean, that’s how I learned. Uh, and this was like in the infancy of GNS three. So as soon as I discovered GNS three, though, that’s when I, the equipment started picking up a couple of spider webs.

So that’s when I started diving more into, you know, GNS three, but in the beginning it was all, especially for my CCNA studies, it was

Andy: all hardware let’s. Please pause for a moment. So you work on physical hardware, your lab, your studies, and then you pivoted to. Ambulation virtually virtualization and what the right term is, but do you feel, you know what I’m gonna ask AIJ cause I like, what was the value in your physical lab, as you know, did you learn things in your physical lab that you couldn’t have learned in GNS?

And so new person coming to you, I’m studying for my CCNA. Should I build a physical [00:34:00] lab or should I just go the virtual route? Because you have experience in both. What do you think

David: I’m a believer of doing both? I mean, I still have, you know, a lab here, physical gear, you know, you have to touch stuff, you know, that that helps, you know, plugging in a cable.

There’s a certain satisfaction. You get of plugging in a cable that you cannot get out of, you know, CNS three out of Eve on CML. There’s something different about it. You know, if I could buy a whole rack of equipment and a chassis and stuff like that and put it here and not have to pay for that electricity, that would be great.

But because I’m not going that route, you know, that’s when I have to rely on the virtual a bit more to do some of the bigger

Andy: stuff still true. But I remember in the CCNA and it’s definitely been true in my experience. And prod, I forget it’s like 65 or 70% of network issues are at the physical layer. So for me, all that stuff I learned with like bed ports, bed cables, bed, pin outs, bed cards, you know, you [00:35:00] name it.

It was supposed to be a roll over from the MSN. And it was a crossover. Like there’s so many physical problems that you run into. I had T1 DSU, CSU cards for additional ports, and they had a special pin out, like just so many things, you know, you drag a couple of pretend, routers up dragging a couple of 10 cables in GNS, or even you’re done if you’re brand new and you’ve never touched gear, you know, for me, if 75% of the, you know, 70% of the issues are physical, I think it’s valuable to get, you know, some, like you say, get some experience.

You know, the physical, if you’ve got a spanning tree loop up and everything’s down, it’s nice to see, oh, that’s what all the Amber lights mean. And my switches, you know what I mean? That’s true. GNS will teach you that. So anyway, I’m off my soap box, but you said physical.

David: Yeah. But it’s true. I mean, there’s stuff.

I mean, I remember a big portion of tickets I’ve ran into, especially in manufacturing. A lot of times those issues were resolved by just swapping out again. Right. I mean, the, you know, the we’ve always had to take it. It was like, well, this phone is showing some sort of [00:36:00] network error on the phone, this access point no longer connects.

And I was like, did you try swapping out the cable? No. As soon as the cable swapped out, it works like perfect that cable’s probably been sitting there for, you know, 10 years, you know, some rats are chewing on it or something, uh, you know, swap it out and it ends up fixing the problem. So a lot, a lot of what happens out there, you know, for somebody coming in fresh is physical, you know?

So that is important. That’s key learned the physical safety in your

Andy: labs.

A.J.: Yeah. I mean, I think if you’re just starting out, like in a physical lab, when you have like a certain foundation, you can get a virtual lab. Like, I, I don’t, I’m thinking a lot of people realize this, but you can actually make the two talk to each other, like that is possible.

Uh, and there are certain economies of scale that you can get out of a virtual lab that, you know, you just can’t really do affordably on a physical level, right? Like if you want to do larger typologies and really do some fun stuff, especially if you’re going for the [00:37:00] NP level, it’s a lot easier to do with a virtual environment than it is for the physical environment.

You know, like I’ve got four riders and four switches, but there’s only so much I can do with four routers and four switches, but there’s a lot I can do with 20 virtual routers that, you know, I definitely can’t do in a, in a physical, I

Andy: learned so much, you know, you’re building that virtual environment on a server usually.

So like for me, I had to learn this exci I had to learn VMware. I had to learn about virtualization and. You know, do I want to hyper threat or not? And how do you allocate the resources and power management and even just that building your emulated environment, you know, and yes, exci as an example, just so much to learn there.

I mean, you could spin it up in the cloud and be done with it and that school too, you know, but I learned a lot by having a physical server, even, even though the, the networking was emulated

David: and then the important part is, do, do something right. Grab some gear, do something virtual, but that’s a huge way to learn.

I mean, if you want to [00:38:00] get better, if you want to learn, you have to practice, right. I mean, if you didn’t jump on that bike, you, and you wouldn’t know how to ride that bike, right. You can’t just look at a bike and be like, I know how to ride that bike. And you’ve never been on a bike before. Like you have to, you have to hold things, you have to touch things yet.

And that’s the way you get back. Yeah,

A.J.: I liked that. Got to do something. Hey, Awan fans AIG here for an ally. You never heard of an ally. Sure. You have. They came from the same group of engineers that brought us network tools from flute networks NetScout and now they’re net ally. They know networking. I’m a network engineer for a partner.

And when I go to a customers and see, they use net net, ally, I know it’s going to be so much easier to troubleshoot issues. We might run into the name may have changed in an ally, but the way they build tools, hasn’t changed a bit. They ask what would a network engineer want to help make their job faster and easier.

And then they go build it just like this ether scope. NXG that ally is here to help that ally simplicity, visibility, collaboration, visit net ally.com today. Now back to [00:39:00] the show. All right. So I think you, you said manufacturing there. So at some point then you, you left the college, uh, the corporate side of the university and you landed in manufacturing.

It sounds like. Was that the next step?

David: Yep. Yep. So towards, towards the end of 2016, Yeah, I, I wanted a bit more, right. So, um, you know, the opportunities weren’t happening locally. So I decided to look out and, um, pretty much I found a place in manufacturing, um, that, you know, I was doing everything right. We, we had another engineer, um, myself and my manager and the three of us would handle the worldwide networks.

Uh, it was about 40 sites, uh, you know, between sales offices and full plants and warehouses. Uh, so that gave me a huge opportunity to learn even more. I learned a lot from the team and pretty much, you know, we did a little bit of everything back at the university. It was very siloed. All I would do is rout switch and a couple of [00:40:00] firewalls.

That was it. And, you know, they had, there was a voice to learn. There was a security team, there was a team for that, a team for this. So that’s all I did was route switch and a little bit of firewall. So that was my mentality. So when I got the manufacturing, it wasn’t just route switch, a little bit of firewalls, route switch, CoLab security, uh, everything.

Right. So we did everything and it was nice because that was, I mean, that was definitely drinking from the fire hose because. I had to learn all these things that I had no idea about. Right. I had to learn about ice. I had to learn about stuff. Watch, uh, you know, uh, I had to learn everything CoLab. I mean, at the campus, all I would do is, you know, deploy a phone and that’s all, that was my experience within call manager, but I had to learn and I was taught, you know, what a PRI is, you know, how does this connect to the router?

What does it do? How do you configure it? Call manager? So all of these different things I had to learn know because I had to support these sites. I had to troubleshoot these rights. Uh, you know, there wasn’t anybody else besides the three of us. So, uh, [00:41:00] that was, that was huge. And I learned a lot and I learned a lot because I saw from the ground up, especially when we have to open up a new site, how things come together right now, all these networks come together, building the phones and building the voice environment for a site, putting in the security route, switch a little bit of everything wireless.

So I, I learned a lot. It was a, you know, from 2016 and onward, it was just. The information and information and information. And during that time, you know, I pursued my, my CCNP CCNP as well, back then, route switching to shoot. Um, so, you know, th that was something that continued to push me forward. I, I, you know, when I look at a certification, you know, certifications are great, but that to me is a big vehicle and learning, right.

I have the book, I have all the material. This is knowledge that I’m gaining, you know, so it’s great that I pass their certification tests, but let’s say I don’t, I still learned a lot of information that I can use in my environment of the knowledge. Yep. [00:42:00]

A.J.: I think

Andy: it’s the best part of certification. It’s just a learning plan.

Oh yeah. Right. Here’s all the stuff that you need to learn for this thing I wanted to ask you. So where did you look for your job? Where do you look? I mean, are you a LinkedIn guy? Like you’re at the university is that you want to look around, you find the manufactured. W where does

one

David: look? I mean, so up to that point, I mean, once I went to college and I was a student worker, I mean, and doors continued to open from there.

I wasn’t actively looking. Right. Except when I was, you know, at that weird period where I needed a job when I was in physical security. Um, so I was just looking at, uh, you know, different opportunities online. And I think that opened up, but. It was still within the university. Right. Even the network engineering portion there, it was still within the university.

So going to manufacturing, that was really the second, I would say the S the second company that I’ve worked for at that time. So I, I went for, to a recruiter and I was like, Hey, help me out. You know, this is my [00:43:00] skillset. Uh, what can you do for me? You know, what, what can we, what can we do, right? Where can I go?

So the recruiter helped me out and that’s, uh, that’s when, you know, there was a couple of different places, you know, and I was like, well, I don’t want to go to downtown, you know, all the time. And it was, it was the middle of winter. And I’m like, ah, this is too cold. I’m not going out there right now. But so, you know, I interviewed in manufacturing and it was a good opportunity, you know?

So that, that opened up through a recruiter. Where

Andy: did you find.

David: Now I’m trying to think, but it was LinkedIn though. It started off in LinkedIn. So LinkedIn recruiter and then from there. Awesome.

A.J.: Very cool. Very cool. So if you could kind of like summarize the value of, you know, having a recruiter, right?

Like if you didn’t have the recruiter, you’d have to go try to find a job on your own. Uh, and, and the recruiter inherently has a number of job listings available to you that they can come through and kind of see if you match up so that they’re doing a lot of the [00:44:00] legwork on your behalf and helping you weed out like good opportunities versus maybe not so good or bad opportunities.

David: I say, you know, it’s an extra set of. Right. I mean, you’re looking, you’re doing your thing, but you have somebody who’s fighting for you. Right. Um, you know, somebody who who’s, you know, you can give a list of requirements, Hey, this is what I’m looking for. Uh, if you can find something like that, that’s my goal.

So, you know, you have somebody in your corner who’s fighting for you as well.

Andy: The brochure, the other nice thing too, in my experience was that the recruiter who placed me in FinTech, you know, he had a working relationship with the company already. They had placed a couple other people over the years. And so, you know, they don’t know me from anybody.

Right. But because the recruiter has a relationship with that company and they’ve placed them and they develop trust. Then when the recruiter brings me in, it went, you know, Hey, we talked to this guy, we pre-interviewed him. You know, we think he’s a good fit. So it’s, I don’t know that might be stating the obvious, but I feel like if I had just cold applied, [00:45:00] you know, to a company, as opposed to a recruiter, They trusted already.

Cause they found good talent for them and brings me in for an interview. I feel like you just put you on another plateau, you know?

David: Yeah. There could have been a history there, you know, and that helps you out, you know, and it can help you out in your pursuit, uh, that why not, you know?

A.J.: Yeah. We’ve put any of the reputation of the recruiter has with that company that they’re working with.

Right. Like if they’ve brought them talent before, like there’s no reason to not believe that they wouldn’t do it again. Yeah. I think

Andy: it really helped me, you know, and in my particular situation, because of the relationship they had probably not the same everywhere. Right. But I’m a big fan of LinkedIn. I mean, I’ve never worked in an industry.

Where I’m being reached out to on a constant basis. Uh, you know, both my phone, my email, LinkedIn, before I got into network engineering, I was always the one looking for a job. And now it’s just, it’s so weird to me still. It’s just inbound. You want to work over here and do this thing? Like, I feel like [00:46:00] the hot girl at the party, you know, it’s kinda nice.

It wasn’t like that before I T so it’s a good, he loves me.

A.J.: That’s great. That’s

Andy: great. So we’re in manufacturing

A.J.: ha. Yeah, we’re in manufacturing. You sounds like you got your CCMP route switch and I think last year, you, or maybe it was earlier this year, it all blends together now with this whole COVID thing, right? Yeah. I really do remember that you got your CCNP security, so your NP.

Let’s dive into that journey. How was the CCNP security? I’ve heard? The score is just a monster.

David: It is definitely a, you know, there’s, there’s some marketing behind it, you know, it’s all the Cisco products and the Cisco security portfolio. Well, there’s the technical below that as well. Right? So, uh, it, it reminded me a little bit of the Palo Alto with a PC and S.[00:47:00]

Um, but a lot bigger. It was way bigger. The Palo Alto server was definitely, you know, some marketing, a tiny bit of technical, and that was it. It’s a good cert, but the CCNP security, the score is definitely deep, goes over the portfolio. Uh, there’s a lot of technical behind it. You know, it goes, it doesn’t dive into everything fully either.

Right. So, uh, it leaves the door open. Like, you know, the, the score talks about email security. Uh, so I decided to go as, as my, uh, smaller exam as my concentration, I went to the email security side. Uh, it was something that I was doing at work as well. Right. We had, uh, ESA, we went to CES. I had some experience with that.

But there was stuff that I found on the exam for, for the SISA S E S S a, it was like, what are we talking about? What is this? I mean, it’s deeper. And I had some experience on the product and I’m like, [00:48:00] I don’t remember clicking on this or reading about this. So it keeps you on your toes. It was definitely a, an interesting exam was a good exam.

Um, I think I had an easier time with the score than the Seesaw. I, I fought. I would, I thought I’d have a harder time with the score exam. You know when, as I was taking it, I don’t know if maybe because it was, it wasn’t that deep into the portfolio. And technically, uh, I passed that one and it was a better score than I had at the CSO.

The CSO was like one more wrong answer. I would not have passed. And that was, that was it. I was on the edge. Uh, so there was a couple of questions. I’m like, man, I have no idea. And I’m working, I’m looking at this thing every other day, you know? Um, but I passed, you know, it was, it was good, it was a good exam.

Um, but that, you know, a lot of what I’ve been doing in manufacturing and a lot of what the whole team was doing in manufacturing that, you know, the last couple of years has been security [00:49:00] related. You know, we had a security team, they did a lot of policy and a lot of procedures. We were the hands and feet for the security team.

So we did everything. We did ice. We did StealthWatch flash. We did dual implementing and architecting and designing everything that was really us. So. That, you know, I I’ve been doing security forbid and that’s why I was interested in the score and then the CCNP security.

A.J.: Very cool. Very cool. So I think it’s important to kind of talk about that, that marketing thing, the marketing aspect of these exams, and it’s, it’s a hundred percent true.

It’s there on the Encore and you know, like you said, that Sarah and the score and I, I think it’s, it’s important to know that like, as, as if somebody that’s up and coming. When you, when you have to study all of these things, you’re getting more exposure to the Cisco portfolio and that’s that only benefits Cisco.

Right. But I think that there’s, there’s people that kind of take a couple of different approaches when they’re putting together their enterprise environment. Either they, they go all in on one vendor or they do best. Right. Like, I want the best firewall and I [00:50:00] don’t care if it’s Cisco or Palo Alto or whatever.

I just want the best firewall. And then I want the best switches and then I want the best routers and it doesn’t have to be all the same vendor. I just want the best of the best. And then there’s people that go all in on a single vendor story. And there’s, I think there’s benefits to doing both, right?

Like if you, if you go all in on Cisco, then you get the full Cisco story. Right. And, and that’s where you tend to get like, and, and, and not just Cisco, right? Like if you go all in on Juniper, all in on, whatever, if you go all in on a single vendor, you’re going to get the bigger picture. You’re more analytics typically, right?

Like that’s usually the benefit that you’re going to see because they all connect to each other. They all talk to each other. There’s probably some additional benefits of security when you do best of breed, like you got the best of the best, but they don’t all talk to each other in some form or fashion, unless you’re using like, you know, some agnostic form of, of automation or something like.

Like the rolling your own kind of solution that, that you would get from the vendor. So taking these exams [00:51:00] gets you that exposure, and then later on in your career, you’re like, well, I need some email security. I remember reading about the Cisco email security appliance. I had no idea Cisco had an email security appliance personally, but, but that’s, that’s, that’s where he like, well, I got to start somewhere.

I remember reading about this thing. So let me go check that out. So that’s, that’s why that’s there and it’s, it’s, it’s beneficial

David: in my opinion. Oh yeah. I think everybody does it. I mean, it’s just, it’s just part of the, part of.

A.J.: Right. Exactly.

Andy: Hey Jay, you just sparked something. So each ecosystem has their own, I guess, analytics engine or platform or whatever, and they don’t talk to each other.

Right. Cisco has there’s junior pros. There is a risk that has there’s there’s no, like you said, you have to either go with third party, you know, open source or like build your own. I mean, that’s, that’s not ideal, right? Like, is it just because they’re in competition with each other? Like, there can’t be an, I mean, this might sound silly, but there can’t be like this open standard platform that [00:52:00] pulls all the competing vendors because we don’t care like you and I sitting at the chair, you know, the company went with Cisco over some stuff, Juniper, some stuff for Risto for some stuff, but why do I have to suffer as the operator that I can’t have a, uh, you know, uh, analytics that pulls it all into one dashboard?

Like that seems like a, I dunno, it’s an inherent flaw to maybe the competitive model. Maybe that doesn’t make sense. You kind of sparked it as you were talking.

A.J.: Right. I think it’s just, you know, they, they want you to buy into it, right? Like if, if DNA center could control other vendors, devices, where would be the kind of drive to continue to just buy Cisco if they could, you know, cause there’s other switches might be a little bit cheaper than a K

David: I think companies are getting better at third party integrations,

A.J.: especially with a nice,

David: yeah, I think it helps, but they’re not going to be fully open.

Right. I mean, sure. There’s some compatibility and there’s some, you know, a couple of things they do, but for the [00:53:00] most part, there’s that competitive nature

Andy: behind it is. Yeah. And I mean, I get the competition, but I’m also like, I’m thinking like, wow, if one of these big name vendors came out with a solution that really did, uh, you know, vendor B says, you know what?

I know vendor raised the. But I’m going to build a platform and pull all their stuff into, and maybe that’ll push us over the top. You know, if you could go with vendor B and they’re happy to let you see all of your vendor, a appliances and analytics and data, I don’t know, from a high level, if I was sitting up on a throne somewhere, but you know what?

These, these guys are. You know, they’re there cause you’re not going to buy less of one V I don’t know. I don’t know how all that money stuff works, but it’s probably another topic for another show, but

David: I solution to rule them all,

A.J.: if a vendor, if somebody actually made a single pane of glass or something that actually talked to

Andy: everything, there’s an example, right?

Like [00:54:00] I’m thinking Cisco Juniper they’re number one, number two. Right? Like if Cisco came out and said, you know what, we’re going to pull all junipers into because for multi-vendor shops or vice versa, I’m surprised they haven’t because like, God, you know, automation, single pane of glass, like they could, I think, right?

Like it’s a lot more

A.J.: effort on the vendor’s part. Right? Like you have people at Cisco that know Cisco. Now they’re going to have to go and really learn Juniper, or they’re going to have to partner and work on it together.

Andy: Yeah, I just, I probably oversimplify, but like routers or routers a switch, a switch.

Yeah. The CLI is going to be a little different, but like SPF doesn’t change from, you know, vendor to vendor. Like there, there are, there are standard routing protocols that can talk to each other. I don’t know why something like you can’t have that for analytic. But maybe it’s pie in the sky stuff. I mean, we can’t just create a protocol that talks to everything and pull it in.

But I guess that screws up the competition so

David: we

A.J.: can do it.

Andy: I could barely [00:55:00] write Python, man. I’m not the guy. I got to find a guy I’ll, I’ll pull it up or something. He’ll do it for us.

A.J.: I got a guy online. Just grab Eric,

Andy: sorry for the tangent. And just, you got me thinking.

A.J.: No, it’s a good conversation. Good conversation.

So, um, how long were you in manufacturing before you decided to go to Cisco and what, what in the end cost you. You know, if she want to get into it. W w why did you decide to start looking around? Did the opportunity come knocking at your door? Did you go looking for opportunity?

David: I say a mix of both. Uh, you know, let’s say that, uh, during my time in manufacturing, an opportunity came knocking and it didn’t work out.

Right. Um, what’s this going to beginning? Um, and that’s one of the things that I’ve said on the discord, you know, when we’ve talked about, you know, the things happen at the right time, you know, it’s not meant to be right now. Um, [00:56:00] it’s going to, something will happen in the future. There there’ll be a better opportunity for you in the future.

You know, don’t let that completely, uh, get you down, right. Rejection sucks, but there’s always something better. There’s, there’s something coming down the road for you. So don’t squander that opportunity that you have now to learn and soak up as much as you can, where you are. Um, so, I mean, I learned a lot of manufacturing.

It was a great experience. But, you know, opportunity came knocking and it was, it was, uh, it was something I couldn’t say no to it finally happened and the doors open and I I’m appreciated out of everybody. You know, I appreciate everybody I’ve worked with. Um, I never have anything bad to say. That’s one thing I always tell people is, you know, Uh, don’t burn bridges either.

That’s more advice that I have. The tech world is small and you know, I’m talking to, I’m talking to people at Cisco now, and they know people that I’ve, you know, the, that I’ve worked with in the past or, you know, somebody actually, [00:57:00] somebody on my team now on my team now I worked with back at, at, at the.

They were in networking as well. Oh, wow. That’s crazy. You know, they paint me and they’re like, Hey, you’re joining my team. And I’m like, oh, wow. Okay. So never burn bridges. I mean, we’re going to run into each other at some point, treat everybody with respect, you know, help everybody out. You know, we’re all in this together.

A.J.: You know, that’s a great point. Like if, if, when you had left the university, if you had burned that bridge, and then you’re applying to this job at Cisco and that guy could have been like, oh man, don’t worry. When he left here, like 10 years ago, he really he’s screwed in summer. You just said like it was

David: flipping three months.

It was flipping people off.

A.J.: It’s very true. Like if you, if you had taken a different route out of there, uh, no pun intended, like it could have ended up differently for you trying to get into to Cisco this time around. So I agree with you a hundred percent, like, as, as big as the world is like, for some [00:58:00] reason it just feels that much smaller.

And that has nothing to do with a small town. Like you’re in Chicago. Like you could have left there and be like, I ain’t ever going to see him

David: here. You are like, exactly. So, I mean it’s, and that’s just the way I was raised too. It was like, you know, treat people with respect, you know, in the course of your career, you’re going to run into a bunch of different types of people, right?

I mean, you’re going to run into people that are very supportive. You know, for you, you know, they’re there, they’re there to help you. They’re there to push you along and help you out. But you know, you’re gonna run into other people that, that are just negative all the time. And that’s just the way the person is.

They might be negative with you. They might be negative across the board. Uh, you know, to me, you know, I’ve ran into both types of people throughout my career, and I don’t say anything bad about anybody. It’s like, Hey, you know, thank you for teaching me. Thank you for, you know, showing me what, what you could, uh, you know, I’m, I’m here in the end of the day, I’m here to learn.

I’m here to get better, right? Uh, I’m not here to spend my time and waste my brain cells on people who are negative or there’s better things that I [00:59:00] could be doing with my time. You know? Um, so things, you know, things that are negative people that are negative. I just ignore it. It’s like there, that’s always going to come towards you.

Ignore it. You know, stick to the people who are there that are supporting them. Haters

A.J.: gonna hate,

Andy: but there’s so much good secret sauce in here. You said so many things that I wrote down a couple, like work hard. You know, my, my wife has a great saying, like he can’t teach hustle. Right? It’s it’s intrinsic.

If you have a lazy player out on the court or in the field, you can’t coach it out of him, you can’t motivate them. Like, so, you know, it’s such a simple thing to me because I’ve always been a hard worker. My wife’s a hard worker. You’re, you know, you guys are like how just putting the effort, you know, wake up grind.

It’s easy. I would venture to say that, you know, I’m not the smartest guy in the room, but I try to make up. And blood, sweat, and tears, right? Like I’m going to get in there and work hard and I’ll work harder than the other guy. That’s smarter than me. If I have to, like, [01:00:00] you can control what you can write to be, to be successful.

And then you, and that will get you noticed, like you said, work hard, get noticed. Like, I love that. Like, cause you know, the, the guy that’s passionate or the girl that’s like working really hard, they do stand out because you have schlubs that just want to hide or not do anything or, you know, learn the new thing.

And then attitude too, like reputation, attitude. I mean you’re as work are, get noticed, develop a reputation, have a good attitude. Like these are, some of them are soft skills. Some of them are hard skills, but it’s, it’s kind of like the secret to success almost like, and they’re all, you don’t need a one 90 IQ, right?

You don’t need a triple CCIE. Like these are things I think anybody can do work hard, get noticed, develop a reputation, have a good attitude. Like wow. I dunno, you’re blowing

David: me away here. I mean, that’s, that’s the way, I mean, it brings me back all the way to, when I was managing student workers, I was a student worker and then I was managing the student workers and I would always tell them the same thing.

And, you know, student worker positions, you know, there’s some people that came in and was like, I’m just here for my seven bucks [01:01:00] an hour. And to get out of here right now, they don’t care about me on the help, fast. They don’t care about, they don’t even care about it. Right. They’re just there, you know, I’m done.

I gotta go to class. You know? So, I mean, I still took the opportunity and talk to people it’s like, do as much as you can learn, work hard. I mean, even if you don’t, even if this is not going to be your career, right, you’re not going to be at the help desk forever. You want to go do something else. You’re seeking a degree in accounting and this is all we have right now.

Uh, You know, just try to learn something, do your best, you know? Uh, that’s it, I mean, it really comes down to that. Um, and, and doors open up, right? I mean, just be patient, you know, cause some people, you know, oh man, I, I spent two hours working hard and nothing happened. Yeah. It’s not a two hour thing. It’s a whole journey.

Right. It’s days and weeks and years, um, be patient and things will have.

Andy: You’ve you’ve mentioned patients a couple of times, so, and I think that’s so key, you know, we, we won’t want, we want when we want it. And then, you know, [01:02:00] like this might not been the first time you interviewed at Cisco. I don’t know, but I know that when you get that opportunity, like, for me, when that happens for me, I’m like, oh my God, this is my one shot.

If I don’t get this, I’m going to blow it. And then it doesn’t work out for some reason. And then it’s like, wow, that was it. I’m just destined for mediocrity. Cause I couldn’t get that thing I wanted. But like you said, you just gotta be patient put in the work like anything. Right. Like we were shopping for our house years ago and like, we really wanted this one and it didn’t work out and we were so upset, but then the next one was twice as good as the last one.

And we’re like, oh, like you can’t see around that next corner. You know, you just gotta have faith and kind of be patient. And if you put in the work, it will work out right. Maybe not on, on, on our timeline and patients is hard. Right? Exactly. I think it takes discipline, like, okay. Like accepting a failure, accepting it didn’t work out.

Like that’s, that’s a mental game. Right? Some discipline it’s. Oh yeah.

A.J.: And it’s even harder. These days in the instant gratification world we live in, right? Like click a button, get an instant happiness. [01:03:00] Look, I got to wait a month for this next house to come on the market.

Andy: Yeah. I mean, I can go in a half a dozen different social media platforms and get a dopamine hit immediately.

And now I gotta wait, you know, six months. Cause this one interview didn’t work out. Like no way, dude. Like that’s forever, you know, but like perspective patients. I could put it in the workout perspective. There you. Got some good stuff here. We have so many people coming to us, I think, starting out, like what, what can I do?

What should I do? You know, it’s always like, well, CCNA is a good start, but a home lab, but these are just things that anybody can do. I think that’s what everybody’s looking for. Like, how do I do this? You know? Cause you don’t know where to start and how hard it’s going to be and it’s expensive, blah, blah, blah.

But there’s just certain traits. I think that are transferable in any industry. It’s not just networking or it, you know, everything you’re talking about. Yeah, a good person create value, have a good reputation. It’s simple, but I guess it’s not like common knowledge. Isn’t that common they say, right? Like [01:04:00]

David: it’s true.

I mean, a lot of times we concentrate on the technical ability. Right. You know, I’ve, I’ve ran into people in my past. It’s like, wow, this person knows everything. I mean, you can ask them any question, they know everything, but they have a terrible attitude. You know, they, they, they treat you like trash and it’s like, I don’t want to work with this person.

You know, it’s horrible. Right. You want to be somebody that can get along, can teach somebody, you know, people look up to and you have a personality, you know, that that’s the type of person you want to be. Um, so yeah, you can go around and pursue every cert that’s out there. Right. But if you’re still, you know, treat people like trash.

People are not going to like you, people are not going to want to work with you that doesn’t open up opportunities for you. You also, I mean, treat people well, it comes down to that. I mean, it’s just being human. That’s really, what we’re talking about today is, is do some of these basic things that, you know, basic human skills, you know, be human, treat [01:05:00] people, good.

Treat people with respect to work hard. I mean, things will happen, right.

A.J.: Be a good human

David: compassion have confession, you know, there’s people out there that are struggling. There’s people out there that are learning, uh, you know, they might not learn at the same pace you were learning. You don’t have some compassion and have some empathy.

You know, all these words that I’m just saying are just they’re they have nothing to do with Cisco. They have nothing to do with Juniper. What F five with forever. This is things that apply across the

Andy: board. Yep. Kind of soft skills. He right. Like exactly, but kind of, you know, and anybody could learn. You know, anybody can learn them like you can.

I think the episode is going to be David Elisia, a good human

David: He’s a good human, you know, it’s true. I mean, that’s really that’s if I can teach somebody, one thing is just, you know, work hard will [01:06:00] be essentially be a good human, you know, things will open up, you know, have patience, the inverse of being a good human words,

Andy: David Alisia don’t be an asshole.

we’ll

A.J.: go with that. Good human. I like that.

Andy: That’s much better.

A.J.: All right. Well, our guest today is David Alicia solutions architect with Cisco in the Chicago area. And David, where can people go to find more about.

David: Oh, wow. Uh, you know, I’m on the interwebs. Uh, I am on, I am on the Twitters, uh, Davie 87, B a Y V E 87 on Twitter.

I also have a blog, which I know I need to get back to. I need to start blogging again. I need to start writing, uh, it says zeros and one w O N so play on words, zeros and one.blog. I

A.J.: love it. It’s a [01:07:00] great title. I like that. Excellent. And we can also find you in our discord. It’s all about the journey.

That’s the same as your Twitter handle. I believe. Yeah. That is correct. So if you want to join our discord and chat with Davey, you can do so you can go to art of net end forwards or outer dynamics.com forward slash I a T J I got to think about that all the time. It’s for, it’s all about the journey, because it is all about the journey.

Join, learn with people, share your knowledge, uh, you know, and just a lot of that good human stuff David was talking about, right? Like if you find somebody that’s struggling with a topic that you have had success with, spend the time, teach them, share your knowledge. Don’t don’t look down on them. Like, oh, you, you don’t know every single OSP F timer.

How dare you be a engineer. Exactly. Exactly. Awesome. David, thank you so much for joining us tonight. This has been an absolute pleasure. Any, uh, any last words of wisdom before we close out? [01:08:00] Uh,

David: yeah, no, I think, I think we’ve said every single type of motivational way that we can

A.J.: all good stuff though. Good stuff. Excellent. All right. Well, thanks again for. Uh, thank you to all of our patrons. Once again, we appreciate all your support and we appreciate everybody’s support. If you want to join your breakthrough on program, you can do so@patrion.com forward slash art of net enj. Uh, and we appreciate the support from our patrons as well as everybody, you know, or the download, follow us on Twitter or whatever you do.

We love it. We thank you so much. All of that mojo really, really helps. We’ll see you next week. On another episode of the art of network engineering podcast. Hey everyone, this is a J. If you like what you heard today, then make sure you subscribe to our podcast and your favorite podcatcher smash that bell icon to get notified of all of our future episodes.

Also follow us on Twitter and Instagram. We are at art of net enj. That’s part of an

David: E T [01:09:00] E N G.

A.J.: You can also find us on the web. At art of network engineering.com, where we post all of our show notes, you can read blog articles from the Cocos and guests, and also a lot more news and info from the networking world.

Thanks for listening. .


Ep 72 – Cooking up a New Career

In this episode, we chat with Chris Randall. Chris was worked as a professional chef for over 13 years and has recently transitioned into a career as a Cloud Consultant. Chris’ work ethic, drive, and ability to communicate help him stand out and have gotten him noticed, on more than one occasion. We can all learn a lot from Chris’ recipe for success!

You can find more of Chris:
Blog: https://ipvpho.wixsite.com/frombitestobits
Twitter: https://twitter.com/IPvPho
GitHub: https://github.com/IPvPho
LinkedIn: https://www.linkedin.com/in/christopher-randall-%E2%98%81%EF%B8%8F-83a48572/

Check out our Patreon – https://www.patreon.com/artofneteng
Follow us on Twitter https://twitter.com/artofneteng​
Follow us on Instagram https://www.instagram.com/artofneteng/​
Like us on Facebook https://www.facebook.com/artofneteng
Join the group on LinkedIn https://www.linkedin.com/company/artofneteng/
Check out our website https://artofnetworkengineering.com
Merch Store – https://artofneteng.com/store
Join the Discord Study group – https://artofneteng.com/iaatj

Transcript

A.J. Murray: [00:00:00] This is the art of network engineering podcast

in this podcast

and share the stories of felon networks.

Tim Bertino: Good morning folks to Bertino with you here live and the AONE traffic chopper we’re hover and high above the 4 0 4, where the traffic police definitely have their work cut out for them today. We’re seeing an abundance of one way traffic on all northbound egress points and our southbound and grass points have been totally saturated.

This all seems to be linked to a local construction crew, accidentally severing a major traffic back. With a backhoe. Unfortunately, that’s leading to a massive degradation of services all day. Today. The only vehicles we are seeing get in or out safely are [00:01:00] ones that have been given an F priority by their local authorities.

We’ll check back in later today, as the situation continues to develop, this has been timber Tino coming to you live above the 4 0 4 back to UAJ

A.J. Murray: N a O N E studios. Very appropriate well-timed intro from Tim given the Comcast outage today. That was fantastic. I can’t wait until Dan edits that and posts.

Andy Lapteff: When we hear the chopper sound. I almost, I almost started to do like a, but I didn’t want to

mess with Dan’s and post side. I just left it alone.

A.J. Murray: Oh, that’s going to be good. Nice, nice work, Tim. Nice work, Tim. He is at Tim Bertino. I am a AIJ Murray at no Blinky Blinky. How are you doing, sir?

Tim Bertino: Hey, damn good. I got to give credit.

That was another, uh, Jordan masterpiece. Thank you, Jordan. Uh, I am a little bit down about 10 minutes ago or so my son ran in here wearing his, uh, sheriff Woody [00:02:00] pajamas and Dan wasn’t here to get my

will at the time. That again, next time.

A.J. Murray: Yeah. Yeah, that was cute. That was cute. Andy at Andy left, half permit IP, Andy, andy.com. How are you, sir? Man.

Andy Lapteff: I’m great.

A.J. Murray: I know. You’re great. And I can’t wait for you to share why you’re

Andy Lapteff: great. Great. And I can’t tell anybody why. Sure

A.J. Murray: you can. This one’s not going to drop for like a month and a half.

Andy Lapteff: Yeah,

A.J. Murray: I’m good. Yup. Yup. Where’d it come from, Andy? Is there anything you can talk about,

Andy Lapteff: uh, specifically, what have you got told me on the spot, bro, basketball court today, maybe you could talk about, okay. Yeah, we did. We got a, we got a basketball court in the driveway, so, so my, my wife got a full ride on a basketball scholarship in college. So [00:03:00] she’s no, she’s no joke. And the kids are four and seven.

So no time, like the present to start training for scholarships and. Daddy daddy

wants to retire before he’s pooping

his pants. So we gotta get these kids to move in here in the, in the right direction. So we cut that later, but yeah, no, everything’s good, man. That my son loved it. We were out there tonight under the

light of headlights.

I mean, it was dark out in the driveway. He just didn’t want to stop playing. So yeah,

well, it was nice. Nice, nice. Everything’s good. What are we getting together soon? I think based on your, your new news that you can’t talk about, but I’m having a baby now. That’s not it moving on. How you doing? Hey Jay, what’s going on?

A.J. Murray: No, I’m doing, I’m doing real well. Um, E whether appear, it’s starting to turn cold, so I’m going into hibernation mode. Um, but yeah, no, uh, [00:04:00] other than that, doing good. What do you do for your fire pit? Uh, I cut down trees on my property. Oh,

Andy Lapteff: seriously? Okay. Yeah.

A.J. Murray: I’m not that I have a ton of property, but I had to shut down a trays and I don’t have a shit ton of trees anymore.

I’m trying to figure out how to fit a half quarter wood at my house and for my fire pit and it’s become a whole thing. So I don’t have trees to cut down

Chris Randall: anyway.

A.J. Murray: Nope, no. And I just stack it nicely to back your property next to your shed or something. Yeah. Good idea. All right. Temps are falling like a homesick rock, a deal that they were up in the sixties.

They popped back up there today, but they’re, they’re heading down. There’s snow in the mountains in Vermont. And, uh, pretty soon there’ll be snow all around my house and I will be questioning why once again, I live in the Northeast. So, um, I’m a few hours south of you quite a few hours. And it’s been in the mid thirties each night in Fahrenheit.

Been. Yeah, it’s happening. Yep. I’ve had to turn my heater on. [00:05:00] I’m not, I’m not happy about that. So when can I hold out till, uh, didn’t, didn’t make it very long this year.

And that sound means it’s time for the wind’s winning in our discord channel this week is Tim Mixi. He passed his AWS certified cloud practitioner. Congratulations, Tim track it. Pacer recently accepted a position as an avionics integration engineer at blue origin. Congratulations, Lexi. IPV four past his comp Tia sec, plus exam.

Congratulations, David Missy has passed the AWS solutions architect, associate exam. Congratulations, David and Jay finished his bachelor’s degree in it. Networking. Congratulations, Jay. That’s awesome. Very proud of that. Welcome to new Patriots this week. Jason Belk and teeth in Sachar. I hope I pronounce that.

Right. Thank you so much for your support of what we do here on the podcast and being a member of our Patrion [00:06:00] program. And also thank you to all of our listeners for your support, for what we do. We really appreciate it and couldn’t do it without it. Thank you so much. Now, back to the show, I am very excited for our guests to see evening.

Um, if you live on Twitter, like I do, you’ve probably seen him pop up there before. Um, I am honored to be able to share his story and, uh, Chris, welcome to the show.

Chris Randall: Thanks. How’s everything going,

A.J. Murray: going well, um,

Chris Randall: let’s see here.

A.J. Murray: Yeah. Yeah, I know. We’ve, we’ve talked in the past about, uh, having you on here. So Chris, you’re excited

Chris Randall: to beyond.

A.J. Murray: I was going to say, tell your face,

Chris Randall: this camera so bad. I might as well. No, it’s fine. We just call that resting Chris’ face

[00:07:00] RFCs and RCS.

A.J. Murray: I don’t, I don’t even know where do we begin with Chris? I

Chris Randall: mean, how do we even start this?

A.J. Murray: What does Chris do now?

Chris Randall: So I just recently took on, um, a new opportunity at CDW in the ACE program. And so I’ll be focusing solely on Azure infrastructure for the next 12 months and then kind of grow from there in cloud.

So that’s my current,

A.J. Murray: what is ACE for people like me that

Chris Randall: don’t know what ACEs, so ACEs.

Um, ACEs like associate consulting engineer, and it is basically a fast track program where they build out, um, an itinerary education, different technical things that you have to do. So certain certifications based on your track. And then they have, um, the soft skills [00:08:00] side consulting, um, like shadowing and things that you do have traditionally consulting engineers over the course of time to get you prepared to be a full speed, like consulting engineer.

A.J. Murray: Very cool. So it’s a, a, a bootcamp of sorts.

Chris Randall: Yeah. Some say it’s like five to 10 years stuffed into. 12 to 18 months. Oh, that doesn’t sound stressful at all.

A.J. Murray: A bit intense.

Chris Randall: It’s a, it’ll be interesting. Um, they just changed the format too, so they knocked it down from 18 months to 12 months. So we’ll see. Wow.

I’m one of the first Guinea pigs for that socio fast.

A.J. Murray: Very cool. Very cool. Well, congratulations on that while you, you haven’t always worked in tech though.

Chris Randall: Yeah. Uh, definitely came from a different background. Um, started in food service for the last 13 years. Uh, wow. So, um, got started in high school. We had like, um, a [00:09:00] career center where you could go kind of pick, you know, I wanted to do welding.

I couldn’t get into the program cause they only took two kids. Culinary S uh, culinary class was open. So I took the opportunity. It was a free afternoon open, you know, we got to do three hours a day. They’re just cooking and playing with food. So I did that my junior and senior year of high school, and like really excelled at it.

Um, got some really good like stodgy opportunities, which in the culinary world is basically, uh, you work for free. And usually you’re doing kind of the grunt work, the hard work, just to prove that you deserve a position. Um, so an internship. Yeah. A highly unpaid work. Yeah. Um, so did that bounced around kind of my local area for a while ended up.

Where was that area, Chris? Where are you from? So I grew up in, uh, mid Michigan. So Midland or Mount pleasant, um, kind of small rural areas. We had, um, the one time we had a casino, it was like the biggest one in [00:10:00] the state. Um, so I ended up there for about two years, took over a steak house. Um, that was fun for a while.

And at the same time, I got the opportunity to go out to, um, Manhattan and work at what was then the number one restaurant in the world from the Michelin standard, um, 11 Madison Park. So let’s wait a minute, wait

A.J. Murray: a minute, wait a minute. How do you go from free, you know, free shit bird guy to like number one, Michelin new a LA.

Chris Randall: Uh, lots and lots of late nights and sharpening of knives. Um, you worked hard to being young and energetic and willing to put the time and energy into it gets you pretty far anywhere. Um, I sent an email. They was kind of, I wouldn’t say easy, but they’re always looking for people to come in and do free work and always try to keep a roster full of people.

So I had the chance to go for a week. [00:11:00] Um, chefs

A.J. Murray: work for free when they’re coming up. Like I worked in restaurants, so nobody worked

Chris Randall: for free well, and more legitimate restaurants, you know, like when you’re working higher end and you’re highly competitive to get in there. Um, some people go in for a day, some people spend a weekend.

Um, it’s not supposed to be that way, but it’s 10 tends to go that way. And you just

A.J. Murray: do that to get exposure, to get it on your resume. Like, Hey, I worked at such-and-such.

Chris Randall: Yeah. I mean, you want to see what’s going on in those environments. I mean, if anybody got the chance to go step into Google or Facebook or Microsoft for a week, you know, and there was really no, no hard ties there.

You could just kind of look around and absorb everything. Why not?

A.J. Murray: So how does one live in Manhattan without an income?

Chris Randall: So, luckily I was only there for a week, so it was just like a working vacation, if you will. Gotcha. It was actually quite the experience. We spent like eight hours touring, like all [00:12:00] the big spots before my first day.

And I had like, Broken open blisters on my feet before I went and worked 16 hours. So that was fun, man.

A.J. Murray: I said this school program or something like, how, how did you, how did you end up getting that, that

Chris Randall: opportunity? Um, so they kind of, like I said, they kind of keep postings open for positions. Um, they have massive staffs. Um, I think there was like 40 people in the back of the house. And I mean, Andy’s working kitchens.

You don’t usually have 40 cooks running around in the Babylon. That’s insane. Yeah. Well, when you’re doing like six figures for dinner sales to some notes, but like,

so for people who haven’t worked in restaurants,

A.J. Murray: you’re talking like a hundred thousand dollars, plus some meals serving in a night is that. Yeah, which is a lot of money

Chris Randall: for one dinner service. I think it was like $130,000 in like a five-hour span. So that’s what the restaurant

[00:13:00] sold

A.J. Murray: and meals five hours.

Chris Randall: Wow. $100 at the time, just to sit at the table for a person that didn’t do drinks or anything special.

A.J. Murray: And how so we’re probably going to talk about culture later in your current gig and what kind of people you’re working with right. In a place that was $300 to walk in the door, like are the staff is douchey as the clients coming in.

Chris Randall: So that place was really unique, right? Um, it’s highly competitive. There’s a bunch of kids my age and they’re not just like New York kids. They’re not just kids that graduate like culinary school. Like the chef at the time was from, I might butcher this. I want to say Denmark, but I think that’s wrong. But so he had a bunch of like, um, Northern European kids there and there’s probably 15 or 20 and they’re all fighting for their thesis.

Um, they’re all, they’re like, this is, this is their, their lives. Um, so they’re pretty heads down working hard. Um, they were pretty willing to help out. They had a good culture [00:14:00] there. Um, probably one of the better ones I’ve been involved in. Um, but very robotic at the same time. So

A.J. Murray: you’d her. Those, you, you, you got good at this really early.

Chris Randall: Did you develop a passion for it or were you, you were good at it? It just made sense. So you just kept going on down the road. So a little bit of bowls. Um, you know, I grew up helping on my uncle’s farm. Like when I was 12, I spend my summers doing that. Um, so we had a lot of, I work ethic, like, you know, kind of ingrained already, and then you get into kitchens and it’s a lot of like hard work and manual labor.

So I was used to that aspect of it. Um, you know, I got to put food on the table and help out. So I, you know, I had to do it to survive. And then at the same time I found like I was good at it and I enjoyed doing it. Um, and for a while I had a passion, um, a couple incidents kind of burn that out, unfortunately, but at the same time, You know, Sandy may where I am now.

So I can’t complain about [00:15:00] that. And,

A.J. Murray: and you know, you’re right. Like, yeah. So burnout, it is a thing, right? It’s, it’s a tough, stressful environment. And it just dawned on me as you’re talking, man kitchens are tough, stressful environments. You want to see the worst of people, try to feed them expensive food.

Chris Randall: Yeah. Yeah. Well, and it’s, you know, it’s weird too. It’s like, it’s not the expensive restaurants and the country clubs. I mean, you get some, you get some tough people there. It’s your mom and pop, you know, something for under $10. People like the casino when people are getting stuff for free or using the rewards points, like it’s the cheap skates that are the worst than the cheap restaurants.

You know, somebody who’s spending $10 and $10 means a lot. So those are some of the rough ones.

A.J. Murray: So when did you get like the Ooh LA LA gig? You went from like the free Manhattan come up, you know, stuff to, when did you land and

Chris Randall: become a big, uh, so I was kind of doing it right at the casino. Um, they [00:16:00] let me go for the week to go out to Manhattan.

They were really like excited. Um, but at the same time, there was a bunch of stuff going on, be out like outside our, um, control there. So they lost a lot of like sales and revenue. So at the same time, I’m literally on my way back from New York and a guy who runs like the nicest restaurant in town gets me up and he’s like, Hey, I want you to come over to run the rest.

Do your thing, free reign. Um, so I went over there and I had a pretty good strike going, but I just didn’t get along there. Um, there were just some value, differences and things. So that was really my first like big, big shot on my own. Um, had good feedback. I just, I didn’t sit into the culture. No, no, no.

We’re talking like 21, 22 at this time. Okay, cool. I mean,

A.J. Murray: that’s, that’s how it could be owned in the kitchen. Go run my kitchen. That’s impressive. Like my God, man.

Chris Randall: Yeah. Um, it, it’s interesting, especially like, you know, so you’re typically up until the day that I left [00:17:00] to switch into like tech. Um, I was still the youngest one in the kitchen managing everybody.

So, um, it was definitely a big learning curve, um, to manage people who are two or three times your age and you hear like, oh, could be your mom. It could be your grandma.

Um, but it taught me a lot of really good lessons that I met a lot of really great people along the way. Um, we actually had like the biggest. Probably the biggest jump and chance have ever taken in my life, my girlfriend and I, like I said, the last restaurant that I spoke of, um, it wasn’t working out and, um, I was looking for something different.

Maybe take a break. I was burnt out, um, just bad situation after tough situation. Um, so I was going to school. I had the ability to take like three months off. Um, I wasn’t working and I had somebody hit me up down in Georgia. And they were like, Hey, we got this really high end. Like our [00:18:00] dining club wants you to come down.

See my right-hand man, you know, do that. Um, and so the wife an