How do I redirect multiple ports in a .ssh / config file? At the command prompt, I can do:
ssh 10.0.0.10 -L 8080:127.0.0.1:8080 -L 8443:127.0.0.1:443
but when I do this:
LocalForward 8080 127.0.0.1:8080 LocalForward 8443 127.0.0.1:443
in .ssh / config, it does not work.
source share