How to do ssh -D in ssh config file?
The manual page of ssh says that -D
is for "dynamic" forwarding.
So the corresponding option in ssh_config is DynamicForward
.
Host myHost
HostName 44.104.24.146
User root
DynamicForward 8080
The manual page of ssh says that -D
is for "dynamic" forwarding.
So the corresponding option in ssh_config is DynamicForward
.
Host myHost
HostName 44.104.24.146
User root
DynamicForward 8080