Questions tagged [udp]
For questions about User Datagram Protocol, a Transport Layer protocol.
230 questions
1
vote
2
answers
44
views
If Wi-Fi and Ethernet already handle reliable delivery at Layer 2, why do we need TCP's reliability at Layer 4?
if the lower layers are already doing error checking and retransmission for each local link, why do we need transport layer protocols to also worry about delivery? Aren't they redundant?
For example, ...
3
votes
1
answer
676
views
Which processes listen to UDP port 7447?
I have six processes, working on UDP port 7447: one server and five clients.
I would like to show all of them, so I tried the commandline command netstat -aon | findstr "7447", but this ...
0
votes
1
answer
120
views
conntrack expectation on directed broadcast [closed]
I'm testing out a setup that I would reproduce in a production environment if I get it work. What I have:
A wireless network 192.168.88.0/24
An IoT device X in the wireless network
A Teltonika router ...
0
votes
1
answer
183
views
In wireshark, why following a TCP or UDP stream does not remove ICMP packets?
In Wireshark, when I follow a TCP or UDP stream using right click -> Follow -> UDP Stream, if there are some ICMP packets from same endpoints, wireshark will keep them in the stream. Why? Since ...
0
votes
0
answers
25
views
how to calculate the udp checksum when the udp payload is and odd number e.g 45 bytes payload [duplicate]
I am new to networking and was learning about the UDP Protocol and i came through the term UDP checksum. I searched the internet spent so much time finding the correct way to calculate the UDP ...
0
votes
1
answer
111
views
Why my high speed UDP transmitter send package to all devices after being disconnected from the server?
Here is my network configuration:
My Embedded board(192.168.124.249) sends a 16-byte UDP packet to my PC2(192.168.124.10) each 1ms.
Here is my PC2 received data:
Everything works fine until I ...
0
votes
1
answer
1k
views
What is the maximum size of an application-layer message for UDP?
TCP is capable of segmentation, i.e. even if the application layer creates an arbitrarily large message, the transport layer under TCP will split it into segments.
Now, as per this answer, UDP doesn't ...
1
vote
0
answers
392
views
How to forward UDP unicast messages to multiple destinations [closed]
I am trying to forward a UDP Unicast message so that it cant be received by multiple computers. Can anyone point me in the right direction for how to accomplish this?
Here are the details:
There are ...
0
votes
1
answer
66
views
OVS pop_mpls action returning invalid ethernet frames
I am currently running into walls when trying to pop an mpls label with ovs.
I currently have two interfaces on one ovs instance connected to ports eth0 and eth1. I define a flow on eth0 to pop an ...
0
votes
1
answer
249
views
does port 8080 need port_forwarding?
is port 8080 open (auto forwarded) in all devices? i used it without PortForwarding and UDP packets transferred successfully!
i expected the NAT to block this but public ip address worked simply!
i ...
3
votes
1
answer
4k
views
Does UDP work with NAT
I'm learning the TCP and UDP protocols and I have a question about UDP.
I used C to develop a UDP server and a UDP client in my LAN and it works as expected. The server and the client could ...
0
votes
2
answers
293
views
Why does I2P use UDP? [closed]
UDP is unreliable, why does I2P (garlic routing, an alternative to Tor) use UDP instead of reliable alternative: TCP? Won't I2P become unreliable due to UDP?
1
vote
2
answers
4k
views
UDP fragmented packets not reassembled
I have been working with a device that sends me UDP packets heavily.
I'm trying to capture those packets in my Linux machine (Ubuntu 22.04.2 LTS) with Python programming language.
But, most of the ...
1
vote
3
answers
588
views
UDP encrypted packets
I am analysing a Wireshark capture as part of understanding UDP/TCP, DNS and HTTP concepts and how packets are sent.
I found an interesting sequence of messages in the Wireshark file, but I am not ...
1
vote
1
answer
91
views
Running 2 or more applications PPP
I had a doubt regarding point-to-point protocol. Is it possible for a single PPP link to enable running of 2 or more simultaneous applications between two hosts?
Thanks!