Scenario:
I have a bunch of Linux servers on a local LAN that need to individually access a SFTP servers out on the internet. However 'company policy' stats that the server must connect via a single proxy server for access control reasons. The configuration of the servers can't change without weeks/months of delays.
Currently there is a Squid Proxy server is handling the HTTP/HTTPS traffic but it can't handle the SSH/SCP/SFTP traffic.
I've tried using ssh -N -D 0.0.0.0:1080 to act as a proxy between the Internet and the LAN
but I get the following error:
channel 1: open failed: administratively prohibited: open failed
What is a known working solution to my problem?

