2

I have a VPS server and I lock down to only expose 3 ports 80, 443 and 22222 for ssh. So far I can connect to the server using Terminal (Mac) and Panic Transmit, but when I try to connect using Panic Coda the connection fail. What I am doing wrong?

I see Coda support sFTP and I can connect on Coda to the SSH, but not to the sFTP.

Ideas? Work around?

Thank you

Emil Orol
  • 593
  • 6
  • 20

1 Answers1

2

As to what coda is actually doing, I can't say for sure.

Workaround could be to create an ssh tunnel and just use FTP, configure your FTP server or firewall to only allow loopback connections

Establish tunnel using something like:

ssh -o'Port 22222' -f user@server -L 3000:127.0.0.1:21 -N

Then point FTP at localhost, port 3000.

HOWTO: SSH Tunneling Made Easy

arrtchiu
  • 1,076
  • 1
  • 10
  • 23
  • 1
    You should probably contact Panic's support too, so they can either identify if you're doing something wrong or fix the issue in their application. – arrtchiu Dec 21 '10 at 09:12
  • 1
    Please do contact Panic. Coda is wonderful and if it's their problem they will get it fixed. – NexusRex Mar 10 '11 at 20:57