Batch edit - SSH Gateway (jump host)

avatar

Hey guys,

is it possible to edit the SSH Gateway (jump host) hostname for multiple entries as a batch edit? If so, how could this be done?

Regards,
Martin

All Comments (1)

avatar

Hello Martin,

this can be accomplished with the Custom Powershell Command feature

Select all your entries => navigate to Custom Powershell Command => enter this command and click OK:

$connection.Terminal.UseSSHGateway = "True"
$connection.Terminal.SSHGatewayHost = "1.2.3.4"
$RDM.Save();

I recommend to do a backup before you execute the command against your sessions!

Regards,
Min