Connect three ways and record what each one does to the person at the keyboard
Task
Establish remote sessions using the desktop protocol, an assistance tool and a command-line session, and record for each what happens to anyone sitting at the remote machine. That difference decides which tool is appropriate, and it is the thing candidates most often get wrong.
Steps
- Enable the remote desktop host on the guest, connect to it from the host, and record in
lab/remote/behaviour.csvwith headertool,local_user_sees,consent_required,edition_requiredwhat happened to the guest's own screen. - Use an assistance tool for a session in the other direction and add a row, recording whether the user had to be present and whether consent was per-session.
- Enable and use a command-line session between the two machines and add a row. Record the host key fingerprint you were asked to accept in
lab/remote/hostkey.txt. - Write
lab/remote/exposure.mdexplaining why a port forward is not a remote access plan, and naming three alternatives in order of preference. - Write
lab/remote/choice.csvwith headerscenario,tool,reasongiving four scenarios and the tool each one needs, including one where nobody is at the remote machine.
Verify
awk -F, 'NR>1 && NF>=4 {n++} END {print n" tool(s) compared"}' lab/remote/behaviour.csv
awk -F, 'NR>1 {print $3}' lab/remote/behaviour.csv | sort -u | wc -l
grep -c . lab/remote/hostkey.txt
grep -Eic 'vpn|gateway|key-only|not a remote access plan' lab/remote/exposure.md
awk -F, 'NR>1 && NF>=3 {n++} END {print n" scenario(s)"}' lab/remote/choice.csv
Three tools compared with at least two distinct consent answers, a host key recorded, and four scenarios matched to tools. If consent is the same for all three, one of the rows describes what you expected rather than what happened.
Notes
The host key warning is worth understanding now rather than at 2am. A changed host key means either the machine was rebuilt or you are not talking to the machine you think you are, and only one of those is benign.
This is an independent study companion for CompTIA A+ Core 2 220-1202 and is not produced by or endorsed by CompTIA.