Shutdown RHEL
In Oracle Virtual Box Manager window, click Settings --> Network
Verify that Bridged Adapter is selected under Attached to
Power on RHEL
Open terminal
List all IP address
ip a
Find IP address of RHEL
inet 192.168.x.x
Example: inet 192.168.0.110
Don't power off the RHEL. Switch to Windows OS and open command prompt.
Remote login to RHEL from Windows
For first time login, key in yes if ask for verification
ssh [User]@192.168.x.x
Example: ssh student@192.168.0.110
Show directory in RHEL and Windows for cross verification
ls
Logout from Command prompt
exit
Run sudo systemctl status sshd to check remote login status.
If sshd is not in active, run sudo systemctl enable --now sshd.