Help on port forwarding please..

Hi experts,

We have windows machine ( A ) in one network & 2 Linux Servers ( B & C ) in another network. There is a firewall between these 2 networks and SSH (TCP/22) & HTTPS (TCP/443) are allowed from A to B only (but not to C). There is no personal firewall / iptables running on any machine. There is no access restrictions between B & C. We need to access port 443 of C from A. Is it possible? I tried various documents suggesting port forwarding technique using putty but none of them worked unfortunately (they are bit confusing too)

  1. How to access 443 port of C from A?
  2. if A is "Linux machine" (instead of Windows) how to achieve the same? ( i guess ssh -L command should be used but it did not work)

ensured AllowAgentForwarding yes & AllowTcpForwarding yes are set on all linux machines.

Please advise, thanks a lot!!

Something like

ssh -f  -L 8888:serverCip:443 serverBip sleep 300

worked for me; With this in background (-f option) you can address the local port 8888 and be forwarded to server C:443.