receiving emails from the server to the client machine. In other words, we typically use a programthat employs SMTP for sending e-mail, and either POP3 or IMAP for receiving messages fromour local (or ISP) server. SMTP is usually implemented to operate over Transmission ControlProtocol port 25.
3.1.6 HTTP Hyper Text Transport Protocol
A protocol used to transfer hypertext pages across the World Wide Web. HTTP defines howmessages are formatted and transmitted, and what actions Web servers and browsers shouldtake in response to various commands. For example, when you enter a URL in your browser, thisactually sends an HTTP command to the Web server directing it to fetch and transmit therequested Web page. Note that HTML deals with how Web pages are formatted and displayed ina browser.HTTP is called a stateless protocol because each command is executed independently, withoutany knowledge of the commands that came before it.
3.1.7 SNMP Simple Network Management Protocol
The Simple Network Management Protocol (SNMP) is an application-layer protocol designed tomanage complex communication networks. SNMP works by sending messages, called protocoldata units (PDUs), to different parts of a network. SNMP-compliant devices, called agents, storedata about themselves in Management Information Bases (MIBs) and return this data to theSNMP requesters. There are two versions of SNMP: Version 1 and Version 2.
3.1.8 UDP User Data gram Protocol
UDP is a simple protocol that transfers data grams (packets of data) to a remote computer. UDPdoesn't guarantee delivery of packets (Contrast this with TCP that guarantees delivery of packets). UDP doesn’t guarantee correct sequence of delivery.
3.1.9 TCP Transmission Control Protocol
TCP, like UDP is a protocol used in a TCP/IP networks. TCP ensures that the packets aredelivered at their destination, and in correct sequence.
3.1.10 IP Internet Protocol
IP is the underline protocol for all the other protocols in the TCP/IP protocol suite. IP defines themeans to identify and reach a target computer on the network. Computers in an IP network areidentified by unique numbers which are known as IP addresses.
3.1.11 ARP Address Resolution Protocol
In order to map an IP address into a hardware address the computer uses the ARP protocol.ARP protocol broadcasts a request message that contains an IP address, to which the targetcomputer replies with both the original IP address and the hardware address.
3.1.12 NNTP Network News Transport Protocol
Leave a Comment