Hi all,
I'm using most of the time the Mac OS open command to launch my sessions, example :
open "ssh://user@remote:port" with works great.
But I need to integrate a WALLIX Bastion in the middle of the chain, when I'm connecting I'm using the ssh like this :
ssh -l destination_user@destination_host:SSH:bastion_user bastion_address
Which works great, but I don't find a way to integrate the ssh syntax into the url scheme I have always some errors :
open "ssh://destination_user@destination_host:SSH:bastion_user@bastion_address:22"
No application knows how to open URL ssh://destination_user@destination_host:SSH:bastion_user@bastion_address:22 (Error Domain=NSOSStatusErrorDomain Code=-10814 "kLSApplicationNotFoundErr: E.g. no application claims the file" UserInfo={_LSLine=1489, _LSFunction=runEvaluator}).
Any idea how it can be handled ?
Regard's
Claude