To develop a simple webserver to serve html pages and display the configuration details of laptop.
HTML content creation.
Design of webserver workflow.
Implementation using Python code.
Serving the HTML pages.
Testing the webserver.
<html>
<head>
<title>TCP/IP Model</title>
</head>
<body bgcolor="pink" align="center">
<pre>
<h1>TCP/IP Model
1. Application Layer
* HTTP (HyperText Transfer Protocol)
* FTP (File Transfer Protocol)
* SMTP (Simple Mail Transfer Protocol)
* DNS (Domain Name System)
* Telnet
2. Transport Layer
* TCP (Transmission Control Protocol)
* UDP (User Datagram Protocol)
3. Internet Layer
* IP (Internet Protocol)
* ICMP (Internet Control Message Protocol)
* ARP (Address Resolution Protocol)
4. Network Access Layer (Link Layer)
* Ethernet
* Wi-Fi
* PPP (Point-to-Point Protocol)
</pre></h1>
</body>
The program for implementing simple webserver is executed successfully.