Test Bank Lesson 5 - Implementing TCPIP in The Command Line
Test Bank Lesson 5 - Implementing TCPIP in The Command Line
Test Bank Lesson 5 - Implementing TCPIP in The Command Line
Multiple Choice
1. What command displays the IP address, subnet mask, and default gateway of the system you
are currently on?
a) ipconfig
b) ping
c) tracert
d) nslookup
Answer: a
Difficulty: Easy
Section Reference: Working with Ipconfig and Ping
Explanation: The ipconfig and ping commands are probably the two most commonly used
commands when analyzing and troubleshooting networking issues. Although ipconfig
displays information, it can also be used to make basic configuration changes and reset certain
facets of DHCP and DNS.
2. What protocol does the ping command use to test network connectivity?
a) TCP
b) UDP
c) ICMP
d) FTP
Answer: c
Difficulty: Hard
Section Reference: Working with Ipconfig and Ping
Explanation: ICMP is used to send error messages to relay query messages. It is also used with
the ping, tracert, and pathping commands
3. What command do you use to clear the DNS cache on a local system?
a) ipconfig /registerdns
b) ipconfig /cleardns
c) ipocnfig /flushdns
d) ipconfig /releasedns
Answer: c
Difficulty: Medium
Section Reference: Working with Ipconfig and Ping
Explanation: If the host has an incorrect cache value, which has been recently modified on a
DNS server, you have to execute the ipconfig /flushdns to clear the DNS cache so that it
can retrieve fresh information from the DNS server.
Answer: a
Difficulty: Medium
Section Reference: Working with Ipconfig and Ping
Explanation: When you ping 127.0.0.1, the results do not include any hostname resolution
information. This is the best way to ping the local host when testing IPv4. When pinging
127.0.0.1, no traffic is placed on the network segment; instead, all traffic is kept inside the
computer or local loopback.
Answer: b
Difficulty: Medium
Section Reference: Working with Advanced TCP/IP Commands
Explanation: Use the netstat command to display active TCP (or UDP) connections, as well
as a host of other statistics. Of the four columns displayed, we are concerned here with just the
Proto and Local Address columns. The Proto column shows the Transport layer protocol being
used for the connection; netstat, by itself, shows only TCP connections in this column. The
Local Address column displays the local computer by name (server2003), followed by the
outbound port number.
Answer: b
Difficulty: Medium
Section Reference: Working with Advanced TCP/IP Commands
Explanation: The nbtstat command displays NetBIOS over TCP/IP statistics for local and
remote computers. NetBIOS was developed in the 1980s to allow applications to communicate
over a network via the OSI model’s Session layer. NetBIOS over TCP/IP sends the NetBIOS
protocol within TCP and UDP sessions.
Answer: b
Difficulty: Hard
Section Reference: Working with Advanced TCP/IP Commands
Explanation: The nbtstat -R command purges the contents of the NetBIOS name cache
table.
8. What command tests network connectivity while showing you each hop along the way?
a) ping
b) nslookup
c) nbtstat
d) tracert
Answer: d
Difficulty: Easy
Section Reference: Working with Advanced TCP/IP Commands
Explanation: The tracert command shows paths to a destination on another network. It does
this by pinging each step along the way three times. The time to live (TTL) for the pings
increases with each “hop” to another network.
9. What command tests network connectivity while showing you each hop along the way and the
degree of packet loss?
a) ping
b) pathping
c) nbtstat
d) tracert
Answer: b
Difficulty: Medium
Section Reference: Working with Advanced TCP/IP Commands
Explanation: The pathping command is similar to tracert, but it also computes the degree
of packet loss. Any packet loss shows up in the Lost/Sent column along with a percentage.
10. What command do you use to connect to a FTP server to download a file?
a) nslookup
b) ssh
c) telnet
d) ftp
Answer: d
Difficulty: Easy
Section Reference: Working with Advanced TCP/IP Commands
Explanation: You can use the ftp command to connect to an FTP site so that you can download
or upload files.
11. What command do you use to connect to a remote computer so that you can execute
commands?
a) ftp
b) nslookup
c) telnet
d) nbtstat
Answer: c
Difficulty: Easy
Section Reference: Working with Advanced TCP/IP Commands
Explanation: TELNET is used to take control of a remote computer. Basically, a network
administrator connects to a remote computer, server, router, or switch by typing telnet
[IPAddress]. The IP address would either display the C:\ prompt of the remote system (if
connecting to a Windows computer) or a menu-based system (if connecting to a router or
switch).
12. What command can you use to connect to a mail server so that you can test SMTP?
a) ftp
b) nslookup
c) telnet
d) nbtstat
Answer: c
Difficulty: Hard
Section Reference: Working with Advanced TCP/IP Commands
Explanation: In addition to using the telnet command to take control of a remote computer,
you can use it to test protocols. For example, if you type telnet <host> 25, it will connect
to the server using SMTP port 25.
13. What command do you use to display and modify the network configuration of a local
computer?
a) netsh
b) netstat
c) telnet
d) nbtstat
Answer: a
Difficulty: Hard
Section Reference: Working with Advanced TCP/IP Commands
Explanation: The netsh command is a built-in command-line scripting utility that enables you
to display and modify the network configurations of the local computer. Netsh commands tend
to be rather long and in depth, so the utility gives you the option to save configuration scripts for
later use.
Answer: c
Difficulty: Medium
Section Reference: Working with Advanced TCP/IP Commands
Explanation: The route command enables you to display and make changes to the computer’s
local IP routing table, which displays IP connections to other networks as well as testing
networks.
Short Answer
15. What command do you use to display the routing table on a local system?
16. What command do you use to display the MAC address on a system?
17. What command do you use to retrieve or update your DHCP assigned configuration?
Answer: netstat -e
Difficulty: Hard
Section Reference: Working with Advanced TCP/IP Commands
Explanation: The command netstat -e displays such Ethernet statistics as the number of
packets and bytes sent and received.
20. What option do you use to ping constantly until you stop it?
Answer: -t
Difficulty: Hard
Section Reference: Working with Advanced TCP/IP Commands
Explanation: The ping -t <host> command keeps pinging a client until you press Ctrl+C
or close the command-prompt window.