more over how does the router distinguish each packet between the multiple connected users. Why does the router just not ignore all request.
Asked
Active
Viewed 24 times
1 Answers
0
Most home routes use one-to-many NAT. That means that the router associates a local IP address and a port to a port in the router and forwards tha packets through there.
This image explains it:
When the server responds to the client, it will send packets to 145.12.131.7, 6282
and the router will forward them to 192.168.100.3, 3855
.

D. Pardal
- 6,173
- 1
- 17
- 37
-
thanks, So you could say it adds a temporary port forward and passes that info on to the server side. – irfan43 Apr 02 '20 at 17:10
-
Yes, that's exactly what happens. – D. Pardal Apr 02 '20 at 18:32
-
Please accept this answer if it answered your question. – D. Pardal Apr 03 '20 at 16:03