Internet Server Management L1
Internet Server Management L1
Learning Objectives
1. Have an understanding of technologies that are used on the internet
2. Grasp the concept and the architecture of internet server
3. Be in a position to be able to implement the internet servers and its services
4. One must be able to manage internet server and its services
Most recent protocols are assigned by the IETF for internet communications, and the
IEEE, or the ISO organizations for other types.
1. FTP
FTP is the protocol used to transmit files between computers connected to each
other by a TCP/IP network, such as the Internet.
3. HTTP
HTTP is the protocol used to transmit all data present on the World Wide Web. This
includes text, multimedia and graphics.
It is the protocol used to transmit HTML, the language that makes all the fancy
decorations in your browser. It works upon TCP/IP.
4. UDP
Both Transmission Control Protocol (TCP) and User Datagram Protocol (UDP) are OSI
Layer-4 transport protocols; they are used to pass the actual data.
The main difference between TCP and UDP, from a developer's perspective, is how they
handle packet order.
TCP is a connection-oriented protocol; it guarantees that all sent packets would reach the
destination in the correct order.
UDP generally is used for real-time communication, where a little percentage of the packet
loss rate is preferable to the overhead of a TCP connection.
5. ICMP
ICMP is a control protocol, meaning it is designed not to carry application data, but rather
information about the status of the network itself.
It is essentially a network layer (OSI Layer-3) error-reporting and error-control protocol for
the network.
The best-known examples of ICMP in practice are the ping utility, which uses ICMP to
probe remote hosts for responsiveness and overall round-trip time of the probe messages, and
The World Wide Web depends on DNS for user-friendly navigation. You could
get to a Web site by entering the IP address of a site in your Web browser, but
remembering lots of arbitrary numbers isn’t easy for most people. I
t’s much easier to remember a DNS name for a Web site that reflects its content,
such as http://www.yahoo.com or http://www.microsoft.com. It’s fair to say that
without DNS, the Web wouldn’t have become quite the phenomenon that it is
now.
Routing
Remote access
A server that is dedicated to handling users that are not on a LAN but need remote
access to it. The remote access server allows users to gain access to files and print
services on the LAN from a remote location.
For example, a user who dials into a network from home using an analog modem
or an ISDN connection will dial into a remote access server.
Once the user is authenticated he can access shared drives and printers as if he
were physically connected to the office LAN.
TELNET, SECURE SHELL (SSH)
Telnet
Telnet is a protocol that allows you to connect to remote computers (called hosts)
over a TCP/IP network (such as the internet).
Using telnet client software on your computer, you can make a connection to a
telnet server (that is, the remote host). Once your telnet client establishes a
connection to the remote host, your client becomes a virtual terminal, allowing
you to communicate with the remote host from your computer.
In most cases, you'll need to log into the remote host, which requires that you
have an account on that system.