You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
1.8 KiB
22 lines
1.8 KiB
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 <a href='https://www.linkedin.com/learning/learning-vpn'>Learning VPN</a> which is also authored by Scott or <a href='https://www.linkedin.com/learning/linux-desktops-and-remote-access-17438493'>Linux:Desktops and Remote Access</a> by Grant McWilliams.")); |
|
|
|
addSidebar("linux"); |