” PuTTY (/ˈpʌti/) is a free and open-source terminal emulator, serial console and network file transfer application. It supports several network protocols, including SCP, SSH, Telnet, rlogin, and raw socket connection. It can also connect to a serial port. “
Copy Files
You can copy files to/from the Linux host with batch scripts:
1 | set PATH=C:\Program Files\PuTTY |
Tunneling
If ports on you network are closed off you can use putty to tunnel to the box and hit the intended port, example if your container is running on port 7000:
- open putty, select the entry for your session and click load
- then on the left go to tunnels
- in the bottom half…
- enter a source port 7000
- in destination enter 127.0.0.1:7000
- click add
- You should see it listed in forwarded ports
- go back to sessions (right at the top in the left section)
- click save
- now when you connected, go to http://localhost:7000 in your browser
Check SSH Server Running Is Running
1 | ps aux | grep openssh |
- openssh is the server
- https://ubuntuforums.org/showthread.php?t=979955