Networking and Linux Commands Practice

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/59

flashcard set

Earn XP

Description and Tags

Vocabulary-style flashcards covering network troubleshooting commands, Windows/Linux utility syntax, package management, and file permissions based on lecture notes.

Last updated 11:37 AM on 8/20/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

60 Terms

1
New cards

ping

A command that tests network connectivity using ICMP packets.

2
New cards

ping -t

A command that sends ICMP packets to a target until manually stopped.

3
New cards

ping -a

A command that resolves addresses to hostnames.

4
New cards

ping -n

A command that specifies the number of ICMP packets to send.

5
New cards

ping -

A command that specifies the packet size in bytes.

6
New cards

tracert

A Windows command that shows the path a packet takes to its destination.

7
New cards

traceroute

A Linux command that shows the path a packet takes to its destination.

8
New cards

Hop

Each device a packet passes through on its path to the destination.

9
New cards

pathping

A Windows command that combines the functionality of tracert and ping.

10
New cards

netstat

Displays network statistics including connections, open ports, and running programs.

11
New cards

netstat -a (Windows)

Displays all connections and listening ports in Windows.

12
New cards

netstat -b (Windows)

Displays the executable involved in creating each connection or listening port in Windows.

13
New cards

netstat -f (Windows)

Displays the FQDN (Fully Qualified Domain Name) for the foreign address when possible.

14
New cards

netstat -r

Displays the routing table.

15
New cards

netstat -p

Shows connections for a specified protocol such as TCP or UDP.

16
New cards

route

A command that shows the routing table in both Windows and Linux.

17
New cards

arp

A command that displays, adds, and removes ARP information, matching addresses to MAC addresses.

18
New cards

arp -a

Displays current ARP entries.

19
New cards

arp -d

Deletes the host specified by the internet address.

20
New cards

nslookup

A command used for DNS lookups in Windows to provide DNS server information, IP addresses, and domain names.

21
New cards

dig

A command used for DNS lookups in Linux.

22
New cards

ipconfig

A Windows command that displays local IP configuration, such as MAC address, IPv4/IPv6 address, and default gateway.

23
New cards

ifconfig

A Linux command that displays local IP configuration.

24
New cards

hping

A security tool used to check connectivity and analyze a target by sending ICMP, TCP, UDP, and RAW-IP packets.

25
New cards

netcat

A tool that can read and write data across TCP and UDP connections; it can create connections, send packets, and scan or listen on ports.

26
New cards

nmap

A network security scanner used to discover information such as open ports, running services, and operating system information.

27
New cards

nmap-ST

The Nmap command used to scan TCP ports.

28
New cards

nmap -SU

The Nmap command used to scan UDP ports.

29
New cards

yum list installed / dnf list installed

Commands used to list installed RPM packages.

30
New cards

apt autoremove

Automatically removes unused packages in Linux.

31
New cards

apt list

Lists installed packages in Linux.

32
New cards

dpkg get-selections

Displays installed Debian package selections.

33
New cards

yum erase packagename

The command to remove a package using yum.

34
New cards

systemctl --type-service-state-active

A command that shows active Linux services.

35
New cards

systemctl stop servicename

A command that immediately stops a Linux service.

36
New cards

man

A command used to research an unfamiliar Linux command or service.

37
New cards

apt-i nmap

The command used to install Nmap with apt according to the course.

38
New cards

netstat/ss -I

A Linux socket checking option that lists listening sockets.

39
New cards

netstat/ss -s

A Linux socket checking option that displays statistics for each protocol.

40
New cards

iptables

A Linux firewall utility that uses policy chains (INPUT, FORWARD, OUTPUT) and rules to allow or block network traffic.

41
New cards

iptables ACCEPT action

Allows the connection through the firewall.

42
New cards

iptables DROP action

Drops the connection without sending a response to the sender.

43
New cards

iptables REJECT action

Rejects the connection and sends a response to the sender.

44
New cards

sudo iptables -L

Lists current iptables rules.

45
New cards

sudo iptables -F

Clears (flushes) current iptables rules.

46
New cards

r (read)

Linux permission to access/view file contents or list directory contents; value is 44.

47
New cards

w (write)

Linux permission to save changes or create/rename/delete files; value is 22. Deleting or renaming directories also requires execute.

48
New cards

x (execute)

Linux permission to run a program/script or access a directory; value is 11.

49
New cards

chmod 755755 home

Sets permissions where owner/user = rwx, group = r-x, and others = r-x.

50
New cards

/etc/passwd

The location where local Linux user account names are stored.

51
New cards

/etc/shadow

The location where Linux password hashes are stored.

52
New cards

passwd -I username

Locks the specified user account.

53
New cards

usermod -aG

Appends a user to a secondary group while retaining existing secondary group memberships.

54
New cards

userdel -r username

Removes the user account and the user's home directory.

55
New cards

ssh-keygen-tra

The command that creates an SSH RSA key pair according to the transcript.

56
New cards

SCP

Secure Copy; a command used to securely copy files using SSH protocol.

57
New cards

HTTPS

A secure form of HTTP that uses SSL or TLS to encrypt data; uses TCP port 443443.

58
New cards

SFTP

A secure file transfer protocol that uses SSH version 22 to secure data transfers.

59
New cards

FTPS

FTP secured with SSL/TLS; it requires a server certificate.

60
New cards

TFTP

A file transfer protocol that uses UDP and provides no authentication, encryption, or error detection.