From 12023778bd6da7f80cd123b87f27b9a81722a4a7 Mon Sep 17 00:00:00 2001 From: Rod Elias Date: Fri, 6 May 2022 10:50:27 -0300 Subject: [PATCH] fix typo and markdown formatting Signed-off-by: Rod Elias --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 47fc319..eca7a33 100644 --- a/README.md +++ b/README.md @@ -2059,7 +2059,7 @@ http://onceuponmine.blogspot.tw/2017/07/create-your-first-simple-daemon.html ##### Tutorial for using your gmail to send email http://onceuponmine.blogspot.tw/2017/10/setting-up-msmtprc-and-use-your-gmail.html - ##### Using telnet to test open ports, test if you can connect to a port (e.g 53) of a server (e.g 192.168.2.106) +##### Using telnet to test open ports, test if you can connect to a port (e.g 53) of a server (e.g 192.168.2.106) ```bash telnet 192.168.2.106 53 ``` @@ -2419,7 +2419,7 @@ nc -vw5 google.com 22 # From server A: $ sudo nc -l 80 # then you can connect to the 80 port from another server (e.g. server B): -# e.g. telent 80 +# e.g. telnet 80 # then type something in server B # and you will see the result in server A! ```