We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd462fa commit 8901e1cCopy full SHA for 8901e1c
ssh-login/autologin.md
@@ -0,0 +1,9 @@
1
+## SSH Auto Login
2
+
3
+```
4
+ssh-keygen -t rsa -b 4096
5
+cat ~/.ssh/id_rsa.pub | ssh one@192.168.1.101 "mkdir -p ~/.ssh && cat >> ~/.ssh/authorized_keys"
6
+cat ~/.ssh/id_rsa.pub | ssh two@192.168.1.102 "mkdir -p ~/.ssh && cat >> ~/.ssh/authorized_keys"
7
+cat ~/.ssh/id_rsa.pub | ssh three@192.168.1.103 "mkdir -p ~/.ssh && cat >> ~/.ssh/authorized_keys"
8
+cat ~/.ssh/id_rsa.pub | ssh four@192.168.1.104 "mkdir -p ~/.ssh && cat >> ~/.ssh/authorized_keys"
9
0 commit comments