Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

6
  • This wiki mentions a new ProxyJump option. Commented Jun 4, 2018 at 14:32
  • IMHO you need socks proxy, not http Commented Jun 4, 2018 at 15:16
  • @meuh: I have openssh_7.2 on my machine, which doesn't support -J option unfortunately Commented Jun 5, 2018 at 6:31
  • 1
    btw: I was able to connect to the remote server via FileZilla, through HTTP Proxy (used sftp protocol to my ssh-port). Commented Jun 5, 2018 at 6:32
  • (1) Your first code block indicates that ssh_serv is your password.  Your second code block suggests that you are passing that value as a command-line argument to wget.  Is that really what you mean?  (2) export env abc="def" creates a phantom exported variable called “env”.  You should say just export abc="def".  (2b) There are obscure technical reasons why it might be better to say abc="def" and export abc as two separate commands (optionally, on the same line, separated by a semicolon), but the combined form is usually OK. … (Cont’d) Commented Jul 8, 2022 at 18:53