IP Addressing Flashcards

1
Q

InterNIC

A

Internet Network Information Center (international organization primarily responsible for the allocation of domain name and IP address)

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

Normal Public masks Class A = Class B = Class C =

A

Class A = 255.0.0.0 Class B = 255.255.0.0 Class C = 255.255.255.0

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

The /X

A

The /X = the number of 1’s in the binary mask. There are a total of 8 possible 1’s for each octet. 255 has 8 1’s, so 255.0.0.0 is a /8. 255.255.0.0 = /16 etc…

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

Possible number of subnets

A

To find the number of subnets use 2^n for the on bits 172.20.0.0 255.255.255.224 11111111.11111111.11111111.11100000 (11 bits on) so 2^11=2048 subnets

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

Possible Number of hosts per subnet

A

To find the number of host per subnet use 2^n-2 for the off bits

172.20.0.0 255.255.255.224 11111111.11111111.11111111.11100000 (5 bits off) so 2^5-2=30 host per subnet So a mask of 255.255.255.224 = 11111111.11111111.11111111.11100000 Each octet represents 128,64,32,16,8,4,2,1 or 2n where n is the position from the left. So the last “1” is in the 32 position and 256-224=32 you have to subtract the network and the broadcast address to get the number of hosts = 30.

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

Most Significant bits (MSBs) ?

  1. Class A =
  2. Class B =
  3. Class C =
A

Most Significant bits (MSBs)?

  1. Class A = 0
  2. Class B = 10
  3. Class C = 110
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What command would you use to determine if all seven layers of OSI reference model are operational between a local and remote host and gain login access to the remote host

A

Telnet

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

What are the 4 DHCP messages and are they Broadcast or Unicast

A

DHCPDISCOVER (Broadcast) Client to Server

DHCPOFFER (Unicast) Server to Client

DHCPREQUEST (Broadcast) Client to Server

DHCPACK or DHCPNAK (Unicast) Server to Client

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

IOS interface configuration Command is used to enable DHCP relay agent on the specified router interface.

A

ip helper-address

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

Protocol - What Protocol is used to obtain the IP address for a machine based on the MAC address.

A

RARP - Reverse Address Resolution Protocol

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

NAT

A

NAT - 4 Types 1. Static 2. Dynamic - Maps a Private IP to a Public address from a range of Public IPs. (Translation table populated as the required traffic flows through the NAT enabled device) 3. Overloading 4. Overlapping

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

IOS command will enable you to use hostnames with the Ping or traceroute commands in place of IPs

A

ip domain-lookup

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

IOS command to specify the IP address of one or more DNS Servers

A

ip name-server

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

DNS

A

Service responsible for resolving WEB URLs to their assigned IP and vise versa.

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

IOS Command to re-enable DHCP and DHCP relay agent if disabled.

A

service dhcp

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

Troubleshooting; 1. The 3 approaches for troubleshooting network problems using the OSI layered model are:

A

The 3 approaches for troubleshooting network problems using the OSI layered model are: a. Bottom Up b. Top Down c. Divide and Conquer (Use if interface and protocol up)

17
Q

SDM; Cisco Security Device Manager (SDM); Which window on SDM ver. 2.3.1 shows the configured dynamic NAT configuration?

A

Edit NAT Configuration Window

18
Q

DEVICE enables a host to acquire an IP address from a DHCP server on a different subnet.

A

DHCP relay agent

19
Q

IOS Command - Which allows you to change the packet load and other ICMP parameters to test the connectivity to a remote device.

A

extended ping

20
Q

IOS Command - Which will let you see the IP address configured on the interface of directly connected remote routers on a P2P WAN Link.

A

show cdp neighbor detail

21
Q

IOS interface configuration Command that will enable that interface to acquire an IP address from a DHCP server.

A

ip address dhcp

22
Q

What are the components of an IP address.

A

network ID

Host ID

Subnet ID

23
Q

Protocol used to resolve MAC address to IP address mappings.

A

ARP

24
Q

SDM; What are the two options available on SDM 2.3.1 utility to configure dynamic NAT.

A

Basic NAT Advanced NAT

25
Q

What factor determines the number of simultaneous translations that a router will support?

A

Amount of DRAM on the router.

26
Q

In situations where the same subnet mask must be used for multiple interfaces on a router, what principle should guide the selection of the mask

A

The mask must provide capacity sufficient for the largest number of hosts on a single interface while also providing the required number of subnets.

27
Q

To Find a Broadcast Address?

A

To Find a Broadcast Address, you must first find the network ID by adding the binary address with the mask. Then, use the number of subnet or host, to find the last ip in the range.

28
Q

ARP

A

IP address mapping to a MAC address

29
Q

RARP

A

MAC address of source IP address

30
Q

Write Out subnetting help table.

A

128 64 32 16 8 4 2 1

128

192

224

240

248

252

254

255

————— hosts (2^n) (subtract 2 to get rid of network ID and Broadcast IP)

2 n=1

4

8

16

32

64

128

256 n=8

512

1024

2048

4096 n=12

8192

16384

32768

65536 n=16

31
Q

If Default Subnet mask is use, the public Class A =

A

Class A - 1.0.0.0 to 127.0.0.0

32
Q

If Default Subnet mask is use, the public Class B =

A

Class B - 128.0.0.0 to 191.255.0.0

33
Q

If Default Subnet mask is use, the public Class C =

A

Class C - 192.0.0.0 to 223.255.255.0

34
Q

Private IP Class A address ranges:

A

10.0.0.0 Class A (255.0.0.0 or /8) through 10.255.255.255)

35
Q

Private (APIPA only) IP address ranges:

A

169.254.0.0 through 169.254.255.255 (APIPA only)

36
Q

Private IP Class B address ranges:

A

172.16.0.0 Class B (255.240.0.0 or /12) through 172.31.255.255 (16 contiguous class B network)

37
Q

Private IP Class C address ranges:

A

192.168.0.0 Class C (255.255.0.0 or /16) through 192.168.255.255 (256 contiguous class C network)

38
Q

Public IP addresses

A

IP address are classified into 3 class’s (groups) depending on the decimal equivalent of the 1st octet in the address as below:

0-255.xxx.xxx.xxx = all address’s

Class A

Intended for a small number of networks that had a large number of computers (hosts) attached. Class A IP Address have a value in the range 1…126 as the first octet. The values 0 and 127 are not available because they have special uses. Class A addresses use the first octet to identify the network which means that 126 addresses are usable, each of which can support 16,777,216 computers (hosts).

Class B

Intended for some networks that had an intermediate number of computers (hosts) attached. Class B IP Addresses have a value in the range 128…191 as the first octet. Class B addresses use the first two octets to identify the network which means that 16,320 addresses are usable, each of which can support 65,536 computers (hosts).

Class C

Intended for a large number of networks that would have a small (relatively) number of computers (hosts) attached. Class C IP Addresses have a value in the range 192…223 as the first octet. Class C addresses use the first three octets to identify the network which means that 2,080,800 addresses (networks) are possible, each of which can support 254 computers (hosts).