Chapter 17 Flashcards

1
Q

Is a great to check out the inbound and outbound TCP/IP connections on your machine. You can also use it to view packet statistics like how many packets have been sent and received, the number of errors. p647

A

netstat Utility

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

UDP is not a connection-oriented protocol and, therefore, has no connection state.T/F p650

A

True

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

What does the -e Switch do? p651

A

The -e switch displays a summary of all the packets that have been sent over the Network Interface Card (NIC) as of that instant.

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

What does the -a Switch do? p650

A

When you use the –a switch, the netstat utility displays all TCP/IP connections and all UDP connections.

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

What is Unicast Packets. p651

A

The number of packets sent from or received at this computer. To register in one of these columns, the packet must be addressed directly from one computer to another, and the computer’s address must be in either the source or destination address section of the packet.

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

What is Non-unicast Packets.p651

A

The number of non-unicast packets should be smaller than the number of unicast packets. If the number of non-unicast packets is as high or higher than that of unicast packets, too many broadcast packets are being sent over your network.

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

T he number of packets that were discarded by the NIC during either transmission or reception because they weren’t assembled correctly. p651

A

Discards

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

The number of errors that occurred during transmission or reception. (These numbers may indicate problems with the network card.) p651

A

Errors

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

What is Unknown Protocols. p651

A

T he number of received packets that the Windows networking stack couldn’t interpret. This statistic only shows up in the Received column because if the computer sent them, they wouldn’t be unknown,

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

What does -r Switch do? p652

A

You use the –r switch to display the current route table for a workstation so that you can see exactly how TCP/IP information is being routed. This will give you the same output as the route print command.

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

What does -s Switch do? p652

A

Using the –s switch displays a variety of TCP, UDP, IP, and ICMP protocol statistics. But be warned—the output you’ll get is really long, which may or may not be okay for you.

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

What does the -p Switch do? p652

A

Like the –n switch, the –p switch is a modifier that’s usually used with the –s switch to specify which protocol statistics to list in the output (IP, TCP, UDP, or ICMP).

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

What does the -n Switch do? p654

A

when you use the –n switch, the output always displays network addresses instead of their associated network names. Following is output from the netstat command used with the netstat -n command.

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

To display a list of all the commands you can use at the ftp command prompt, type ____ or ___ and press Enter. p656

A

Help or ?

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

What are some of the FTP commands? p656

A
delete 
send
open
help
prompt
status
trace
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Third-party applications are available that provide a GUI interface for FTP, which is easier than using a command line. T/F p656

A

True

17
Q

After you navigate to the directory and find the file you want to download, it’s time to set the parameters for the type of file. Files come in two types: p658

A

ASCII, which contains text

Binary, which is all other files

18
Q

What are the common FTP navigation commands? p659

A

Ls,Cd,Pwd and Lcd

19
Q

What is Ls? p659

A

Short for list. Displays a directory listing. Very similar to the DIR command in MS-DOS.

20
Q

What is Cd?

A

Short for change directory. Works almost identically to the MS-DOS CD command. Use it to change to a different directory and navigate the server’s directory structure.

21
Q

What is Pwd?

A

Short for print working directory. Displays the current directory on the server. Useful if you forget where you are when changing to several locations on the server.

22
Q

What is Lcd?

A

Short for local change directory. Displays and changes the current directory on the local machine. Useful when you are downloading a file and aren’t in the directory where you want to put the file.

23
Q

You can download multiple files by using the mget command. Simply type mget, a space, and then something known as a __________that specifies the files you want to get. p659

A

wildcard

24
Q

To upload a file, log in and then follow these steps: p660

A
  1. At the ftp command prompt, type lcd to navigate to the directory on the local machine where the file resides.
  2. Type cd to navigate to the destination directory.
  3. Set the file type to ASCII or binary.
  4. Use the put command to upload the file.