如何在.ssh / config文件中进行多个端口转发?在命令行上,我可以这样做:
ssh 10.0.0.10 -L 8080:127.0.0.1:8080 -L 8443:127.0.0.1:443
但是当我这样做时:
LocalForward 8080 127.0.0.1:8080
LocalForward 8443 127.0.0.1:443
在.ssh / config中,它不起作用。
答案 0 :(得分:0)
ssh_config手册页说:
Multiple forwardings may be specified, and additional forwardings can be
given on the command line. Only the superuser can forward privileged ports.
问题可能在于权限问题,您是否对两个命令使用相同的用户?