Chapter 7 (Using Network Clients) Flashcards

1
Q

A program making requests

A

A Client

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

— is a terminal emulation program

A

Telnet

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

— is not designed to transfer any information between computers except your keystrokes as you type, and the characters that are displayed on the screen.

A

Telnet

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

—- lists the users that are logged in on all hosts attached to the local network that have the r-utilities networking features activated.

A

rwho

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

—- lists all hosts attached to the local network (that are using r-utilities) with the uptime for each

A

ruptime

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

— logs in to a remote host; very similar to telnet, but uses the r-utilities authentication methods described in this section.

A

rlogin

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

you can enter the — command with the -l option to specify the account name on oslo that you want to use.

A

rlogin

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

you can use the — command to execute a program on a remote host without logging in

A

rsh

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

to copy files between a host (r-utilities)

A

rcp

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

A — procedure is a procedure that can repeat itself indefinitely.

A

Recursive

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

The SSH package includes utilities such as —, which acts like rcp, letting you copy files between any two computers on your network with full encryption.

A

scp

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

This process of copying an entire website or FTP site is called —.

A

Mirroring

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

(wget command line option)

Download all supporting files to permit local display if a web page referred to on the wget command line.

A

-p

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

(wget command line option)

Converts links in a download web page so that they refer to the download supporting files (such as images)

A

-k

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

(wget command line option)

Retry the download the stated number of times if the download of the web page is interrupted for any reason.

A

-t 40

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

(wget command line option)

View web page header information as the page and other files are downloaded.

A

-s

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

(wget command line option)

Save downloaded web page header information to a file.

A

-s

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

(wget command line option)

Use recursive downloads

A

-r

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

(wget command line option)

Set the number of levels for recursive downloads; used with the -r option

A

-I 3

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

(FTP commands)

Turn on binary mode

A

Bin

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

(FTP commands)

Exit the FTP program

21
Q

(FTP commands)
Copy a file from one location to another on the FTP server; normally requires regular user access to the FTP server ( not just anonymous access)

22
Q

(FTP commands)

Download a file

A

Get (file name)

23
Q

(FTP commands)

List files contained in the current directory on the FTP server.

24
(FTP commands) | Download multiple files using regular expression (such as .tgz)
Mget (expression)
25
(FTP commands) | Create new directory on the FTP server; normally requires regular user access to the FTP server
Mkdir
26
(FTP commands) | Upload multiple files using a regular expression (such as .html)
Mput expression
28
(FTP commands) | Turn on or off prompting for download or upload of individual files when using mget or mput commands.
Prompt
29
You can enter --- command to view the active networking interfaces.
ifconfig
30
The --- ---- assigned to each interface is labeled inet addr on the second line of the corresponding section.
IP address
31
The --- utility sends a diagnostic data packet to the computer you specify
ping
32
The ping command sends a series of -- byte packets to the host with the IP address
64 byte
33
What are the two major benefits of using traceroute?
Finding where a packet stops | Finding where a packet slows down
34
Three well known methods of accessing Linux systems remotely are ---, the --- and the --- suite of utilities. The first two are considered unprotected and highly vulnerable and should not be used except for convenience on networks that are completely trusted.
Telnet, r-utilities, ssh
35
The --- --- let you access a remote system without entering a password.
r-utilities
36
Starts the --- graphical utility used to manage downloads of web pages.
kget
37
A more advanced version of the ftp utility
ncftp
38
Synchronizes a set of files that is stored on two or more systems and needs to be kept consistent as changes are made to the files.
rsync
39
(wget command line option) | Mirror a web site using a recursive download of web pages
-m
40
Telnet is able to do the following
- Log into a remote computer - You can view any files that your user account permits you to use - You can also execute any command, including changing or deleting files.
41
To be able to telnet, you need to know the following.
- The remote host to which you want to connect. (Domain name or IP address) - Port number (default is 23) - The type of terminal that you want the software to emulate (standard choice is VT100) - Username and password
42
--- are most effective when you can set up a configuration file on multiple computers where you have a user account.
r-utilities
43
(note) You can enter the rlogin command with the -l option to specify the account name that you want to use.
|
44
You can create a hidden file in your home directory called --- containing a list of hosts and user names that you want to permit access your account without a password.
.rhosts
45
The --- --- is configured in the file /etc/ssh/sshd_config.
sshd daemon
46
To check the status of the sshd server program, use the following command on the sever while logged in as root.
service sshd status
47
If the server is ready to accept client connections, you should be able to use the following command on the client to connect to sshd on the server.
$ ssh -l username server
48
(note) the ssh_host_rsa_key.pub contains a public key
|
49
-- and --- are two types of encryption supported by ssh
RSA and DSA
50
The default key length is?
1024 bits
51
to alter the length of a ssh key, use this command
-b | (Example) ssh-keygen -t rsa -b 2048
52
You can limit the number of recursive levels of recursive levels using the -- option to turn on recursive downloads and the -- option to set the number of levels of recursion to use
- r | - l