ssh from ubuntu into another ubuntu using private key

Clash Royale CLAN TAG#URR8PPP up vote
0
down vote
favorite
I am trying to SSH into to an amazon Linux server (server B) from the current server (server A) which is an ubuntu.
The Server B is accessible via a Private key (ppk) and not a password.
I have already uploaded the Server B private key into Server A.
What is the command that I need to run in Server A in order to SSH into B using the private key?
14.04 ssh
add a comment |Â
up vote
0
down vote
favorite
I am trying to SSH into to an amazon Linux server (server B) from the current server (server A) which is an ubuntu.
The Server B is accessible via a Private key (ppk) and not a password.
I have already uploaded the Server B private key into Server A.
What is the command that I need to run in Server A in order to SSH into B using the private key?
14.04 ssh
1
I have done a similar task before. But I generated a pair of keys in server A and copied the public key in server B. Is it what you are trying to do?
â Unique
Apr 26 at 9:22
add a comment |Â
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I am trying to SSH into to an amazon Linux server (server B) from the current server (server A) which is an ubuntu.
The Server B is accessible via a Private key (ppk) and not a password.
I have already uploaded the Server B private key into Server A.
What is the command that I need to run in Server A in order to SSH into B using the private key?
14.04 ssh
I am trying to SSH into to an amazon Linux server (server B) from the current server (server A) which is an ubuntu.
The Server B is accessible via a Private key (ppk) and not a password.
I have already uploaded the Server B private key into Server A.
What is the command that I need to run in Server A in order to SSH into B using the private key?
14.04 ssh
asked Apr 26 at 8:40
Benjamin
1032
1032
1
I have done a similar task before. But I generated a pair of keys in server A and copied the public key in server B. Is it what you are trying to do?
â Unique
Apr 26 at 9:22
add a comment |Â
1
I have done a similar task before. But I generated a pair of keys in server A and copied the public key in server B. Is it what you are trying to do?
â Unique
Apr 26 at 9:22
1
1
I have done a similar task before. But I generated a pair of keys in server A and copied the public key in server B. Is it what you are trying to do?
â Unique
Apr 26 at 9:22
I have done a similar task before. But I generated a pair of keys in server A and copied the public key in server B. Is it what you are trying to do?
â Unique
Apr 26 at 9:22
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
1
down vote
accepted
You can use -i option of ssh to specify your private key
ssh -i private_key.ppk user@server
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
accepted
You can use -i option of ssh to specify your private key
ssh -i private_key.ppk user@server
add a comment |Â
up vote
1
down vote
accepted
You can use -i option of ssh to specify your private key
ssh -i private_key.ppk user@server
add a comment |Â
up vote
1
down vote
accepted
up vote
1
down vote
accepted
You can use -i option of ssh to specify your private key
ssh -i private_key.ppk user@server
You can use -i option of ssh to specify your private key
ssh -i private_key.ppk user@server
answered Apr 26 at 8:59
Jack B.
385
385
add a comment |Â
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1028315%2fssh-from-ubuntu-into-another-ubuntu-using-private-key%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
1
I have done a similar task before. But I generated a pair of keys in server A and copied the public key in server B. Is it what you are trying to do?
â Unique
Apr 26 at 9:22