Virtual Networking Flashcards
What is a Bridged network?
networking devices that create a single network from multiple communication networks.
ex: switch
What is a NAT network?
connecting two networks together, and translating the private addresses, before packets are forwarded to another network
ex: router
What is a Host-Only network?
a network that is completely contained within the host computer
ex: network connection between the virtual machine and the host computer
A __________ __________ may be used in place of username/password credentials
Digital signature
To access a server using SSH, two components are needed. They are
- remote server (sshd service must be running and offering services at port 22)
- should not be blocked by the firewall.
In SSH, what is used to ensure that
you can be sure that you are connecting to the intended server.?
cryptography
If you want to access Linux servers through SSH from a Windows computer, you need to install an SSH client like?
Putty
How can you SSH between Linux machines in the command line?
1) type ssh followed by the IP address of the other Linux machine
2) type ssh followed by the name of the other Linux machine
3) type removeserver ssh followed by the name of the other Linux machine
In the command line type ssh followed by the ip address of the other Linux machine.
What are two different ways to start an ssh session under a specific user?
- ssh Username@remoteserver
- ssh remoteserver -l username
After connecting to the remote server, what is stored in the file ~/.ssh/known_hosts?
public key fingerprint
What does it mean if the remote host key fingerprint does not match the key fingerprint that is stored locally?
Potentially dangerous situation.
Instead of being connected to the intended server, you might be connected to the server of an evildoer
What are the two requirements for starting graphical
applications through an SSH connection?
■ An X server must be running on the client computer.
■ The remote host must be allowed to display screens on the local computer.
(The X server is the software component that creates the graphical screens.)
The easiest way to allow the remote host to draw graphical screens on your computer is by?
adding the -X option to the ssh command.
ex use: ssh -X linda@server2
What happens when you do the following: As root, open the configuration file /etc/ssh/ssh_config and make sure it includes the following line:
ForwardX11 yes
The next time you use the ssh command, X forwarding will be available by default to draw graphical screens
You can use ____ to copy files and subdirectories to remote hosts, and subdirectories as well.
scp
ex: scp /etc/hosts server2:/tmp
or
scp -r server2:/etc/ /tmp