docs(ssh): Added ssh config section for wedge

Signed-off-by: Tuan-Dat Tran <tuan-dat.tran@tudattr.dev>
This commit is contained in:
Tuan-Dat Tran
2024-12-31 17:21:07 +01:00
parent 0a47d4f687
commit 20ee8191ce
2 changed files with 8 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
#!/bin/bash #!/bin/bash
WEDGE_PASS="Jony154977" WEDGE_PASS="sudopasswordforwedge"
USER_PASS="asdf1234" USER_PASS="asdf1234"
run_script_via_ssh() { run_script_via_ssh() {

View File

@@ -329,4 +329,11 @@ Host ncs-node2
HostName 192.168.1.102 HostName 192.168.1.102
Port 22 Port 22
ProxyJump ncs-head ProxyJump ncs-head
Host ncs-wedge
Hostname 192.168.1.5
Port 22
User user
IdentityFile /path/to/privatekey
ProxyJump ncs-head
``` ```