anonymous
2014-04-24 07:03:25 UTC
When a TCP connection is established, its client is identified by a pair (IP address, TCP port), similarly for its server side.
Illustrate briefly how this framework enables the sharing of a resource in networked applications, taking a web server as an example.
I think i have MISUNDERSTOOD the question.. My answer is:
Port is uniquely differs applications or processed running off a single computer and enables them to share a single physical connection to a packet switched network.
port number is added to IP address. this completes the address for communication session.
Packets are routed across the network to a specific destination IP address and then upon reaching the destination computer, then further routed to specific process.
web server delivers web pages. every server has an IP address and domain name.
enter URL in browser.. e.g www.page.com/index.html this sends a request to the web server whose domain name is page.com. The server then fetches the page names index.html and sends it to the computer at address ***.***.****.***. Then to the application (browser) by using port number.
I have a feeling my answer is incorrect....