Networks connect people worldwide, enabling communication, business, and entertainment.
The Human Network eliminates geographical boundaries.
Host Roles:
End Devices: Originates/receives data (PCs, printers, servers).
Servers: Provides services (web, email, file sharing).
Clients: Requests services from servers.
Peer-to-Peer:
Devices act as both clients and servers.
Suitable for small networks.
Intermediary Devices:
Switches, routers, firewalls manage data traffic.
Network Media:
Wired (copper, fiber optic) & wireless (Wi-Fi, radio signals).
Physical Topology: Shows actual device locations.
Logical Topology: Shows network communication paths.
LAN (Local Area Network): Small geographical area.
WAN (Wide Area Network): Connects multiple LANs over long distances.
Intranet: Private network for an organization.
Extranet: Secure access for external users.
Home & Business Connections: Broadband, DSL, fiber, cellular.
Converged Networks: Combines data, voice, and video.
Fault Tolerance: Redundant paths prevent failures.
Scalability: Supports network expansion.
Quality of Service (QoS): Prioritizes critical data.
Security: Prevents unauthorized access and threats.
BYOD (Bring Your Own Device): Allows personal device access.
Cloud Computing: Remote data storage and services.
Smart Homes & IoT: Devices communicating via networks.
Powerline Networking: Uses electrical wiring for connectivity.
Threats: Viruses, malware, hacking, insider threats.
Solutions:
Firewalls: Blocks unauthorized traffic.
Antivirus software: Detects and removes threats.
VPN (Virtual Private Network): Secure remote access.
Cisco Certified Network Associate (CCNA): Entry-level certification.
Networking Jobs: Roles in administration, cybersecurity, and cloud networking.
Access Methods:
Console: Direct device connection.
SSH (Secure Shell): Secure remote CLI access.
Telnet: Insecure remote CLI access (plaintext).
Terminal Emulators: PuTTY, Tera Term.
Command Modes:
User EXEC (>): Basic monitoring commands.
Privileged EXEC (#): Full device access.
Global Config (config): System-wide settings.
Navigation Commands:
Move to Privileged EXEC: enable
Enter Global Config: configure terminal
Exit current mode: exit
Exit all: end or Ctrl + Z
Keywords: Predefined parameters (e.g., ip protocols).
Arguments: User-defined values (e.g., 192.168.1.1).
Help Commands:
?: Shows available commands.
Tab: Auto-completes commands.
Ctrl + C: Cancels input.
Ctrl + Z: Exits to Privileged EXEC.
Device Naming:
Use hostname <name> to assign a device name.
Password Security:
Enable Privileged EXEC password: enable secret <password>
Encrypt passwords: service password-encryption
Banner Messages:
banner motd # Unauthorized Access Prohibited #
Configuration Files:
Startup-config (NVRAM): Saved settings.
Running-config (RAM): Active settings (lost on reboot).
Save Configurations:
copy running-config startup-config
Restore Last Saved Config:
reload
Erase Startup Config:
erase startup-config
reload
IPv4 Addressing:
Format: 192.168.1.1 (32-bit, 4 decimal values).
Subnet Mask: Defines network & host portions.
Default Gateway: Router's IP for external access.
IPv6 Addressing:
Format: 2001:db8::1 (128-bit, hexadecimal).
Network Media Types:
Copper (Twisted-pair, Coaxial), Fiber-optic, Wireless.
Manual Configuration (Windows PC):
Control Panel > Network Sharing Center > Adapter Settings > IPv4 Properties.
Set IP Address, Subnet Mask, Default Gateway.
Automatic Configuration (DHCP):
Enable "Obtain IP address automatically."
Configure Switch Virtual Interface (SVI):
interface vlan 1
ip address <IP> <Subnet Mask>
no shutdown
Ping Command: ping <destination IP>
Traceroute Command: traceroute <destination IP>
End of Study Guide