Week 6 - Remote Access Flashcards

1
Q

What is PuTTY?

A

Open-source software that enables a user to establish remote desktop connections using various protocols like SSH

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

What’s the default port that the SSH protocol uses?

A

Port 22

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

How do you start PuTTY from PowerShell?

A

putty.exe -ssh vanes@ipaddress port#

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

What tool does PuTTY come with? What does it allow us to do? Windows

A

Plink or PuTTY link

It allows us to establish remote connections from the command line after PuTTY is installed and make remote SSH connections too

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

What does RDP stand for and what does it do in terms of the Windows OS?

A

RDP = Remote Desktop Protocol

The protocol that allows us to connect to other Windows machines (other OS have compatible RDP clients)

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

What does mstsc.exe stand for? Windows

A

Microsoft terminal services client

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

What is mstsc.exe used for? Windows

A

mstsc is used to create the actual RDP connections to remote computers

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

Why is SSH useful?

A

Allows us to connect to a Linux machine from a Windows Machine

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

What are 3 ways you can start a remote desktop connection on Windows?

A
  1. Command Line (can add /admin for admin privilege upon connection)
  2. Search Remote Desktop Connection
  3. Run mstsc
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is SSH and what does it stand for?

A

SSH = Secure Shell

SSH is a networking protocol that allows us to establish secure remote connections with computers on an unsecured network

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

What are 4 ways that SSH is used?

A
  1. File Transfer
  2. Remote Connections
  3. Executing Commands
  4. Manage network infrastructure
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is Open SSH?

A

An open-source version of SSH tools, used by Linux and other OS admins for cross-platform remote system management

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

Name the 5 SSH clients that are Windows compatible

A

PuTTY
SecureCRT
SmarTTY
mRemoteNG
MobaXterm

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

What is the command you use in Linux to copy files between computers on a network?

A

Secure Copy
scp

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

What’s an example of the secure copy command in use on Linux to transfer the desktop file myfile.txt to cindy?

A

scp (filename want to transfer) (useracc/hostname want to send to)@IPaddress:

scp /home/cindy/Desktop/myfile.txt cindy@104.131.122.215:

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

How do you transfer files on Windows? What tool do you use?

A

PuTTY package comes with a tool called Secure Copy Client or pscp.exe

17
Q

What’s an example command of using PuTTY’s secure copy client to transfer the desktop file my_file.txt to cindy’s Linux workstation from Windows?

A

pscp.exe ~\Desktop\my_file.txt cindy@101.43.11.892:

18
Q

What if you need to share multiple files from Windows? What do you use?

A

If you need to share multiple files, use shared folders

19
Q

3 steps to sharing folders on Windows?

A
  1. Right click on folder you want to share
  2. Hover over “share with”
  3. Pick the selected users
20
Q

What are 4 steps to setup access for your folder on another computer? Windows

A
  1. go to “this pc”
  2. go to the “computer” tab
  3. select map network drive
  4. on another computer, can visit folder from the “run” box /computername/foldername
21
Q

When would you need to use the “map network drive” option?

A

When you want to map your folder to be accessed from the network

22
Q

What command lets you share folders on Windows?

A

net share

23
Q

Show an example of using the folder share command on Windows to share a folder called ShareMe with everyone, giving them full permissions

A

net share ShareMe=C:\Users\cindy\Desktop\ShareMe /grant:everyone,full

24
Q

In order to use the net share command on Windows, what do you need to specify in terms of users?

A

What permissions you want to give which users

25
Q

Besides transferring files, what else does the net share (without attributes) command show us? Windows

A

Shows us what folders are currently being shared on your computer