Section 14: Network Configurations Flashcards
OBJ 2.1, 2.5, 2.6
TCP/IP
Transmission Control Protocol / Internet Protocol Suite
Link/Network Interface Layer
Responsible for putting frames in the physical network’s transmission media
Media could be twisted pair cable, fiber optic, or radio waves
In this layer, data can only travel through the LAN
Internet Layer
“Where to send those packets”
Used to address packets and route them across the network
Transport Layer
“How to send the packets”
Shows how to send the packets
Application Layer
Contains all the protocols that perform higher level functions, such as email, file transfers, encryption, and others
Transmission Control Protocol (TCP)
can have a connection oriented method of sending packets but slower than UDP
User Datagram Protocol (UDP)
connectionless protocol with lower overhead so its faster than TCP, but the delivery is not guaranteed
Layers of TCP/IP
- Application Layer : what to do with the data
3.Transport Layer: how to send the data (TCP or UDP) - Internet Layer: where to send the data
- Link/Network Interface Layer: sends data across the LAN
Internet Protocol version 4 (IPv4)
formed out of 4 numbers (each called an octet), in a dotted-decimal notation from 0-255
Subnet Mask
Formatted like an IPv4 address.
A portion is the network bits, other portion is the host bits
Example:
192.168. 1 .4
192.168. 1 .50
255.255.255.0
Because the first 3 octets in the subnet mask are 255, it tells us the last octet contains the host bit for the IPv4 addresses, so 1 and 50 are the host bits. That means they are on the same network
IPv4 Classes
To identify the class for a IPv4, look at the first octet
Class| 1st Octet | Default Subnet Mask | Possible Hosts
___________________________________________________________
A | 1-127 | 255.255.255.0 N.H.H.H | 16.7 million (256^3)
B | 128-191 | 255.255.0.0 N.N.H.H | 65,536 (256^2)
C | 192-223 | 255.255.255.0 N.N.N.H | 256
D | 224-239 | N/A Multicast Address | N/A
E | 240-255 | N/A R&D purposes | 268 million
Multicast Address
A logical identifier for a group of hosts in a computer network
Classful Mask
Default subnet mask for a given class of IP addresses
Classless Inter-Domain Routing (CIDR)
Allows for borrowing some of the host bits and reassigning them to the network portion
CIDR Notation:
The number of consecutive 1s
192.168.1.4 255.255.255.0 -> 192.168.1.4/24
192.168.1.4 255.255.255.192 -> 192.168.1.4/26
24 turns into 26 because 2 bits borrowed from host bits
CIDR Notation for classes:
A: /8
B: /16
C: /24
Subnetting
Allows you to use a classless subnet mask to create smaller networks with fewer hosts in each of those networks than you could if you had a classful subnet mask by itself
Public IP (Routable)
Can be accessed over the internet and is assigned to the network by an ISP
Private IP (Non-routable)
Can be used by anyone any time, but only within their own LANs
Start with either 10, 172, or 192
A | 10 | 10.0.0.0 - 10.255.255.255 | 16.7 million
B | 172.16-172.31 | 172.16.0.0 - 172.31.255.255 | 1.05 million
C | 192.168 | 192.168.0.0 - 192.168.255.255 | 65,536
Network Address Translation (NAT)
allows for routing of private IPs through a public IP
Loopback Address (127.0.0.1)
Creates a loopback to the host and is often used in troubleshooting and testing network protocols on a system
All IPs in the range of 127.0.0.0 to 127.255.255.255 are loopback addresses
localhost always resolves to 127.0.0.1
Automatic Private IP Addresses (APIPA)
Used when a device does not have a static IP address or cannot reach a DHCP server
Looks like 192.254.x.x
Static Assignment
Manually type the IP address for the host, its subnet mask, default gateway, and DNS server
Impractical on large scale intranets
Dynamic Assignment
Dynamic allocation of IP addresses
Done automatically by the network’s DHCP server
Domain Name System (DNS)
Used to convert human readable web addresses into machine readable IP addresses
The internet’s version of a phone book
Windows Internet Name Service (WINS)
Identifies NETBIOS systems on a TCP/IP network and converts those NETBIOS names to IP addresses
Used in LANs, like a DNS but only works in a Windows domain system