Networking Basics: Switching, Routing, Gateways, and IP Forwarding (Linux)

0.0(0)
studied byStudied by 0 people
GameKnowt Play
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/17

flashcard set

Earn XP

Description and Tags

Vocabulary flashcards covering key networking concepts and Linux commands used for configuring and troubleshooting basic network connectivity, routing, and IP forwarding.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

18 Terms

1
New cards

IP address

A numeric label assigned to a host's network interface for identification and routing (e.g., 192.168.1.10/24).

2
New cards

Subnet

A distinct network segment defined by a network address and mask (e.g., 192.168.1.0/24).

3
New cards

CIDR notation

Classless Inter-Domain Routing prefix length used to denote subnet size (e.g., /24).

4
New cards

Gateway

The next-hop device (usually a router) that forwards traffic from a local network to other networks.

5
New cards

Router

A device that connects multiple networks and forwards packets between them via interfaces on each network.

6
New cards

Switch

A device that forwards frames within the same local network, enabling communication on a subnet.

7
New cards

Interface

A network connection on a Linux host (physical or virtual), such as eth0.

8
New cards

ip link

Linux command to list and manage network interfaces.

9
New cards

ip addr

Linux command to display the IP addresses assigned to interfaces.

10
New cards

ip addr add

Linux command to assign an IP address to an interface (temporary unless persisted).

11
New cards

ip route

Linux command to view the current IP routing table.

12
New cards

ip route add

Linux command to add a routing entry specifying a destination network and next-hop gateway.

13
New cards

Default route

A catch-all route (0.0.0.0/0) used when no more specific route exists, typically via a gateway.

14
New cards

192.168.1.1

Router's IP address on the 192.168.1.0/24 network; serves as the gateway for that network.

15
New cards

192.168.2.1

Router's IP address on the 192.168.2.0/24 network; serves as the gateway for that network.

16
New cards

192.168.1.0/24

Subnet for the 192.168.1.x network; addresses range within this block.

17
New cards

192.168.2.0/24

Subnet for the 192.168.2.x network; addresses range within this block.

18
New cards

IP Forwarding

The process of routing IP packets between different network interfaces, enabling a Linux host to act as a router.