Lesson 6 - Supporting IPv4 and IPv6 Networks Flashcards

1
Q

What will the command “ipconfig” display when typed into a CLI?

A

ipconfig without any switches will display the IP address, subnet mask, and default gateway (router) for all network interfaces to which TCP/IP is bound.

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

What will the command “ipconfig /all” display when typed into a CLI?

A

ipconfig /all displays complete TCP/IP configuration parameters for each interface, including whether the Dynamic Host Configuration Protocol (DHCP) is enabled for the interface and the interface’s hardware (MAC) address.

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

What will the command “ipconfig /renew interface” display when typed into a CLI?

A

ipconfig /renew interface forces a DHCP client to renew the lease it has for an IP address.

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

What will the command “ipconfig /release interface” display when typed into a CLI?

A

ipconfig /release interface releases the IP address obtained from a DHCP Server so that the interface(s) will no longer have an IP address.

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

What will the command “ipconfig /displaydns” display when typed into a CLI?

A

ipconfig /displaydns displays the Domain Name System (DNS) resolver cache.

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

What will the command “ipconfig /flushdns” display when typed into a CLI?

A

ipconfig /flushdns clears the DNS resolver cache.

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

What will the command “ipconfig /registerdns” display when typed into a CLI?

A

ipconfig /registerdns registers the host with a DNS server (if it supports dynamic updates).

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

What is ICMP?

A

The Internet Control Message Protocol (ICMP) is used to report errors and send messages about the delivery of a packet. ICMP messages are generated under error conditions in most types of unicast traffic, but not for broadcast or multicast packets.

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

In Linux, where are the DNS server addresses recorded?

A

In Linux, the DNS server addresses are recorded in /etc/resolv.conf

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

What is IGMP snooping?

A

IGMP snooping means the switch reads IGMP messages and can determine if the host on an access port or one or more hosts in a VLAN have joined a multicast group. IGMP snooping is not an available feature for switches that are not multicast-aware, and multicast traffic is treated as broadcast traffic across all ports and VLANs.

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

What are the elements of an IPv6 packet?

A

An IPv6 packet consists of two or three elements: the main header, which is a fixed length (unlike in IPv4), one or more optional extension headers, and the payload. As with an IPv4 header, there are fields for the source and destination addresses and the version (0110 or 0x06 for IPv6).

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

What does the arp -a command do?

A

arp -a (or arp -g ) shows the ARP cache contents. You can use this with IPAddress to view the ARP cache for the specified interface only. The ARP cache will not necessarily contain the MAC addresses of every host on the local segment. There will be no cache entry if there has not been a recent exchange of frames.

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

What does the arp -s command do?

A

arp -s IPAddress MACAddress adds an entry to the ARP cache. Under Windows, MACAddress needs to be entered with hyphens between each hex byte.

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

What does the arp -d command do?

A

arp -d * deletes all entries in the ARP cache; it can also be used with IPAddress to delete a single entry.

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

In Linux, what command shows entries in the local ARP cache (replacing the old arp command)?

A

In Linux, the ip neigh command shows entries in the local ARP cache (replacing the old arp command).

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

how is an IPv6 address exspressed?

A

An IPv6 address contains eight 16-bit numbers (double-byte or double-octet), with each double-byte number expressed as 4 hex digits. For example, consider the following binary address:

0010 0000 0000 0001 : 0000 1101 1011 1000 : 0000 0000 0000 0000 : 0000 0000 0000 0000 : 0000 1010 1011 1100 : 0000 0000 0000 0000 : 1101 1110 1111 0000 : 0001 0010 0011 0100

This binary value can be represented in hex notation as:

2001:0db8:0000:0000:0abc:0000:def0:1234

16
Q
A