-
-
Notifications
You must be signed in to change notification settings - Fork 577
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unable to Specify -ohostkeyalgorithms=+ssh-dss #265
Comments
@appleboy Any updates on this ? |
1 similar comment
@appleboy Any updates on this ? |
@arununzer Hi sorry for the late response. Your scenario is the following flow:
right? |
Hello @appleboy , No jump hosts .....its from Github action runner (hosted in EKS) ...i need SSH directly to the instance using this : ssh -ohostkeyalgorithms=+ssh-dss [email protected] "bash ./billing.sh" |
pass environment variable to shell script Try https://github.com/appleboy/ssh-action#pass-environment-variable-to-shell-script |
can you please share as an Example keeping this ?
Like Where i should pass the hostkeyalgorithm ? As the Above is not working |
@appleboy Can You let me know how i can pass the hostkey algorithm for the Above example ? |
ignore this as it didnt work.. did a workaround and used it in this way directly export SSH_OPTIONS='-o StrictHostKeyChecking=no -ohostkeyalgorithms=ssh-dss' |
Hello Team,
I need to use this github actions to login to a machine and to run a shell Script.
uses: appleboy/[email protected]
with:
host: ${{ secrets.BILLING_HOST }}
username: ${{ secrets.BILLING_USER }}
password: ${{ secrets.BILLING_PASS }}
port: ${{ env.PORT }}
script_stop: true
script: ssh -ohostkeyalgorithms=+ssh-dss [email protected] "echo Hello"
However, i need to pass The host key Algorithm to login.. May i ask how to pass the same ?
@appleboy
The text was updated successfully, but these errors were encountered: