Filter löschen
Filter löschen

Reading PCAP files on Matlab

113 Ansichten (letzte 30 Tage)
Nishu Vidyarthi
Nishu Vidyarthi am 20 Feb. 2020
I am trying to read PCAP files on matlab. Can anyone suggest how to do so?
  5 Kommentare
Tolga Ulupinar
Tolga Ulupinar am 1 Feb. 2022
Hi James. I have some problems in your scripts. In capture read " error using hex2num Too many input arguments" . Can you help me for this error. How can ı fix this error. I used test_packet.txt
Walter Roberson
Walter Roberson am 1 Feb. 2022
Bearbeitet: Walter Roberson am 1 Feb. 2022
I see that @James mentioned that he wrote the code using Octave. The Octave hex2num() supports passing a class as the second parameter, but MATLAB does not.
I think you can change the hex2udp line
udp.(fields{fn})=hex2num(udp.(fields{fn}),'uint16');
to
udp.(fields{fn}) = uint16(sscanf(udp.(fields{fn}), '%x'));
This would possibly have slightly different behaviour in cases where the input somehow had spaces or non-hex characters instead of the expect hex output; I do not have access to Octave to test its behaviour in detail (and there is the big question of what would be most reasonable to have happen in that circumstance.)

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Pujitha Narra
Pujitha Narra am 24 Feb. 2020
Bearbeitet: Pujitha Narra am 24 Feb. 2020
Hi,
There is no such feature as of now, but it might be considered for a future release. However, 'pcap2matlab' is one of the several submissions in MATLAB File Exchange on MATLAB Central which is a forum for our product users to interact, exchange information and knowledge, without MathWorks' involvement. Feel free to contact the author of this submission directly for specific questions about the implementation.
Here's the link to the file:

Weitere Antworten (2)

michael
michael am 20 Jun. 2020
Hello,
Please see my response here on how to use pcap2matlab

Idin Motedayen-Aval
Idin Motedayen-Aval am 3 Jun. 2024
For completeness:
If you have access to 5G Toolbox, there is built-in pcapReader function that has been available since R2021b.

Kategorien

Mehr zu Get Started with WLAN Toolbox finden Sie in Help Center und File Exchange

Tags

Produkte


Version

R2019b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by