Ask Your Question
0

How does mac os open multiple cap packets?

asked 2019-05-29 06:44:29 +0000

zhangguorong gravatar image

My mac os version is 10.13.6 and the Wireshark version is 3.0.1. Currently in my system, I can't open multiple cap/pcap files at the same time, only one at the same time.How can I open multiple files at the same time? Thanks.

edit retag flag offensive close merge delete

2 Answers

Sort by » oldest newest most voted
0

answered 2019-05-30 17:46:16 +0000

Guy Harris gravatar image

Wireshark does not support having multiple capture files open in the same process, so it can't fully function as a standard macOS application.

If Wireshark is installed in /Applications/Wireshark.app, and you have a small shell script called, for example, "wsopen":

#! /bin/sh
/Applications/Wireshark.app/Contents/MacOS/Wireshark "$@"&

in your $PATH, you could open multiple files from the command line with wsopen {file path}. (If there were a Launch Services command-line tool to find the path of an app, that could be made to use the installed path even if it isn't /Applications/Wireshark.app.)

edit flag offensive delete link more

Comments

Good thanks, already solved。

zhangguorong gravatar imagezhangguorong ( 2019-05-31 03:36:16 +0000 )edit
0

answered 2019-05-29 07:14:20 +0000

SYN-bit gravatar image

You can open multiple copies of Wireshark from a terminal window with the command: open -n -a /Applications/Wireshark.app.

Unfortunately I don't know of a way to open multiple copies by opening pcaps from the finder.

edit flag offensive delete link more

Comments

ok,thanks.

zhangguorong gravatar imagezhangguorong ( 2019-05-31 03:42:52 +0000 )edit

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 2019-05-29 06:44:29 +0000

Seen: 9,530 times

Last updated: May 30 '19