diff --git a/10_network_and_ssh.Rmd b/10_network_and_ssh.Rmd index 8d40669ccaf9a7274576255abff879f105547c88..543ded97d77737f7ef864aa4ca069a6eb77ed8da 100644 --- a/10_network_and_ssh.Rmd +++ b/10_network_and_ssh.Rmd @@ -11,7 +11,6 @@ output: --- ```{r include = FALSE} - if (!require("fontawesome")) { install.packages("fontawesome") } @@ -159,7 +158,7 @@ Nowadays, **ports** provide multiplexing, which means that multiple service or c # SSH -There are numerous other protocols ([RTP](https://en.wikipedia.org/wiki/Real-time_Transport_Protocol) for example). But most of them run over the **TCP** and **UDP** protocols. **SSH** or **Secure Shell** is one of them. **SSH** is a [cryptographic](https://en.wikipedia.org/wiki/Cryptography) [network protocol](https://en.wikipedia.org/wiki/Network_protocol) for operating network services securely over an unsecured network. +There are numerous other protocols ([RTP](https://en.wikipedia.org/wiki/Real-time_Transport_Protocol) for example). But most of them run over the **TCP** and **UDP** protocols. **SSH** or **Secure Shell** is one of them. **SSH** is a [cryptographic](https://en.wikipedia.org/wiki/Cryptography) [network protocol](https://en.wikipedia.org/wiki/Network_protocol) for operating network services [securely over an unsecured network](https://noratrieb.dev/blog/posts/ssh-security/). **SSH** use a client-server architecture, you use an **SSH client** to connect to an **SSH server**. By default most Linux distribution don’t come with an **SSH server** installed. For the IFB, **SSH** connection is the default way to connect to your VMs, so you should have an **SSH** sever running.