mirror of
https://github.com/ovh/the-bastion.git
synced 2026-05-09 08:25:27 +02:00
[GH-ISSUE #250] groupAddServer with jump #64
Labels
No labels
answered
bug
documentation
enhancement
enhancement
feature
feature
kept-open-for-info
pull-request
question
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/the-bastion#64
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @mvalois on GitHub (Oct 6, 2021).
Original GitHub issue: https://github.com/ovh/the-bastion/issues/250
Is that possible to add a server in a group using an SSH proxy jump ?
@speed47 commented on GitHub (Oct 15, 2021):
You would need to do this on the egress side, in other words being able to specify that on the bastion itself, the command to build the egress tunnel be something like
ssh -J proxyuser@proxyjump:proxyport -p port user@host, instead ofssh -p port user@host, is that correct?If this is the case, it's not currently possible to do it, but it should be easy to implement, as long as the
proxyuser@proxyjump:proxyportis fixed per-host (in a group or through personal accesses).@mvalois commented on GitHub (Oct 15, 2021):
Correct. Maybe ingress connection does not even have to know how egress connection is done, so egress side only seems acceptable. I imagine the proxy jump being fixed per-host, yes.