From the time stamps recorded by ethereal, obtain the times it took to transfer the file with FTP and with TFTP. Use your knowledge of FTP, TFTP, TCP, and UDP to explain the outcome.

Include answers to the questions in Step 5.


```
[root@PC2 lab5]# ftp 10.0.5.11
Connected to 10.0.5.11.
220 (vsFTPd 1.1.3)
530 Please login with USER and PASS.
530 Please login with USER and PASS.
KERBEROS_V4 rejected as an authentication type
Name (10.0.5.11:root): root
331 Please specify the password.
Password:
230 Login successful. Have fun.
Remote system type is UNIX.
Using binary mode to transfer files.
ftp> cd /tftpboot
250 Directory successfully changed.
ftp> get large.d
local: large.d remote: large.d
227 Entering Passive Mode (10,0,5,11,239,225)
150 Opening BINARY mode data connection for large.d (1025339 bytes).
226 File send OK.
1025339 bytes received in 1.1 seconds (8.9e+02 Kbytes/s)
ftp> quit
221 Goodbye.
```
If we consider the amount of time it took for retrieving a file between the time of first data packet received and the time of last data packet received, the time for FTP to get a large.d is 1.1 second. (10.510312 – 9.396619 = 1.113693)
```
[root@PC2 labdata]# tftp 10.0.5.11
tftp> get large.d
Received 1027151 bytes in 2.3 seconds
tftp> quit
```

Computer Science & Information Technology

You might also like to view...

Discuss the types of threat that might occur within the general database environment, and indicate the measures that could be taken to safeguard against them.

What will be an ideal response?

Computer Science & Information Technology

While troubleshooting a network connection problem for a coworker, you discover the computer is querying a nonexistent DNS server. What command-line utility can you use to assign the correct DNS server IP address?

What will be an ideal response?

Computer Science & Information Technology

If no class description is included in the declaration statement of a local variable, the variable is automatically assigned to the ____ class.

A. auto B. static C. extern D. register

Computer Science & Information Technology

A ____ is a tree that contains all of the vertices in the graph.

A. complete tree B. binary tree C. trie D. spanning tree

Computer Science & Information Technology