- jeromel's home page
- Posts
- 2020
- 2019
- 2018
- 2017
- 2016
- 2015
- December (1)
- November (1)
- October (2)
- September (1)
- July (2)
- June (1)
- March (3)
- February (1)
- January (1)
- 2014
- 2013
- 2012
- 2011
- 2010
- December (2)
- November (1)
- October (4)
- August (3)
- July (3)
- June (2)
- May (1)
- April (4)
- March (1)
- February (1)
- January (2)
- 2009
- December (3)
- October (1)
- September (1)
- July (1)
- June (1)
- April (1)
- March (4)
- February (6)
- January (1)
- 2008
- My blog
- Post new blog entry
- All blogs
scp through an intermediate node - using a tunel
Updated on Wed, 2019-10-16 12:49. Originally created by jeromel on 2019-10-16 12:49.
OK so I already provided help for tunneling for special services (Web access for example - see Creating an SSH tunnel in Linux ) but was asked a few times how to copy files in and out of BNL or in between enclave.
This is easy with tunneling. Let us imagine I want to
From your laptop, create a tunnel to our web server (port 8888 is arbitrary)
As you already know frm our Using the SSH Agent, you can ease the connection by starting an agent (and using -A for forwarding) i.e. you may not have to type any passphrase. As-is above, you do need to type the passphrase for account jeromel on cssh.rhic.bnl.gov (c=campus, for a node inside the RACF, use r=RHIC domain). Then, you would scp the file named "bla" by doing soemthing like this:
If you need to go through two nodes, I can add an example as well :-)
This is easy with tunneling. Let us imagine I want to
- You are jerome [I know, may be too much :-) ]
- From your laptop, transfer a file to the Web server named yaya - this is an example where the account name will NOT match (the remote account on yaya is in our example named webmaster)
- That Web server is behind a SSH agteway / gatekeper i.e. you cannot access it directely but through one HOP
From your laptop, create a tunnel to our web server (port 8888 is arbitrary)
% ssh -L 8888:yaya.star.bnl.gov:22 -l jerome cssh.rhic.bnl.gov -N
As you already know frm our Using the SSH Agent, you can ease the connection by starting an agent (and using -A for forwarding) i.e. you may not have to type any passphrase. As-is above, you do need to type the passphrase for account jeromel on cssh.rhic.bnl.gov (c=campus, for a node inside the RACF, use r=RHIC domain). Then, you would scp the file named "bla" by doing soemthing like this:
scp -P 8888 bla webmaster@127.0.0.1:/star/u/webmaster/bla.testThis connects to the local port 8888 which you created to pass-through the node named yaya. Because you want to connect to that remote node with a different account, you would use webmaster@ in the command but because port 8888 is created on your localhost, the node reference is localhost (or 127.0.0.1). The remote file location will be /star/u/webmaster/ in our example and it will be copied remotely with the name bla.test .
If you need to go through two nodes, I can add an example as well :-)
»
- jeromel's blog
- Login or register to post comments