Network+ Chapter 8 Flashcards

1
Q

What is subnetting? Ch 8 pg234

A

to take one larger network and break it into a bunch of smaller networks.

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

How do you create a subnet? Ch 8 pg 234

A

you take bits from the host portion of the IP address and reserve them to define the subnet address. This means fewer bits for hosts, so the more subnets, the fewer bits are left available for defining hosts.

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

A____________ is a 32-bit value that allows the recipient of IP packets to distinguish the network ID portion of the IP address from the host ID portion of the IP address. Ch 8 pg 236

A

subnet mask

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

What is the CIDR Value of 255.224.0.0 ?

A

/11

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

What are the valid hosts?

Ch 8 pg 236

A

Valid hosts are the numbers between the subnets, omitting all the 0s and all the 1s.

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

What are the valid subnets?

Ch 8 pg 236

A

2x = number of subnets. x is the number of masked bits, or the 1s. For example, in 11000000, the number of 1s gives us 22 subnets. In this example, there are 4 subnets.
.

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

The slash notation_ means how many bits are turned on (1s). pg 237 ch 8

A

(/)

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

If you ping the loopback address and receive an “unable to contact IP driver, error code 2” message, you need to do what?

Ch 8 pg 257

A

reinstall the TCP/ IP protocol suite on the host.

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

It’s basically the method that Internet service providers (ISPs) use to allocate a number of addresses to a company or a home connection.

ch 8 pg 237

A

Classless Inter-Domain Routing (CIDR).

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

Displays IP-to-MAC-address mappings on a Windows PC

ch 9 pg 259.

A

arp -a.

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

Uses an Internet Control Message Protocol (ICMP) echo request and replies to test if a host IP stack is initialized and alive on the network.

A

Ping

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

What is the acronym of ping? Ch 8 pg 259

A

Packet InterNet Groper

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

1) Sally’s is complaining that she can’t communicate to a server that just happens to be on a remote network: What is the 1st step in trouble shooting this problem?

Ch 8 pg 257

A

Open a command prompt window on Sally’s host, and ping 127.0.0.1

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

if this ping is successful what should you see on your screen?
Ch 8 pg 257

A

Reply from 127.0.0.1: bytes = 32 time

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

If it fails what will you need to do to correct this issue?

Ch 8 pg 257

A

If it fails, then you have an IP stack failure and need to reinstall TCP/ IP on the host.

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

(2nd Step)
Ping the IP address of the local host.
C:\ > ping 172.16.10.2

If that’s successful, your_______is functioning. If it fails, there is a problem with the ______.

Ch 8 pg 258

A

Network Interface Card (NIC)

17
Q

(3rd step)

From the command prompt window, ping the default gateway (router). C:\ > ping 172.16.10.1

If the ping works what should that tell you?
Ch 8 pg 258

A

If the ping works, it means that the NIC is plugged into the network and can communicate on the local network. If it fails, you have a local physical network problem that could be anywhere from the NIC to the router.

18
Q

If steps 1 through 3 were successful,what should you ping next?

Ch 8 pg 258

A

remote server.

If that works, then you know that you have IP communication between the local host and the remote server. You also know that the remote physical network is working.

19
Q

Here’s a list of situations when it’s best to have NAT on your side:

Ch 8 pg 264

A

You need to connect to the Internet and your hosts don’t have globally unique IP addresses.
You change to a new ISP that requires you to renumber your network.
You need to merge two intranets with duplicate addresses.

20
Q

This type of NAT is designed to allow one-to-one mapping between local and global addresses. Keep in mind that the static version requires you to have one real Internet IP address for every host on your network.
Ch 8 pg 265-266

A

Static NAT (SNAT)

21
Q

This version gives you the ability to map an unregistered IP address to a registered IP address from a pool of registered IP addresses. You don’t have to statically configure your router to map an inside-to-an-outside-address as you would using static NAT, but you do have to have enough real, bona-fide IP addresses for everyone who’s going to be sending packets to and receiving them from the Internet.
Ch 8 pg 265-266

A

Dynamic NAT (DNAT)

22
Q

This is the most popular type of NAT configuration.

Ch 8 pg 265-266

A

Overloading

23
Q

Name of the inside source address before translation

Ch 8 pg 266

A

Inside local

24
Q

Name of the destination host before translation

Ch 8 pg 266

A

Outside local

25
Q

Name of the inside host after translation

Ch 8 pg 266

A

Inside global

26
Q

Name of the outside destination host after translation

Ch 8 pg 266

A

Outside global