import { addBanner, addArticle, addTitle, addHeader, addParagraph, addSubHeader } from '/scripts/article.js'; import { addInset, addInsetList, addInsetCodeListing, addInsetBulletList } from '/scripts/inset.js'; import { addImageWithCaption, addButtonGroup } from '/scripts/visuals.js'; import { addSidebar} from '/scripts/sidebar.js'; import { addSyntax } from '/scripts/code.js'; import { menu } from '/scripts/web_dev_buttons.js'; const heading = document.querySelector(".heading"); const global = document.querySelector(".global_menu"); const local = document.querySelector(".local_menu"); const sidebar = document.querySelector(".sidebar"); const main = document.querySelector(".main_content"); heading.append(addTitle("Learning SSH")); heading.append(addParagraph("Scott Simpson - LinkedIn Learning - October 2022")); heading.append(addParagraph("Chapter 4 - Conclusion")); main.append(addHeader("Conclusion")); main.append(addParagraph("If you want to improve your ssh skills, a good way to do that is to setp up a small lab you can experiment with. As well as my Windows machine, I also have three Raspberry Pis and these can be great for tring out ssh commands. Having three means that I can not only ssh between them but I can also set up one to forward traffic to another, for example if I want to experiment with a bastion host. In addition, it's a good idea to check out the man page for ssh and the config files, ssh_config and sshd_config.")); main.append(addParagraph("A good follow up course to this one might be Learning VPN which is also authored by Scott or Linux:Desktops and Remote Access by Grant McWilliams.")); addSidebar("linux");