Standards and Implementation:
The first LAN ever was Ethernet.
Robert Metcalfe and coworkers at Xerox in mid 70s.
The first Ethernet standard published 1980 by DigitalEquipCorp, Intel, Xerox (DIX).
Metcalfe wanted it to be a shared open standard.
1985 IEEE published standards for LANs.
For compatibility with OSI, small mods made to Ethernet standards with 802.3.
Ethernet –L1 and L2:
Ethernet implemented in MAC sublayer and L1 only.
LLC:
The use of these sublayers contributes significantly to compatibility between diverse end devices.
802.2 describes LLC sublayer functions.
802.3 describes the Media Access Control (MAC) sublayer and L1 functions.
LLC – software (drivers) – independent physical equipment.
Read the rest of this entry →
Tags: study, wan, ip, cisco, interface, guides
Physical Layer Protocols and Services:
L1 controls how data is placed on the media.
It has to encode bits into signals and Tx/Rx these signals across the physical media.
The delivery of frames across media requires.
Physical media and connectors.
A representation of bits – code.
Encoding of data and control information.
Tx and Rx circuitry on devices.
The purpose of L1 is to create the electrical, optical, or radio signal that reqresents the bits in each frame.
It also must retrieve signals from media, restore them to bit representations, and pass them to L2 as a complete frame.
The type of signal – depends on the type of media.
Copper = electrical pulses.
Fiber = patterns of light.
Wireless = patterns of radio transmissions.
Read the rest of this entry →
Tags: wan, 802.1q, guides, cisco, vlan, router
Data Link Layer
2 primary functions:
1. Prepares L3 packets for transmission.
2. Controls access to the physical media.
Accessing the media:
A L3 exchange may involve many L2 and media transitions.
At each hop, routers decapsulate and re-encapsulate frames to match the right media.
The L3 protocol is not aware of which media is used.
L2 includes many types of media and access methods (eg. how it is getting to the wire).
L2 protocols specify the frame type and how to get a frame on and off each medium (media access control method, MAC method).
Devices use adapters to connect to a network (eg. NIC)
The adapter manages the framing and media access control (generates the signal transition).
Routers have different physical interfaces that frame the data as suitable for each link.
Read the rest of this entry →
Tags: guides, vlan, router, wan, ip, switch
Planning & Cabling Networks
Media Required to Make a LAN Connection:
LANs use gateways to connect o other networks.
They use hubs or switches to connect end devices.
Each port on a router connects to a different network.
Routers break up broadcast domains and collision domains.
Routers can have both LAN and WAN interfaces.
Intranetwork Devices:
Hub
Receives signals, regenerates and sends them over all ports.
Creates a logical bus (i.e. multi-access media, everybody is on the same wire). [topologies].
Shared bandwidth approach – reduced performance (only one device can talk at a time).
A single collision domain.
Less expensive than switches.
Read the rest of this entry →
Tags: switch, ip, 802.1q, vtp, vlan, study
ANDing: (Boolean and)
Computers use digital logic to interpret IP addresses
This logic is called a Boolean AND. It is the comparison of two bits to yield:
1 & 1 = 1
1 & 0 = 0
0 & 1 = 0
0 & 0 = 0
Any # ANDed with 0 is always 0
Any # ANDed with 1 is always the original #
The ANDing of an IP address & mask = network address
A subnet mask “masks” the host bits of an IP address
Routers and hosts use ANDing to determine networks
It is frequently necessary to be able to use ANDing
You will need to know how routers make routing decisions
Start with the IP address & mask above/below each other
10101100.00010000.00010100.00100011 172.16.24.35 (Host)
11111111.11111111.11111111.111 00000 255.255.255.224
——————————————————
10101100.00010000.00010100.00100000 172.16.23.32 (network address for
host /27)
Read the rest of this entry →
Tags: vlan, ip, wan, cisco, study, switch