Explanation of Sockets and Ports in Networking
- May 20, 2014 at 10:49 am
admin- Posted in:
Explanation of Sockets and Ports in Networking
Computer generated processes require unique address to send and receive information. Port numbers are used for that purpose.
Process socket is a combination of host IP and process port number. Easy example is the Telnet service that is using port 23 by default. Knowing host IP address (for example 12.34.45.56) the socket address can be created (12.34.45.56:23). Even though Telnet’s default ...