diff options
| author | Ben Sanders <ben@sanders.life> | 2025-12-26 07:45:45 -0500 |
|---|---|---|
| committer | Ben Sanders <ben@sanders.life> | 2025-12-26 07:45:45 -0500 |
| commit | c58d90c868a08013878a7d4a28a2af91ff23ada1 (patch) | |
| tree | e4a911e2803dcc993473a7c1769832689ba48a6a /ccna-quick-reference-notes.md | |
| parent | dc565ab2ff86291999f50a5d7d2f7769b11009b4 (diff) | |
Diffstat (limited to 'ccna-quick-reference-notes.md')
| -rw-r--r-- | ccna-quick-reference-notes.md | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/ccna-quick-reference-notes.md b/ccna-quick-reference-notes.md new file mode 100644 index 0000000..0cc055f --- /dev/null +++ b/ccna-quick-reference-notes.md @@ -0,0 +1,64 @@ +# CCNA Quick Reference Notes + +- Computer Network: Digital Telecommunications network that allows nodes to share resources +- Switches: Layer 2 devices that with many ports that connect hosts on a LAN. +- Router: Layer 3 devices that have fewer ports and connects LANs together. +- Ethernet: A collection of network protocols and standards +- Ethernet standards: IEEE 802.3 (1983) + - 10Mbps Ethernet: 802.3i 10BASE-T 100m + - 100Mbps Fast Ethernet: 802.3u 100BASE-T 100m + - 1000Mbps Gig. Ethernet: 802.3ab 1000BASE-T 100m + - 10Gbps 10 Gig. Ethernet: 802.3an 10GBASE-T 100m +- PCs - Transport (TX) data on pins one and two. +- Switches - Recieve (RX) data on pins one and two. +- PCs - RX on pins three and six. +- Switches - TX on three and six. +- Fiber Optic Connections: IEEE 802.3.ae +- Single mode: + - Narrower than multimode + - Light enters at a single angle from a laser based transmitter. + - Allows longer cables then UTP and multimode fiber. + - More expensive then multimode. +- Multimode fiber: + - Wider than single mode. + - Allows multiple light waves to enter the core. + - Allows longer cables than UTP but shorter than single mode. + - Cheaper than single mode being LED-based. +- Fiber Optic Standards: + - 1000BASE-LX 802.3Z 1Gbps multi/single 5km single + - 10GBASE-SR 802.3ae 10Gbps multi 400km + - 10GBASE-LR 802.3ae 10Gbps single 10kilo + - 10GBASE-ER 802.3ae 10Gbps single 30kilo + +## OSI Model + +Application +Presentation +Session +Transport +Network +Data Link +Physical + +MAC Address: 6 bytes (48-bits) + +## VLANs + +- A LAN is a single broadcast domain. +- A broadcast domain is a group of devices which will receieve a broadcast frame. (Destination MAC: FFFFF:FFFFF:FFFFF) +- Lots of unnecessary broadcasts traffice can reduce network performance + +### What is a VLAN? + +- Logically seperates end-hosts at Layer 2. +- Are configured on Layer 2 switches on a per-interface bases. +- Any end host connected to that interface is part of the VLAN. + +### Configuring a VLAN + +- `# sh vlan br` +- `# switchport mode access` + +An access port is a port is a port that belongs to a single VLAN, untagged port. + +Switchports that carry multiple VLANs are called trunk ports, tagged ports.
\ No newline at end of file |
