Script for reading UDP

3 Ansichten (letzte 30 Tage)
Angelo Forli
Angelo Forli am 16 Okt. 2020
I am trying to read UDP packets coming trough Ethernet (this is the format https://cuwb.io/docs/v3.3/software-integration/cdp-output-definition/). I can see the incoming UDP from WireShark (see below), but then I am unable to read them (I get this error: 'Cannot bind address already in use').
I am using the following code:
remote_ip = '169.254.128.7';
local_ip = '239.255.76.67';
remote_port = 49153;
local_port = 7667;
u = udp(remote_ip,remote_port,'LocalHost',local_ip,'Localport',local_port);
u.ByteOrder = 'littleEndian';
u.EnablePortSharing = 'on';
u.DatagramTerminateMode = 'off';
fopen(u);

Antworten (1)

Urmila Rajpurohith
Urmila Rajpurohith am 19 Okt. 2020
Hi
From the error message it seems that the port is already being used by another application ( or by an earlier run of your MATLAB script) . You might need to first restart your machine to free up the port ( or kill the process that is listening on that port).
Hope this helps!

Kategorien

Mehr zu Downloads finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by