Discover
David Bombal
David Bombal
Author: David Bombal
Subscribed: 163Played: 2,488Subscribe
Share
© All rights reserved
Description
Want to learn about IT? Want to get ahead in your career? Well, this is the right place!
On this channel, I discuss Python, Ethical Hacking, Networking, Network Automation, CCNA, Virtualization and other IT related topics.
This YouTube channel has new videos every week! Subscribe for technical, detailed, no fluff content.
David’s details:
Discord: https://discord.com/invite/usKSyzb
Twitter: https://www.twitter.com/davidbombal
Instagram: https://www.instagram.com/davidbombal
LinkedIn: https://www.linkedin.com/in/davidbombal
Facebook: https://www.facebook.com/davidbombal.co
Website: http://www.davidbombal.com
YouTube: https://www.youtube.com/davidbombal
All the best!
David
On this channel, I discuss Python, Ethical Hacking, Networking, Network Automation, CCNA, Virtualization and other IT related topics.
This YouTube channel has new videos every week! Subscribe for technical, detailed, no fluff content.
David’s details:
Discord: https://discord.com/invite/usKSyzb
Twitter: https://www.twitter.com/davidbombal
Instagram: https://www.instagram.com/davidbombal
LinkedIn: https://www.linkedin.com/in/davidbombal
Facebook: https://www.facebook.com/davidbombal.co
Website: http://www.davidbombal.com
YouTube: https://www.youtube.com/davidbombal
All the best!
David
552 Episodes
Reverse
In this episode, David Bombal sits down with vulnerability researcher Vladimir Tokarev (with Dawid on the interview) to show what AI-assisted vulnerability research looks like when it actually works.
Vladimir walks through two real vulnerability case studies and uses them to explain a practical workflow for finding bugs faster with LLMs, without pretending the AI is “fully autonomous.”
Demo 1: Gemini CLI command injection
Vladimir demonstrates a command injection issue in Gemini CLI tied to the IDE / VS Code extension install flow. He shows how a malicious VSIX file name or path can be crafted so that when the install command is executed, the system ends up running an attacker-controlled command (the demo uses a harmless calculator launch to prove execution). The conversation then breaks down what a VSIX is, what the realistic attack paths are (user tricked into installing a malicious extension or placing it in the right directory), and why this class of bug matters for endpoints running local AI agents.
Demo 2: VirtualBox integer overflow and VM escape class impact
Next, Vladimir switches to a VirtualBox vulnerability involving an integer overflow that can lead to out-of-bounds read/write in the host process. Because of architecture constraints, he shows the exploit behavior via a recorded clip, then explains the bug using source code. The key teaching moment is the mismatch between 32-bit arithmetic used in bounds checking and 64-bit pointer arithmetic used during the actual memory move, creating a pathway to bypass checks and copy memory outside the intended buffer.
Vladimir also explains why having both read and write primitives is powerful for exploitation, and how modern mitigations make “blind” exploitation unrealistic without memory disclosure.
How the bugs were found with AI
Vladimir then explains the workflow he uses in real engagements:
• Run static analysis to generate leads at scale
• Use an LLM to triage and filter out noise
• Validate the remaining findings by tracing code paths and checking exploitability
• Use AI again to accelerate setup, debugging, reverse engineering, and iteration
He shares a key insight: the win is not “AI finds everything for you,” it is that AI helps you spend your time on the hardest parts—validation, exploit logic, and decision-making—instead of drowning in thousands (or millions) of findings.
Why there is no fully autonomous vuln-research agent yet
Finally, Vladimir lays out four practical blockers:
1. Depth reasoning (long multi-step exploit chains)
2. Context limits (missing system-level constraints and assumptions)
3. Learning from failure (repeating bad leads)
4. Exploration (poor goal-driven search without strong reinforcement learning)
// Vladimir Tokarev’s SOCIAL //
X: https://x.com/G1ND1L4
LinkedIn: / vladimir-eliezer-tokarev
// Dawid van Straaten’s SOCIAL //
LinkedIn: / dawid-van-straaten-31a3742b
X: https://x.com/nullaxiom?s=21
// David's SOCIAL //
Discord: discord.com/invite/usKSyzb
Twitter: www.twitter.com/davidbombal
Instagram: www.instagram.com/davidbombal
LinkedIn: www.linkedin.com/in/davidbombal
Facebook: www.facebook.com/davidbombal.co
TikTok: tiktok.com/@davidbombal
YouTube: / @davidbombal
Spotify: open.spotify.com/show/3f6k6gE...
SoundCloud: / davidbombal
Apple Podcast: podcasts.apple.com/us/podcast...
Disclaimer: This video is for educational purposes only.
Are your smart home devices spying on you? In this video, David Bombal interviews cybersecurity researcher and IoT penetration tester, Matt Brown, to reveal how to intercept and decrypt supposedly secure SSL/TLS traffic from IoT devices.
Matt demonstrates his open-source tool, "Man in the Middle Router," a specialized Linux-based bash script designed to simplify IoT hardware hacking labs. This tool stitches together essential Linux utilities—including HostAPD (for access points), DNSmasq (for DHCP), and iptables (for traffic routing)—to transform any Linux computer or Raspberry Pi into a transparent intercepting router. In this technical deep-dive, you will learn: How a Man in the Middle (MITM) attack intercepts encrypted TLS (HTTPS) communications.
How to set up an IoT penetration testing lab using minimal hardware, such as an Alpha Wi-Fi adapter and an Ethernet dongle. The difference between theoretical attacks and real-world vulnerabilities like the failure of IoT devices to validate server certificates. Transparent proxy setup using tools like mitmproxy to visualize raw API data.
Live Hacking Demonstration Matt moves beyond theory to demonstrate a live hack of an Anran Wi-Fi security camera purchased from eBay. He shows the exact process of capturing and decrypting the camera's API traffic (apis.us-west.cloudedge360.com). This demonstration exposes that the device is transmitting sensitive information—including authentication credentials—in cleartext over HTTP inside the broken TLS tunnel.
Whether you are a network engineer, network security analyst, or a hardware hacking enthusiast, this video provides a step-by-step framework for auditing the security and privacy of the devices on your network.
// Matt Brown’s SOCIAL //
X: https://x.com/nmatt0
YouTube: / @mattbrwn
LinkedIn: / mattbrwn
GitHub: https://github.com/nmatt0
Reddit: https://github.com/nmatt0
Website (with training courses): https://training.brownfinesecurity.com/
// GitHub REFERENCE //
mitmrouter: https://github.com/nmatt0/mitmrouter
// Camera REFERECE //
https://www.amazon.com/ANRAN-Security...
// David's SOCIAL //
Discord: discord.com/invite/usKSyzb
Twitter: www.twitter.com/davidbombal
Instagram: www.instagram.com/davidbombal
LinkedIn: www.linkedin.com/in/davidbombal
Facebook: www.facebook.com/davidbombal.co
TikTok: tiktok.com/@davidbombal
YouTube: / @davidbombal
Spotify: open.spotify.com/show/3f6k6gE...
SoundCloud: / davidbombal
Apple Podcast: podcasts.apple.com/us/podcast...
// MY STUFF //
https://www.amazon.com/shop/davidbombal
// SPONSORS //
Interested in sponsoring my videos? Reach out to my team here: sponsors@davidbombal.com
// MENU //
0:00 - Coming Up
0:33 - Introduction
02:33 - Matt’s Solution for IoT Devices
05:38 - Getting around SSL Pining / Certificate Validation
08:55 - Demo - The Basics
12:00 - Demo - Man In The Middle Router Tool
15:00 - Demo - Software/Hardware Considerations
20:12 - Demo - MITM Proxy
24:43 - Demo - MITM Router
33:58 - Example Using a Real IoT Device
36:33 - David’s Questions
37:50 - More About Matt Brown
38:41 - Android Vs Apple
40:33 - Outro
Please note that links listed may be affiliate links and provide me with a small percentage/kickback should you use them to purchase any of the items listed or recommended. Thank you for supporting me and this channel!
Disclaimer: This video is for educational purposes only.
#iot #hacking #iothacking
Learn Splunk basics with James Hodge in this introductory tutorial. We dive into SPL, analyzing Linux logs, and a powerful AI Canvas demo for network troubleshooting.
Big thanks to Cisco for sponsoring this video and sponsoring my trip to Cisco Live Amsterdam 2026.
// James Hodge’s SOCIAL //
LinkedIn: / jameshodge
/ David's SOCIAL //
Discord: discord.com/invite/usKSyzb
Twitter: www.twitter.com/davidbombal
Instagram: www.instagram.com/davidbombal
LinkedIn: www.linkedin.com/in/davidbombal
Facebook: www.facebook.com/davidbombal.co
TikTok: tiktok.com/@davidbombal
YouTube: / @davidbombal
Spotify: open.spotify.com/show/3f6k6gE...
SoundCloud: / davidbombal
Apple Podcast: podcasts.apple.com/us/podcast...
// MY STUFF //
https://www.amazon.com/shop/davidbombal
// SPONSORS //
Interested in sponsoring my videos? Reach out to my team here: sponsors@davidbombal.com
// MENU //
0:00 - Coming up
0:47 - James' background
01:36 - Splunk basics // What is Splunk?
04:17 - Splunk demo
07:35 - How Splunk analyses the data
10:13 - Bringing in raw data
12:22 - Splunk demo continued
21:38 - Dark Mode funny story
22:25 - Splunk demo continued
24:12 - The toilet story
27:56 - Modern Splunk dashboard demo
30:45 - AI Canvas demo
34:53 - Conclusion
Please note that links listed may be affiliate links and provide me with a small percentage/kickback should you use them to purchase any of the items listed or recommended. Thank you for supporting me and this channel!
Disclaimer: This video is for educational purposes only.
#splunk #cisco #ciscolive
Big thanks to Brilliant for sponsoring this video. To try everything Brilliant has to offer, visit https://brilliant.org/davidbombal to start your 30-day free trial or scan the QR code onscreen – You’ll also get 20% off an annual premium subscription
Join hacker OTW and David Bombal as they rank the top 6 AI movies that
predicted the future of cybersecurity. From Ex Machina to The Matrix, discover which films got 2026 right.
In this video, OTW breaks down his curated list of the best Artificial Intelligence movies that every tech enthusiast and cybersecurity professional needs to watch. We aren't just reviewing films; we are analyzing how sci-fi predictions from decades ago are becoming
reality in 2026. We discuss the dangers of removing AI guardrails as seen in
Companion, the terrifying reality of predictive policing and surveillance mirrored in Minority Report, and the ethical dilemmas of AI consciousness explored in Her and Ex Machina. OTW also dives into 2001: A Space Odyssey
and The Matrix to discuss Neuralink, data center energy consumption, and the risks of AI self-preservation.
Are we heading toward a dystopian future, or can we still implement the right
regulations?
// Occupy The Web SOCIAL //
X: / three_cube
Website: https://hackers-arise.net/
// Occupy The Web Books //
Linux Basics for Hackers 2nd Ed
US: https://amzn.to/3TscpxY
UK: https://amzn.to/45XaF7j
Linux Basics for Hackers:
US: https://amzn.to/3wqukgC
UK: https://amzn.to/43PHFev
Getting Started Becoming a Master Hacker
US: https://amzn.to/4bmGqX2
UK: https://amzn.to/43JG2iA
Network Basics for hackers:
US: https://amzn.to/3yeYVyb
UK: https://amzn.to/4aInbGK
// OTW Discount //
Use the code BOMBAL to get a 20% discount off anything from OTW's website: https://hackers-arise.net/
// Playlists REFERENCE //
Linux Basics for Hackers: • Linux for Hackers Tutorial (And Free Courses)
Mr Robot: • Hack like Mr Robot // WiFi, Bluetooth and ...
Hackers Arise / Occupy the Web Hacks: • Hacking Tools (with demos) that you need t...
/ David's SOCIAL //
Discord: discord.com/invite/usKSyzb
Twitter: www.twitter.com/davidbombal
Instagram: www.instagram.com/davidbombal
LinkedIn: www.linkedin.com/in/davidbombal
Facebook: www.facebook.com/davidbombal.co
TikTok: tiktok.com/@davidbombal
YouTube: / @davidbombal
Spotify: open.spotify.com/show/3f6k6gE...
SoundCloud: / davidbombal
Apple Podcast: podcasts.apple.com/us/podcast...
// MY STUFF //
https://www.amazon.com/shop/davidbombal
// SPONSORS //
Interested in sponsoring my videos? Reach out to my team here: sponsors@davidbombal.com
// MENU //
0:00 - Coming up
0:47 - OTW introduction // OTW books
02:02 - Brilliant sponsored segment
04:08 - AI in Hollywood and media
08:06 - Top 6 movies about AI
11:29 - Movie #6 // Guardrails on AI
19:27 - Movie #5 // AI-controlled media
27:35 - Movie #4 // AI crime detection
39:38 - Movie #3 // AI self-preservation
48:55 - Movie #2 // Human & AI relationships
55:23 - Movie #1 // AI Turing test
01:04:57 - Top 6 AI movies summary
01:11:02 - Conclusion
Please note that links listed may be affiliate links and provide me with a small percentage/kickback should you use them to purchase any of the items listed or recommended. Thank you for supporting me and this channel!
Disclaimer: This video is for educational purposes only.
#ai #movies #aimovies
Big thank you to Infoblox for sponsoring this video. For more information on Infoblox have a look at their website: https://www.infoblox.com/
// Get Wireshark Certified //
Check out the official training course
📘 GET TRAINING:
https://courses.davidbombal.com/l/pdp...
Use code "WiresharkHack" to get a $50 discount
🔗 Learn more: https://wireshark.org/certifications
In this deep dive, David Bombal is joined by Wireshark expert Chris Greer to
strip down the most critical protocol on the internet: DNS. We move beyond the
theory to show you exactly what DNS looks like "on the wire." Chris reveals why a staggering 92% of malware uses DNS for Command and Control (C2) and how you can use packet analysis to detect these breaches before they spread. We also debunk common myths about DNS only using UDP, explore the "Librarian" analogy for Root Servers, and walk through a live capture of a request to a real website.
What You Will Learn:
•Malware Detection: Why 92% of malware relies on DNS and how to spot C2 traffic.
• Packet Anatomy: A line-by-line breakdown of DNS headers, Transaction IDs, and Flags in Wireshark.
• The TCP Myth: Why blocking TCP port 53 on your firewall can break yournetwork (and why DNS needs it).
• Troubleshooting: How to measure DNS latency (response time) to pinpoint
slow network performance.
• Recursive Lookups: Understanding the chain from your PC to the Root Servers and back.
// Chris Greer’s SOCIAL //
YouTube: / chrisgreer
Official WCA training: https://courses.davidbombal.com/l/pdp...
Use code "WiresharkHack" to get a $50 discount
LinkedIn: / cgreer
Website: https://packetpioneer.com/
// Download Wireshark pcaps from here //
https://github.com/packetpioneer/yout...
https://github.com/packetpioneer/yout...
https://www.wireshark.org/certificati...
https://packetschool.teachable.com/
// WCA Course REFERENCE//
Official WCA training: https://courses.davidbombal.com/l/pdp...
Use code "WiresharkHack" to get a $50 discount
// Chris’ DNS Series on YouTube ‘’
• Your First DNS Lookup—Captured and Explained
// Link to YouTube VIDEO:
• Video
// David's SOCIAL //
Discord: discord.com/invite/usKSyzb
Twitter: www.twitter.com/davidbombal
Instagram: www.instagram.com/davidbombal
LinkedIn: www.linkedin.com/in/davidbombal
Facebook: www.facebook.com/davidbombal.co
TikTok: tiktok.com/@davidbombal
YouTube: / @davidbombal
Spotify: open.spotify.com/show/3f6k6gE...
SoundCloud: / davidbombal
Apple Podcast: podcasts.apple.com/us/podcast...
// MY STUFF //
https://www.amazon.com/shop/davidbombal
// SPONSORS //
Interested in sponsoring my videos? Reach out to my team here: sponsors@davidbombal.com
// MENU //
0:00 - Coming up
0:52 - More Wireshark! // It's always DNS
02:45 - Infoblox sponsored segment
03:37 - DNS basics in Wireshark // How DNS works
06:52 - Analysing the DNS packet capture
08:32 - Destination address explained
10:09 - Transaction ID explained
11:13 - Flags explained
13:26 - Questions, Answer RRs & Additional RRs explained
15:39 - Additional records explained
17:07 - Response walkthrough
19:24 - Real DNS packet capture walkthrough
21:17 - Quick Wireshark tip
22:32 - Walkthrough continued
25:55 - Going deeper // How DNS resolver works
32:41 - More on Chris Greer YouTube channel and more to come
35:36 - Conclusion
Please note that links listed may be affiliate links and provide me with a small percentage
/kickback should you use them to purchase any of the items listed or recommended. Thank you for supporting me and this channel!
Disclaimer: This video is for educational purposes only.
#dns #infoblox #wireshark
In this video, we dive into a real-world Red Team vs. Blue Team scenario. We simulate a cyberattack on a Finance Application that has integrated a new LLM Chatbot. You’ll see firsthand how attackers use Prompt Injection to bypass standard rules, how they move laterally through Kubernetes clusters, and how they attempt to execute Zero Day exploits.
More importantly, we show you how to defend against it. Using Cisco’s Hybrid Mesh Firewall, AI Defense, and Secure Workload, we demonstrate how to:
1. Detect & Block Prompt Injections: safeguarding your LLMs from manipulation.
2. Secure Kubernetes: using micro-segmentation to isolate threats in the cloud.
3. Inspect Encrypted Traffic: utilizing the Encrypted Visibility Engine (EVE) to
spot malware in TLS flows without decryption.
Whether you are a Network Engineer, Security Analyst, or just interested in how AI is changing the cybersecurity landscape, this demo is packed with practical insights
Big thank you to Cisco for sponsoring my trip to Cisco Live Amsterdam.
// Ant Ducker SOCIALS //
LinkedIn: / ant-ducker-0052801
YouTube channel dCloud: / @ciscodcloud
// Website REFERENCE //
Cisco Security Cloud control: https://sign-on.security.cisco.com/
Cisco.com: https://www.cisco.com/site/us/en/solu...
// YouTube Video REFERENCE //
Rick Miles’ video will be linked at a later stage once published.
/ David's SOCIAL //
Discord: discord.com/invite/usKSyzb
Twitter: www.twitter.com/davidbombal
Instagram: www.instagram.com/davidbombal
LinkedIn: www.linkedin.com/in/davidbombal
Facebook: www.facebook.com/davidbombal.co
TikTok: tiktok.com/@davidbombal
YouTube: / @davidbombal
Spotify: open.spotify.com/show/3f6k6gE...
SoundCloud: / davidbombal
Apple Podcast: podcasts.apple.com/us/podcast...
// MY STUFF //
https://www.amazon.com/shop/davidbombal
// SPONSORS //
Interested in sponsoring my videos? Reach out to my team here: sponsors@davidbombal.com
// MENU //
0:00 - Coming Up
01:29 - Intro
02:20 - Demo Overview
03:57 - Demo Begins
09:35 - Adding Guardrails
11:45 - Secure Workloads
14:30 - Segmentation Workflow
18:33 - Overviewing Finance App
21:02 - Encrypted Visibility Engine
24:34 - Firewall Obversability and Control
25:44 - Ant's Advice For The Youth
26:40 - How to Learn Hybrid Mesh Firewall
28:16 - Conclusion
Please note that links listed may be affiliate links and provide me with a small percentage/kickback should you use them to purchase any of the items listed or recommended. Thank you for supporting me and this channel!
Disclaimer: This video is for educational purposes only.
#cisco #ciscolive #ciscoemea
The bottleneck in AI isn't compute anymore, it's the network. In this video, I sit down with Martin, the architect behind Cisco’s Silicon One, to discuss the massive leap to 100 Terabits per second. We go deep into the silicon level to understand how "intelligent agents" embedded in the hardware are solving the packet loss problem for massive AI training clusters.
We cover the new 1.6T Linear Pluggable Optics (LPO), why Cisco is becoming the "Apple of Networking" by building their own full stack, and why they believe Ethernet has officially won the data center war.
Topics Covered:
• Cisco Silicon One: The architecture behind the 100Tbps & 51.2Tbps chips.
• AI Scale: How to interconnect 128,000 GPUs without stalling.
• Hardware Agents: Real-time traffic rerouting at the silicon level.
• 1.6Tbps Optics: Moving DSPs out of the module to save power (LPO).
• Ethernet vs. InfiniBand: Why standard Ethernet is winning in AI.
Big thank you to @Cisco for sponsoring my trip to Cisco Live Amsterdam!
// Martin Lund SOCIALS //
LinkedIn: / martinlundca
// Website REFERENCE //
https://blogs.cisco.com/sp/cisco-sili...
// David's SOCIAL //
Discord: discord.com/invite/usKSyzb
Twitter: www.twitter.com/davidbombal
Instagram: www.instagram.com/davidbombal
LinkedIn: www.linkedin.com/in/davidbombal
Facebook: www.facebook.com/davidbombal.co
TikTok: tiktok.com/@davidbombal
YouTube: / @davidbombal
Spotify: open.spotify.com/show/3f6k6gE...
SoundCloud: / davidbombal
Apple Podcast: podcasts.apple.com/us/podcast...
// MY STUFF //
https://www.amazon.com/shop/davidbombal
// SPONSORS //
Interested in sponsoring my videos? Reach out to my team here: sponsors@davidbombal.com
// MENU //
0:00 - Coming Up
01:09 - Intro
01:42 - Cisco's New Announcement (G200 Chip)
02:32 - How Many Companies Are Doing This?
05:02 - Is Cisco The 'Apple' Of Networking?
07:30 - Intelligent Collective Networking
08:09 - Who Designed The Chip?
08:56 - Cisco's New Optical Module
09:59 - Why Do We Need These Speeds?
15:46 - Data Center Scale
16:50 - Cisco Switches
19:16 - Who Is The Target Audience?
20:23 - Linear Pluggable Optics (LPO)
22:04 – Conclusion
Please note that links listed may be affiliate links and provide me with a small percentage/kickback should you use them to purchase any of the items listed or recommended. Thank you for supporting me and this channel!
Disclaimer: This video is for educational purposes only.
#cisco #ciscolive #ciscoemea
Big thanks to @Cisco for sponsoring this video and sponsoring my trip to Cisco Live Amsterdam.
Will AI replace network engineers in 2026? In this video, I sit down with Joe Vaccaro (VP/GM of Cisco ThousandEyes) to reveal the truth about "Agentic Ops" and how it differs from traditional AIOps. We dive deep into the new "Digital Teammate" concept within ThousandEyes and demo exactly how AI agents can autonomously troubleshoot complex network outages (like DHCP and DNS failures) in seconds.
Instead of taking your job, Joe explains how these agents act as a force multiplier for your career—handling the tedious "mean time to innocence" tasks so you can focus on architecture. If you are worried about the future of the CLI or manual troubleshooting, you need to see this demo.
Key Topics Covered:
• Cisco Agentic Ops Explained: Joe Vaccaro breaks down the shift to autonomous reasoning.
• ThousandEyes Demo: Watch an AI agent diagnose a DHCP failure and suggest the exact fix (subnet expansion).
• Views Explainability: How to troubleshoot "unknown paths" and ISP outages
(like AWS/Azure) automatically.
• Career Survival Guide: Why Cisco believes AI will train the next generation of CCIE-level engineers, not replace them.
//Joe Vaccaro’s SOCIAL //
Cisco Blogs: https://blogs.cisco.com/author/vaccaroj
LinkedIn: / joevaccaro
X: https://x.com/joevaccaro
X: https://x.com/thousandeyes
Website: https://www.thousandeyes.com/
// David's SOCIAL //
Discord: discord.com/invite/usKSyzb
Twitter: www.twitter.com/davidbombal
Instagram: www.instagram.com/davidbombal
LinkedIn: www.linkedin.com/in/davidbombal
Facebook: www.facebook.com/davidbombal.co
TikTok: tiktok.com/@davidbombal
YouTube: / @davidbombal
Spotify: open.spotify.com/show/3f6k6gE...
SoundCloud: / davidbombal
Apple Podcast: podcasts.apple.com/us/podcast...
// MY STUFF //
https://www.amazon.com/shop/davidbombal
// SPONSORS //
Interested in sponsoring my videos? Reach out to my team here: sponsors@davidbombal.com
// MENU //
0:00 - Coming up
0:42 - Troubleshooting
02:00 - ThousandEyes Updates
03:52 - Demo 1
06:50 - Agentic Steps on a network
07:26 - Demo 2
10:50 - ThousandEyes Outages Page
11:34 - Agents in ThousandEyes
13:49 - New Demands by AI
14:14 - Will AI Replace Network Engineers ?
15:15 - Will The Agents Need a Human in the loop?
16:10 - Will This become More Autonomous ?
16:48 - Conclusion & Outro
Please note that links listed may be affiliate links and provide me with a small percentage/kickback should you use them to purchase any of the items listed or recommended. Thank you for supporting me and this channel!
Disclaimer: This video is for educational purposes only.
#cisco #ciscolive #ciscoemea
Big thanks to Cisco for sponsoring this video and sponsoring my trip to Cisco Partners’ Summit 2025
// Anurag Dhingra SOCIALS //
Cisco Blogs: https://blogs.cisco.com/author/anurag...
X: https://blogs.cisco.com/author/anurag...
LinkedIn: / anurag-dhingra
// David's SOCIAL //
Discord: discord.com/invite/usKSyzb
Twitter: www.twitter.com/davidbombal
Instagram: www.instagram.com/davidbombal
LinkedIn: www.linkedin.com/in/davidbombal
Facebook: www.facebook.com/davidbombal.co
TikTok: tiktok.com/@davidbombal
YouTube: / @davidbombal
Spotify: open.spotify.com/show/3f6k6gE...
SoundCloud: / davidbombal
Apple Podcast: podcasts.apple.com/us/podcast...
// MY STUFF //
https://www.amazon.com/shop/davidbombal
// SPONSORS //
Interested in sponsoring my videos? Reach out to my team here: sponsors@davidbombal.com
// MENU //
0:00 - Coming Up
0:34 - Intro
01:55 - How is AI Affecting Networking
03:55 - Agentic AI
07:05 - Cisco Agents
09:15 - Cisco Evolving Devices
12:16 - Local AI in Manufacturing Companies
13:17 - Edge AI (Cisco Unified Edge)
16:00 - Practical Use of AI
Please note that links listed may be affiliate links and provide me with a small percentage/kickback should you use them to purchase any of the items listed or recommended. Thank you for supporting me and this channel!
Disclaimer: This video is for educational purposes only.
#agenticai #cisco #ciscops25
Deutsche Telekom reveals how they blocked a massive car hack that dropped 100,000 connections instantly. We discuss the truth about 6G, the future of 5G satellites, and securing 240 million devices.
A big thank you to Cisco for sponsoring this video and sponsoring my trip to the Cisco Partner Summit San Diego 2025.
// Niklas Horstmann SOCIAL //
LinkedIn: / niklas-horstmann
// Website REFERENCE //
https://www.t-mobile.com/
// David's SOCIAL //
Discord: discord.com/invite/usKSyzb
Twitter: www.twitter.com/davidbombal
Instagram: www.instagram.com/davidbombal
LinkedIn: www.linkedin.com/in/davidbombal
Facebook: www.facebook.com/davidbombal.co
TikTok: tiktok.com/@davidbombal
YouTube: / @davidbombal
Spotify: open.spotify.com/show/3f6k6gE...
SoundCloud: / davidbombal
Apple Podcast: podcasts.apple.com/us/podcast...
// MY STUFF //
https://www.amazon.com/shop/davidbombal
// SPONSORS //
Interested in sponsoring my videos? Reach out to my team here: sponsors@davidbombal.com
// MENU //
0:00 - Coming Up
0:44 - Intro
01:35 - Networking & Security
04:22 - Germany's Internet Problems
05:38 - Emerging Technologies
08:30 - Will Cellphones Use Satellite?
09:58 - Intelligent Networks
16:08 - Niklas' Cool Story
18:06 - Niklas' Advice for the Youth
19:11 - Conclusion
Please note that links listed may be affiliate links and provide me with a small percentage/kickback should you use them to purchase any of the items listed or recommended. Thank you for supporting me and this channel!
Disclaimer: This video is for educational purposes only.
#6g #5g #deutschetelekom
Cisco is offering 200+ free training courses to help you master AI and networking. In this interview, we discuss why 78% of tech roles now require AI skills and how to future - proof your career in 2025.
// Sponsored SEGMENT //
A big thank you to Cisco for sponsoring this video and sponsoring my trip to the Cisco Partner Summit San Diego 2025
// Fran Katsoudas’ SOCIAL //
LinkedIn: / fkatsoudas
// Website REFERENCE //
https://www.netacad.com/
// David's SOCIAL //
Discord: discord.com/invite/usKSyzb
Twitter: www.twitter.com/davidbombal
Instagram: www.instagram.com/davidbombal
LinkedIn: www.linkedin.com/in/davidbombal
Facebook: www.facebook.com/davidbombal.co
TikTok: tiktok.com/@davidbombal
YouTube: / @davidbombal
Spotify: open.spotify.com/show/3f6k6gE...
SoundCloud: / davidbombal
Apple Podcast: podcasts.apple.com/us/podcast...
// MY STUFF //
https://www.amazon.com/shop/davidbombal
// SPONSORS //
Interested in sponsoring my videos? Reach out to my team here: sponsors@davidbombal.com
// MENU //
0:00 - Coming up
0:42 - AI changing career roles
04:03 - The Workforce Consortium // Free training
06:36 - The Networking Academy (NetAcad)
10:12 - Cisco Edge Center // Impact on lives
13:25 - Network is "sexy"
15:07 - Advice for the youth in tech
17:18 - How to stay motivated
18:56 - How NetAcad changes lives
21:56 - Conclusion
Please note that links listed may be affiliate links and provide me with a small percentage/kickback should you use them to purchase any of the items listed or recommended. Thank you for supporting me and this channel!
Disclaimer: This video is for educational purposes only.
#cisco #ciscops25 #freetraining
In this interview Vijoy Pandey from Cisco Outshift discusses the "Internet of Agents," the donation of the AGNTCY framework to the Linux Foundation, and the new open-source SRE tool "Cape." Plus, how Swisscom is using agentic workflows to validate networks.
Big thanks to Cisco for sponsoring this video and sponsoring my trip to Cisco Partners’ Summit 2025
// Vijoy Pandey SOCIALS //
LinkedIn: / vijoy
X: https://x.com/vijoy
// David's SOCIAL //
Discord: discord.com/invite/usKSyzb
Twitter: www.twitter.com/davidbombal
Instagram: www.instagram.com/davidbombal
LinkedIn: www.linkedin.com/in/davidbombal
Facebook: www.facebook.com/davidbombal.co
TikTok: tiktok.com/@davidbombal
YouTube: / @davidbombal
Spotify: open.spotify.com/show/3f6k6gE...
SoundCloud: / davidbombal
Apple Podcast: podcasts.apple.com/us/podcast...
// MY STUFF //
https://www.amazon.com/shop/davidbombal
// SPONSORS //
Interested in sponsoring my videos? Reach out to my team here: sponsors@davidbombal.com
// MENU //
00:00 - Coming Up
00:37 - Introduction
01:00 - What is Internet of Agents?
02:11 - The 4 Steps of Internet of Agents
03:25 - Project AGNTCY
04:40 - A DNS of the Agentic Internet
06:07 - To What End is the Agency Stack
07:21 - Use-cases for the Agency Stack
11:28 - The Future of the Agency Stack
12:55 - Guardrails for Agents
13:38 - Timeline for the Integration of Agents
14:51 - Outro
Please note that links listed may be affiliate links and provide me with a small percentage/kickback should you use them to purchase any of the items listed or recommended. Thank you for supporting me and this channel!
Disclaimer: This video is for educational purposes only.
#agenticai #agntcy #cisco @Cisco
Data centers are wasting 70% of their power. Discover how Immersion Cooling and Fault-Managed Power (Class 4) are solving the AI energy crisis in 2025. In this video, we explore why we are drowning servers in oil and the new skills network engineers need to learn.
Big thank you to Cisco for sponsoring this video and sponsoring my trip to the Cisco Partner Summit San Diego 2025
// Denise Lee’s SOCIALS //
Cisco Blogs: https://blogs.cisco.com/author/deniselee
LinkedIn: / deniseleeyeh
X: https://x.com/deniseleeyeh
// David's SOCIAL //
Discord: discord.com/invite/usKSyzb
Twitter: www.twitter.com/davidbombal
Instagram: www.instagram.com/davidbombal
LinkedIn: www.linkedin.com/in/davidbombal
Facebook: www.facebook.com/davidbombal.co
TikTok: tiktok.com/@davidbombal
YouTube: / @davidbombal
Spotify: open.spotify.com/show/3f6k6gE...
SoundCloud: / davidbombal
Apple Podcast: podcasts.apple.com/us/podcast...
// MY STUFF //
https://www.amazon.com/shop/davidbombal
// SPONSORS //
Interested in sponsoring my videos? Reach out to my team here: sponsors@davidbombal.com
// MENU //
0:00 - Coming up
0:47 - Addressing water and power usage in data centers
03:17 - Fault managed power explained
05:45 - Saving energy in data centers // Immersion cooling
10:22 - Addressing noise issues from data centers
11:56 - The cons of a data center
13:36 - Optimizing data centers
14:37 - Advice for the young generation
17:23 - More data centers and more jobs
18:50 - Sustainability for data centers
20:57 - Conclusion
Please note that links listed may be affiliate links and provide me with a small percentage/kickback should you use them to purchase any of the items listed or recommended. Thank you for supporting me and this channel!
Disclaimer: This video is for educational purposes only.
#cisco #sponsored #ciscops2 @Cisco
Is AI replacing network engineers? Liz Centoni (Cisco EVP) reveals how Agentic AI is transforming Cisco TAC and network automation. Discover why 77% of support cases are now handled by AI and what this means for your career in 2025.
A big thank you to Cisco for sponsoring this video and for sponsoring my trip to Cisco Partner Summit San Diego 2025
// Liz Centoni SOCIAL//
LinkedIn: / lizcentoni
// David's SOCIAL //
Discord: discord.com/invite/usKSyzb
Twitter: www.twitter.com/davidbombal
Instagram: www.instagram.com/davidbombal
LinkedIn: www.linkedin.com/in/davidbombal
Facebook: www.facebook.com/davidbombal.co
TikTok: tiktok.com/@davidbombal
YouTube: / @davidbombal
Spotify: open.spotify.com/show/3f6k6gE...
SoundCloud: / davidbombal
Apple Podcast: podcasts.apple.com/us/podcast...
// MY STUFF //
https://www.amazon.com/shop/davidbombal
// SPONSORS //
Interested in sponsoring my videos? Reach out to my team here: sponsors@davidbombal.com
// MENU //
0:00 - Coming Up
01:08 - Intro
01:28 - Customer Experience
02:01 - Cisco TAC
02:42 - AI & Agentic AI
05:13 - Usage of Agents
07:15 - Will AI Take Jobs Away?
09:18 - Intelligent Call Routing
13:20 - Challenges with Agents
16:57 - Quantum Computing
18:03 - Liz's Advice for the Youth
19:32 - Conclusion
Please note that links listed may be affiliate links and provide me with a small percentage/kickback should you use them to purchase any of the items listed or recommended. Thank you for supporting me and this channel!
Disclaimer: This video is for educational purposes only.
#ai #agenticai #quantumcomputing
Big thank you to Cisco for sponsoring this video and sponsoring my trip to the Cisco Partner Summit San Diego 2025
Imagine trying to run a high-tech hospital inside a giant steel box while floating off the coast of Africa. In this video, we explore the insane engineering challenges behind Mercy Ships from battling Faraday cages to fixing cut fiber cables mid-surgery.
// Grady Nichols’ SOCIAL //
LinkedIn: / gradynichols
// Robert Kim’s SOCIAL //
LinkedIn: / robertgkim
// Mercy Ships SOCIAL //
LinkedIn: / mercy-ships
X: https://x.com/mercyships
// Website REFERENCE //
https://mercyships.co.za/
https://www.presidio.com/
// David's SOCIAL //
Discord: discord.com/invite/usKSyzb
Twitter: www.twitter.com/davidbombal
Instagram: www.instagram.com/davidbombal
LinkedIn: www.linkedin.com/in/davidbombal
Facebook: www.facebook.com/davidbombal.co
TikTok: tiktok.com/@davidbombal
YouTube: / @davidbombal
Spotify: open.spotify.com/show/3f6k6gE...
SoundCloud: / davidbombal
Apple Podcast: podcasts.apple.com/us/podcast...
// MY STUFF //
https://www.amazon.com/shop/davidbombal
// SPONSORS //
Interested in sponsoring my videos? Reach out to my team here: sponsors@davidbombal.com
// MENU //
0:00 - Coming up
0:47 - Who is Mercy Ships? // Changing lives
04:00 - Facing challenges
08:48 - Setting up Wi-Fi on the ship
09:28 - Data centers on the ship
11:39 - Attracting donators for Mercy Ships
13:35 - Adding protection in designing in the ship
14:25 - Using AI for efficiency
17:08 - New ship
19:45 - When things go wrong
23:10 - How to support Mercy Ships
24:40 - Conclusion
Please note that links listed may be affiliate links and provide me with a small percentage/kickback should you use them to purchase any of the items listed or recommended. Thank you for supporting me and this channel!
Disclaimer: This video is for educational purposes only.
#cisco #wifi #networking
A big thank you to Cisco for sponsoring this video.
Kamal Hathi (GM at Splunk) reveals "Machine GPT" and explains why standard LLMs fail at processing machine data. Learn how Splunk’s new open weights model helps you predict outages and secure networks before they happen.
// Kamal Hathi’s SOCIAL //
LinkedIn: / kamal-hathi
// Website REFERENCE //
https://www.splunk.com/en_us/blog/lea...
// David's SOCIAL //
Discord: discord.com/invite/usKSyzb
Twitter: www.twitter.com/davidbombal
Instagram: www.instagram.com/davidbombal
LinkedIn: www.linkedin.com/in/davidbombal
Facebook: www.facebook.com/davidbombal.co
TikTok: tiktok.com/@davidbombal
YouTube: / @davidbombal
Spotify: open.spotify.com/show/3f6k6gE...
SoundCloud: / davidbombal
Apple Podcast: podcasts.apple.com/us/podcast...
// MY STUFF //
https://www.amazon.com/shop/davidbombal
// SPONSORS //
Interested in sponsoring my videos? Reach out to my team here: sponsors@davidbombal.com
// MENU //
0:00 - Coming Up
00:48 - Intro
01:53 - How AI is Trained
03:10 - AI and Machine Data
04:02 - What is Machine GPT?
07:00 - How MachineGPT will help People
08:53 - What MachineGPT Could Tell Us
11:46 - MachineGPT Interface and Splunk
16:50 - About the Splunk Platform and Products
17:46 - The Future of AI and Machine Data
18:43 - AI as an Independent Creator
20:16 - AI and Security
21:51 - Outro
Please note that links listed may be affiliate links and provide me with a small percentage/kickback should you use them to purchase any of the items listed or recommended. Thank you for supporting me and this channel!
Disclaimer: This video is for educational purposes only.
#cisco #machinelearning #sponsored
In this video David speaks to Peter Bailey (SVP and GM of Cisco’s Security business). AI agents are moving fast inside enterprises, and CISOs are hitting the brakes for one reason: the attack surface is expanding at machine speed. In this interview, we break down how agentic AI changes security, why MCP servers and agent tool access create new risks, and what a zero trust approach looks like when the “user” is a non-deterministic agent. We cover real-world problems like shadow MCP servers, agents touching sensitive systems and PII, and why traditional perimeter controls and firewalls are not enough when traffic is encrypted and actions happen too quickly downstream.
You’ll also hear what Cisco is doing across the AI lifecycle: AI Defense for model scanning, provenance and guardrails, plus new protections focused on agent identity, dynamic authorization, behavior monitoring, and revocation. On the networking side, we discuss how SD-WAN and secure access (SASE) can add visibility and policy control for AI usage, including prioritizing latency-sensitive AI traffic while still enforcing security. If you’re a
security engineer, network engineer, or CISO trying to move from AI hype to safe deployment, this video gives you a practical mental model and the controls to start building now.
Big thank you to @Cisco for sponsoring this video and for sponsoring my trip to Cisco Live Amesterdam.
// Peter Baily’ SOCIALS //
LinkedIn: / peterhbailey
Guest Bio: https://newsroom.cisco.com/c/r/newsro...
// David's SOCIAL //
Discord: discord.com/invite/usKSyzb
Twitter: www.twitter.com/davidbombal
Instagram: www.instagram.com/davidbombal
LinkedIn: www.linkedin.com/in/davidbombal
Facebook: www.facebook.com/davidbombal.co
TikTok: tiktok.com/@davidbombal
YouTube: / @davidbombal
Spotify: open.spotify.com/show/3f6k6gE...
SoundCloud: / davidbombal
Apple Podcast: podcasts.apple.com/us/podcast...
// MY STUFF //
https://www.amazon.com/shop/davidbombal
// SPONSORS //
Interested in sponsoring my videos? Reach out to my team here: sponsors@davidbombal.com
// MENU //
0:00 - Coming Up
0:30 - Introduction
01:15 - CISOs Problems with AI
02:35 - Real Issues with AI Agents
04:29 - Growth of the Attack Surface
05:34 - Concern of Poisoned AI and MCP
08:09 - What is the Kill-chain
10:16 - AI with Built-in Security
11:56 - Best Practises for AI Security
14:08 - Cisco Innovations for AI
16:48 - Cisco’s Red Team for own AI
18:27 - Secure AI in Public Places
20:09 - Should You get into Cyber Security
21:26 - Advice To Your Younger Self
22:29 - Outro
Please note that links listed may be affiliate links and provide me with a small percentage/kickback should you use them to purchase any of the items listed or recommended. Thank you for supporting me and this channel!
Disclaimer: This video is for educational purposes only.
#cisco #ciscoemea #ciscolive
Cisco just announced massive changes for 2026, including free AI training, a new Ethical Hacking certificate, and the return of the Wireless track. In this video, I sit down with Ryan and Lacey from Cisco to break down the biggest updates to the certification portfolio since 2020. Whether you are looking to break into Red Teaming with the new Ethical Hacker track, recertify your CCNA/CCNP using free CE credits, or master the new AI infrastructure, this guide covers everything you need to know to level up your career for free.
What's Inside:
• Free AI Training: How to get 16+ CE credits through the new RevUp program.
• Ethical Hacking: Details on the new "Red Team" certificate and where to find the free course.
• Wireless is Back: The return of the CCNP and CCIE Wireless tracks.
• Cybersecurity Overhaul: CyberOps is evolving into CCNA/CCNP Cybersecurity.
• Recertification Hack: How to use these free courses to renew your existing certifications without paying for exams.
Big thank you to Cisco for sponsoring my trip to Cisco Live Amsterdam
// FREE courses //
Cisco AI Technical Practitioner | AITECH: https://u.cisco.com/paths/cisco-ai-te...
Cisco AI Business Practitioner | AIBIZ: https://u.cisco.com/paths/cisco-ai-bu...
Free Ethical Hacking Course: https://www.cisco.com/site/us/en/lear...
Understanding Cisco Network Automation Essentials (DEVNAE): https://learningnetwork.cisco.com/s/f...
Blog entry about Rev Up: https://learningnetwork.cisco.com/s/q...
// Other courses - NOT free //
Cisco Silicon One for AI Networking | DCSOAI: https://u.cisco.com/paths/cisco-silic...
Enhancing Cisco Security Solutions with Splunk | ECSS: https://u.cisco.com/paths/cisco-splun...
Cisco Silicon One for AI Networking | DCSOAI: https://u.cisco.com/paths/enhancing-c...
CCNA Automation: https://www.cisco.com/site/us/en/lear...
Programming for Network Engineers | PRNE: https://u.cisco.com/paths/programming...
// Ryan Rose’s SOCIAL //
LinkedIn: / ryanrose3
Cisco Blogs: https://blogs.cisco.com/author/ryanrose
X: https://x.com/RyanRose
// Lacey Senko SOCIAL //
LinkedIn: / laceycsenko
// Websites and YouTube Channel links //
Career Map / Path: https://www.cisco.com/c/dam/en_us/tra...
Learn Cisco: / @ciscoutube
Cisco U: https://u.cisco.com/
Cisco Networking Academy: https://www.cisco.com/site/us/en/lear...
Cisco Learning Network: https://learningnetwork.cisco.com/s/
Netacad: https://www.netacad.com
Cisco Learning Community: https://learningnetwork.cisco.com/s/
Free Ethical Hacking Course: https://www.cisco.com/site/us/en/lear...
// David's SOCIAL //
Discord: discord.com/invite/usKSyzb
Twitter: www.twitter.com/davidbombal
Instagram: www.instagram.com/davidbombal
LinkedIn: www.linkedin.com/in/davidbombal
Facebook: www.facebook.com/davidbombal.co
TikTok: tiktok.com/@davidbombal
YouTube: / @davidbombal
Spotify: open.spotify.com/show/3f6k6gE...
SoundCloud: / davidbombal
Apple Podcast: podcasts.apple.com/us/podcast...
// MY STUFF //
https://www.amazon.com/shop/davidbombal
// SPONSORS //
Interested in sponsoring my videos? Reach out to my team here: sponsors@davidbombal.com
// MENU //
0:00 - Coming Up
0:36 - Introduction
0:48 - Rev Up Updates
02:36 - What are CE Credits?
03:27 - Cisco Learning Network Community
06:14 - How Cisco CCNA Changes Lives
07:06 - Cisco Live Announcements Training
12:04 - Navigating Cisco Learning Network Site
14:25 - CiscoU Free Account
14:49 - Cyber & AI Security Learning Track
17:16 - Ethical Hacker Certificate
19:16 - Everything under the Learn with Cisco Brand
21:20 - Passing of Knowledge through Cisco
23:13 - Where Does a Person Start?
24:35 - Parting Words
Please note that links listed may be affiliate links and provide me with a small percentage/kickback should you use them to purchase any of the items listed or recommended. Thank you for supporting me and this channel!
Disclaimer: This video is for educational purposes only.
#cisco #ciscolive #ciscoemea
Are you ready to see the 7 digital investigation tools that completely changed how I look at the internet? In this video, I’m REVEALING a powerful stack of OSINT (Open Source Intelligence) and research tools that most people have zero clue exist. These are absolute game-changers.
Subscribe for more cutting-edge tech and security tools:
The internet is vast, but finding the right information, or knowing what information about you is out there, requires the right toolkit. I was genuinely shocked by the advanced capabilities of some of these applications.
Whether you are a cybersecurity researcher, a journalist, a private investigator, or just someone who wants to master digital reconnaissance and protect their privacy, this list of 7 secret tools will upgrade your skillset immediately.
We are breaking down tools for deep email searching, uncovering hidden data in PDFs, mapping global networks, and analyzing trends that standard search engines completely miss.
// MJ Banias’ SOCIALS //
LinkedIn: / mjbanias
Cloak and Dagger Podcast (Spotify): https://open.spotify.com/show/6mT8zDM...
The Debrief: https://thedebrief.org/podcasts/
Instagram: / mjbanias
X: https://x.com/mjbanias
Website: https://www.bullshithunting.com/
// David's SOCIAL //
Discord: discord.com/invite/usKSyzb
Twitter: www.twitter.com/davidbombal
Instagram: www.instagram.com/davidbombal
LinkedIn: www.linkedin.com/in/davidbombal
Facebook: www.facebook.com/davidbombal.co
TikTok: tiktok.com/@davidbombal
YouTube: / @davidbombal
Spotify: open.spotify.com/show/3f6k6gE...
SoundCloud: / davidbombal
Apple Podcast: podcasts.apple.com/us/podcast...
// MY STUFF //
https://www.amazon.com/shop/davidbombal
// SPONSORS //
Interested in sponsoring my videos? Reach out to my team here: sponsors@davidbombal.com
// MENU //
0:00 - Coming Up
0:36 - Introduction
01:17 - Who is MJ Banias?
03:55 - MJ Banias’ Favourite OSINT Tools
04:28 - Bullsh*t Hunting
06:10 - Tool 1 - WhatsMyName Web
09:47 - Tool 2 - DorkGPT and Dork Search Pro
14:30 - Tool 3 - OD Crawler
16:59 - Tool 4 - Kagi Browser
21:55 - Tool 5 - Ubikron
26:35 - Tool 6 - newspapers.com and Judy Records
34:56 - Tool 7 - OSINT Industries
40:15 - Maltego
42:54 - Darkside and Breach Data
49:03 - Privacy Laws in America and beyond
50:57 - Plugs From MJ Banias
51:35 - MJ Banias Socials
52:25 - Outro
Please note that links listed may be affiliate links and provide me with a small percentage/kickback should you use them to purchase any of the items listed or recommended. Thank you for supporting me and this channel!
Disclaimer: This video is for educational purposes only.
#osint #osinttools #privacy
Is this the most powerful network switch ever built? In this interview from Cisco Live, we look at the new generation of Cisco 8000 and Nexus switches capable of routing 100 Terabits per second. We break down why AI data centers are forced to move from air cooling to liquid cooling, and how a single switch chassis can now handle the equivalent mobile traffic of 100 million people.
AI models are growing faster than the infrastructure can keep up. To solve this, the network switch had to evolve. In this video, I talk to Will from Cisco about the engineering challenges of building the "G300" generation of switches, hardware so dense that air cooling is no longer enough.
We discuss the massive architectural shift occurring in data centers, where Liquid Cooled Switches are becoming the new standard to support 1.6T Ethernet ports and massive GPU clusters.
Key Hardware Topics:
• The 100 Terabit Chassis: How Cisco architecture handles massive throughput.
• Liquid Cooling: Why switches are adopting "direct-to-chip" cooling just like gaming rigs.
• Scale-Out Networking: How these switches manage congestion for AI training jobs (Job Completion Time).
• Career Insights: Will manages 5,000 engineers and explains why understanding the physical layer and hardware constraints is a superpower for modern developers.
Big thanks to Cisco for sponsoring my trip to Cisco Live EMEA and for changing my life and the lives of many other people.
// Will Eatherton SOCIAL //
LinkedIn: / willeatherton
Newsroom: https://newsroom.cisco.com/c/r/newsro...
// David's SOCIAL //
Discord: discord.com/invite/usKSyzb
Twitter: www.twitter.com/davidbombal
Instagram: www.instagram.com/davidbombal
LinkedIn: www.linkedin.com/in/davidbombal
Facebook: www.facebook.com/davidbombal.co
TikTok: tiktok.com/@davidbombal
YouTube: / @davidbombal
Spotify: open.spotify.com/show/3f6k6gE...
SoundCloud: / davidbombal
Apple Podcast: podcasts.apple.com/us/podcast...
// MY STUFF //
https://www.amazon.com/shop/davidbombal
// SPONSORS //
Interested in sponsoring my videos? Reach out to my team here: sponsors@davidbombal.com
// MENU //
0:00 - Coming up
0:49 - Will Eatherton introduction and projects // Hyperscale, neocloud & enterprises
08:03 - New Cisco hardware // Silicon One G300
13:18 - Data centers + AI + GPUs
16:27 - G300 use case & Cisco Nexus
21:56 - Liquid-cooled switches
24:12 - Networking as a career path
28:41 - Development and opportunities in networking
30:14 - Conclusion
Please note that links listed may be affiliate links and provide me with a small percentage/kickback should you use them to purchase any of the items listed or recommended. Thank you for supporting me and this channel!
Disclaimer: This video is for educational purposes only.
#cisco #ciscolive #ciscoemea
























It's really important to be cautious when buying a used car. One of the most crucial steps you can take is to check the vehicle’s history using its VIN, or Vehicle Identification Number. I recently came across a website called VIN check https://www.vindecoderz.com , and it’s a fantastic resource for anyone in your situation. By simply entering the VIN, you can access a comprehensive report that includes details about the car's past ownership, any accidents it may have been involved in, and its overall maintenance history.
💚WATCH>>ᗪOᗯᑎᒪOᗩᗪ>>👉https://co.fastmovies.org