E***g 发帖数: 188 | 1 必须要先ssh 到一个gateway,然后ssh到这个file server,上面有几个G的data,有没
有什么简单可靠的办法下载下来?多谢指点。 |
N**********d 发帖数: 9292 | 2 用下载软件的时候加个代理,代理填gateway的登录信息
【在 E***g 的大作中提到】 : 必须要先ssh 到一个gateway,然后ssh到这个file server,上面有几个G的data,有没 : 有什么简单可靠的办法下载下来?多谢指点。
|
S*A 发帖数: 7142 | 3 你在 gateway 上面开 ssh tunnel. e.g.
ssh -L 8022:file-server:22 gateway
Then when you connect to 8022 port, the local ssh will
connect to gateway sshd. The gateway sshd will open a socket
connect to file server at port 22.
As effect you now have a tcp port to connect to file server
directly, your local port 8022.
Then you just copy files over that port as if the file server
has an ssh port open at your local 8022.
【在 E***g 的大作中提到】 : 必须要先ssh 到一个gateway,然后ssh到这个file server,上面有几个G的data,有没 : 有什么简单可靠的办法下载下来?多谢指点。
|
r****t 发帖数: 10904 | 4 tunnel 里面用 lftp 的 mirror 命令
【在 E***g 的大作中提到】 : 必须要先ssh 到一个gateway,然后ssh到这个file server,上面有几个G的data,有没 : 有什么简单可靠的办法下载下来?多谢指点。
|
c**b 发帖数: 2999 | 5 ftp
【在 E***g 的大作中提到】 : 必须要先ssh 到一个gateway,然后ssh到这个file server,上面有几个G的data,有没 : 有什么简单可靠的办法下载下来?多谢指点。
|