Notes From CS Undergrad Courses FSU
This project is maintained by awa03
The internet is divided into two main categories
When you enter a domain name the computer needs to lookup the ip address for that name. The Domain Name System (DNS) translates the domain name into the ip address, since the computer does not understand directly what server the domain name is referencing. It is essentially a giant phone book for ip addresses.
So if cci.fsu.edu
is entered into your browser the DNS will respond with the coresponding ip address, 128.186.72.147
When a computer requests a website from a server the following is sent:
When you visit a site in your browser it asks the DNS for the ip address entered, then the browser sends a request to the websites ip address for the HTML code. The webserver then follows by sending the HTML code to view the website. The browser then interprets the code given and displays the website for you!
A web address that refers to a specific page or file on a website is called a Uniform Resource Locator (URL). For example, the URL https://cci.fsu.edu/index.php contains the protocol (HTTPS), the domain (cci.fsu.edu), and the local name of the specific file on the server (index.php).
[[Computer Science Notes/CGS 2821/Index|Index]]