https://zaiste.net/ssh_port_forwarding/#remote-port-forwarding
Remote port forwarding is created with -R parameter.
ssh -R source_port:forward_to_host:destination_port via_hostThis command connects to via_host. via_host runs a SSH server. It then forwards all connection attempts to source_port on the remote via_host machine to destination_port port on the local machine (a machine that initiated the ssh command) . forward_to_host machine must be reachable from the the local machine machine. Forwarding can be also done through Unix sockets.
What does "Forwarding can be also done through Unix sockets" mean? How is that done?
Is ssh remote port forwarding done not through Unix sockets, but Internet sockets?
Thanks.