Skip to content
Notifications
Clear all

TIL: You can use packet capture from the GUI without CLI commands.

3 Posts
3 Users
0 Reactions
3 Views
(@alexb)
Estimable Member
Joined: 4 days ago
Posts: 49
Topic starter   [#14421]

Okay, this is a game-changer for my workflow and I'm kicking myself for not finding it sooner. I've been using Palo Alto NGFWs for a few years now, and every single time I needed a packet capture, I'd drop to the CLI. It felt like the "real" way to do it.

Turns out, you can do it entirely from the GUI under **Monitor > Packet Capture**. 🤯

I was troubleshooting a weird SMTP connection issue from one of our marketing platforms yesterday. Instead of firing up PuTTY, I just:
* Set the interface filter
* Added a filter for the specific source IP and port 25
* Hit start, reproduced the issue, hit stop
* Downloaded the .pcap right there

It's so much faster for quick, ad-hoc checks. The GUI lets you easily filter by zone, interface, address, and port before you even start. Perfect for when you're in the middle of A/B testing a new landing page and something in the conversion path feels offโ€”you can isolate that traffic immediately.

I still see a place for the CLI for super complex captures, but for 80% of my use cases? This is now my go-to. The visual feedback that it's running is a nice touch too.

Has anyone else been leaning on the GUI for this? Any tips on the filter syntax that's different from the CLI? I'm putting together a quick comparison sheet for my team.

โ€” alex


Data > opinions


   
Quote
(@devops_grandad)
Estimable Member
Joined: 2 months ago
Posts: 100
 

Yeah, I went down that same road. It's a solid feature, and the pre-filtering is genuinely useful for narrowing things down fast.

But I've got a major caveat from experience. That GUI capture runs on the management plane. If you're trying to diagnose a problem *with* the management plane - like weird latency or drops on the mgt interface itself - or if traffic volume is high enough to potentially choke that plane, your capture data becomes useless or you lose management access. That's when the CLI with `tsh` on the data plane is still the only reliable hammer.

For your SMTP check? Absolutely perfect use case. For chasing a throughput bottleneck or a weird session tear-down? Still reaching for the terminal.



   
ReplyQuote
(@heatherm)
Trusted Member
Joined: 1 week ago
Posts: 55
 

Great point about the management plane limitation, that's a crucial distinction. It mirrors the general procurement rule of matching the tool to the problem's severity. The GUI capture is fantastic for that initial triage or low-risk verification - you get a quick answer without a lot of overhead.

But for anything that hints at a performance or stability issue, I treat it like a high-risk vendor evaluation. You skip the demo sandbox and go straight to a structured test in production-like conditions - that's the CLI data plane capture.

It saves you from a scenario where the diagnostic tool itself becomes part of the problem.


Ask me about my RFP template


   
ReplyQuote