Module 7: Networking Fundamentals: Understanding TCP/IP and Networking Flashcards
(101 cards)
What is a host?
A computer that can be either the client or the server using client/server applications.
What is a node?
Any computer, printer, smart thermostat, or other networked device that can be addressed on the network.
Are all nodes considered hosts?
Every host is a node, but not every node is a host. Examples of nodes that are not hosts are network equipement; routers, hubs, switches
How are client or server applications running on a computer identified?
By a port address, also called a port or port number
_____ identifies a node and its network connection
IP address
What are the 2 types of IP addresses (w/ details)?
32bit which is IPv4, written as 4 decimal numbers
28bit which is IPv6, written as 8 hexadecimal numbers
What is used to identify a network adapter (NIC)?
MAC addresses, a 48 bit identification number
What is this an example of, 00-0C-6E-4E-AB-A5?
MAC address written in hexadecimal or hex
What is a host name?
A human-readable label assigned to a device connected to a network and can be used in place of its IP address?
Where can you change the host name/computer name?
In the about window and clicking Rename this PC
What is the purpose of a domain name? Give examples
- Identifies a network
- For example, the names that appear before the period in microsoft.com, cengage.com, and mycompany.com
Describe the meaning of the letters after a domain name
- The letters after the period are called the toplevel domain and tell you something about the domain.
.com (commercial)
.org (nonprofit)
.gov (government)
.edu (education)
.info (general use)
____ identifies a computer and the nework to which it belongs.
Fully Qualified Domain Name (FQDN)
Using Cengage, what is the FQDN? Explain in detail
www.cengage.com
host name - www
domain name - cengage
top level domain name - com
A fully qualified domain name (FQDN) must be associated with an ____ before the computer can be found on the internet.
IP Address
What is Transmission Control Protocol/Internet Protocol (TCP/IP)?
a suite of protocols or rules that define network communication
In order from top to bottom, what are the four layers of the TCP/IP model?
Application Layer
Transport Layer
Internet (Network) Layer
Link (Network Access) Layer
Explain a message from browser to web server using the TCP/IP model
1) Application Layer: Browser client sends request to web server. The request is sent through the OS which formats the message using the HTTP protocol and passed to the Transport Layer.
2) Transport Layer: The HTTP request gets encapsulated into a TCP segment which includes source/destination port numbers, 80. TCP provides reliable, connection-oriented communication between the client and server. This includes features like flow control, error detection, and retransmission of lost packets.The TCP segment is then passed down to the internet layer.
3) Internet Layer: The TCP segment is encapulated futher into an IP packet to ensure the message reaches the desintation host on the local network. The IP packet contains source and desintation IP and TTL value. Then it gets passed to the Link Layer.
4) Link Layer: The physical network that receives the IP packet and gets encapsulated into a data frame w/ error checking information. The data frame includes the NIC MAC address of the source and destination address. The switch or router forwards the message to the network.
- On the Network: The IP at the Internet Layer is used to find the correct destination network (router/firewall). If an Intranet exists within destination network, the IP address is used again to find the correct network within the Intranet. Then the MAC address at the Link Layer finds the correct computer or host on the LAN.
What is a protocol data unit (PDU)? Give examples
A term used in networking to describe the unit of information transmitted across a network at various layers of the OSI model or the TCP/IP suite
- Application Layer: The PDU at this layer is called a “message.”
- Transport Layer: The PDU at this layer is called a “segment” (for TCP) or “datagram” (for UDP).
- Internet Layer: The PDU at this layer is called a “packet.”
- Link Layer: The PDU at this layer is called a “frame.”
Name the layers of the OSI model and its PDU’s
- Application Layer: The PDU at this layer is called a “message.”
- Presentation Layer: The PDU at this layer is called a “datagram.”
- Session Layer: The PDU at this layer is called a “datagram.”
- Transport Layer: The PDU at this layer is called a “segment” (for TCP) or “datagram” (for UDP).
- Network Layer: The PDU at this layer is called a “packet” or “datagram.”
- Data Link Layer: The PDU at this layer is called a “frame.”
- Physical Layer: The PDU at this layer is referred to as a “bit.”
What is a Router? What layer of the OSI and TCP models does it operate on?
A device that manages traffic between two or more networks and can help find the best path for traffic to get from one network to another.
-OSI: Network Layer
-TCP/IP: Internet Layer
HTTPS (HTTP secure) refers to the HTTP protocol working with a security protocol such as ____ or ____ to create a secured socket (or channel). Which port is being used?
- Secure Sockets Layer (SSL) or Transport Layer Security (TLS). TLS is better security
- Uses Port 443 and TCP
A web server “listens” to which port for HTTP (Hypertext transfer protocol)?
- Port 80
- Uses TCP
Mail servers use which port numbers? and Protocol?
- Simple Mail Trasnport Protocol (SMTP): 25
- POP3: 110
- IMAP4: 143
- All use TCP