Project/Drone

    Reverse SSH

    참고 : 블로그 ▪︎ Command raspi command pi@drone:~$ sudo ssh -f -N -T -R 2222:localhost:22 uhyeong@210.11*.*.* -p 5001 📌 -f : Requests ssh to go to background just before command execution. -N : Do not execute a remote command. This is useful for just forwarding ports. ⇒ 원격지에 로그인하지 않고 백그라운드로 터널 생성 -T : Disable pseudo-terminal allocation. -R : Reverse SSH option 💡 1. 2222 is the port we'll use to remot..