1.10 IP Parameters for Client OS Flashcards

Verify IP parameters for Client OS (Windows, Mac OS, Linux). (23 cards)

1
Q

What is IP configuration?

A

Refers to the settings that enable network communication.

These settings include the IP address, subnet mask, default gateway, and DNS servers. Correct IP configuration is essential for a device to communicate locally and across the internet.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Why is verifying IP settings important for network troubleshooting?

A

It ensures proper network communication.

This includes confirming the IP address, subnet mask, gateway, and DNS settings.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What settings does an IPv4 host need to work correctly?

A
  • DNS server IP addresses
  • Default gateway (router) IP address
  • Device’s own IP address
  • Device’s own subnet mask

These settings are essential for an IPv4 host to communicate within its subnet and beyond.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How many DNS servers should an endpoint typically know for redundancy?

A

at least two

Redundant DNS servers ensure that if one fails, the other can still resolve domain names, maintaining network connectivity.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

True or False:

The default gateway forwards packets to addresses outside the subnet.

A

True

The default gateway is used when a device needs to communicate with a destination that is not within its local subnet, typically routing traffic to the internet or another network.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What must the host and the default router agree on?

A

The addresses inside the subnet.

This ensures that both devices are within the same network range, allowing communication between the host and the router for external traffic routing.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What command is commonly used in Windows to display IP configuration?

A

ipconfig

ipconfig is a basic command in Windows used to view the network configuration, including the IP address, subnet mask, and default gateway.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What does the command ipconfig /all show in Windows?

A
  • DNS server list
  • DHCP status
  • DHCP server IP address

The ‘ipconfig /all’ command offers more in-depth network information than ‘ipconfig,’ making it essential for troubleshooting.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What are the two key routes created by a host using DHCP?

A
  • A default route with the default gateway as the next-hop address
  • A route to the subnet connected to the working interface

DHCP automatically configures routes, ensuring the host can communicate with external networks and the local network.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

True or False:

The ifconfig output in macOS shows the default gateway and DNS servers.

A

False

While ifconfig shows IP addresses and network interfaces, it does not provide DNS or default gateway information, unlike ipconfig /all in Windows.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is the subnet mask format shown by ifconfig in macOS?

A

Hexadecimal

In macOS, the subnet mask is typically shown in hexadecimal format, which needs to be converted to decimal for easier understanding.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

True or False:

A gateway of on-link means the destination is on the local subnet.

A

True

An ‘on-link’ gateway signifies that the destination address is within the same subnet, meaning no external router is needed to reach it.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Fill in the blank:

The hex subnet mask 0xffffff00 converts to ________ in dotted decimal format.

A

255.255.255.0

Subnet mask conversion from hexadecimal to decimal is essential for understanding subnetting in IPv4.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What command provides more detail than ifconfig on macOS?

A

networksetup

The networksetup command provides a more comprehensive view of network configurations and settings in macOS compared to ifconfig.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What command does macOS use to list routing tables?

A

netstat -rn

netstat -rn displays routing tables and the active routes used by macOS to forward traffic.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What command in macOS can be used to view network settings?

A

ifconfig

ifconfig provides detailed network interface information, including IP address and subnet mask on macOS systems.

17
Q

Fill in the blank:

In the macOS netstat -rn output, the default route is represented by ________.

A

default

Unlike in other systems where 0.0.0.0 is used, macOS shows “default” in the routing table to represent the default route.

18
Q

True or False:

The ping command checks if a host can communicate with a remote device.

A

True

The ping command helps verify if the host can reach the destination by sending ICMP Echo Request packets and awaiting a reply, making it a basic tool for network connectivity tests.

19
Q

What command is commonly used in Linux to show networking settings?

A

ifconfig

ifconfig is commonly used in Linux to view network interface configurations, though ip commands are now preferred in modern Linux systems.

20
Q

What library has replaced net-tools in Linux for networking commands?

A

iproute2

iproute2 replaces the older net-tools library, offering more advanced and flexible networking commands like ip and ss.

21
Q

What does the command ip address show in Linux?

A

Ethernet MAC and IPv4 addresses, along with the subnet mask.

ip address is part of the iproute2 suite, providing detailed interface and address information in Linux.

22
Q

What is the output of the netstat -rn command in Linux?

A

It lists the default route and the route to the local subnet.

netstat -rn provides routing table details in Linux, which can be useful for troubleshooting and verifying network settings.

23
Q

If a Windows client receives an IP address in the 169.254.x.x range, what should you check?

A

The DHCP server connectivity or manually configure the IP address.

APIPA indicates the client failed to obtain a DHCP address, suggesting DHCP server or network issues.