This is the first I've heard of port 980...
I manage 5 - 10 SME servers remotely tunnelling only port 443 using ssh.
If you felt you did need another port, just add another "-L" command. You can add as many "-L" commands as you like, like this:
$ ssh -l root -L 443:127.0.0.1:443 -L 80:127.0.0.1:80 -L 980:127.0.0.1:980 <yourSME>You can also use ssh/putty to tunnel ports to other systems on the same network as the SME server. I manage several systems on one network using a command like this:
$ ssh -l root -L 2443:192.168.1.2:443 -L 6443:192.168.1.6:443 -L 3397:192.168.1.97:3389 -L 3398:192.168.1.98:3389 -L 5917:192.168.1.17:5900 -L 2204:192.168.1.4:22 <mySMEbox>Allowing me to:
https://localhost:2443 to access
https://192.168.1.2
https://localhost:6443 to access
https://192.168.1.6
rdp to localhost:3397 to connect to 192.168.1.97
rdp to localhost:3398 to connect to 192.168.1.98
vnc to localhost:5917 to connect to 192.168.1.17
WinSCP to localhost:2204 in order to transfer files to/from 192.168.1.4
[/list]