Dynamic SSH tunnel
$ ssh user@server -D [local_address:]local_port$ ssh user@10.10.10.10 -D 127.0.0.1:8888
# Test the configurations
$ curl [destination_addr] --socks5 127.0.0.1:8888
$ curl [destination_addr] -x socks5://127.0.0.1:8888The source address as seen from the destination address server will be that of
# the remote server at 10.10.10.10Last updated