4337 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 1 / 4
69 results tagged ssh x
  • Note: fingerprint ssh pub key

    Pour générer le fingerprint (md5 ou sha256) de votre clé ssh publique
    Vous pouvez faire :

    ssh-keygen -lf ~/.ssh/id_ed25519.pub
    ou
    ssh-keygen -l -E md5 -f ~/.ssh/id_ed25519.pub

    C’est pratique pour faire la correspondance entre clé publique en local sur son poste et le fingerprint dans l’interface de Github ((https://github.com/settings/keys)

    January 9, 2023 at 2:29:58 PM GMT+1 - permalink - archive.org - https://links.infomee.fr/?DnYicw
    fingerprint github pub ssh
  • thumbnail
    Smallstep SSH — Single Sign-On SSH With Zero Key Management
    November 26, 2020 at 8:06:38 AM GMT+1 - permalink - archive.org - https://smallstep.com/sso-ssh/?utm_campaign=Cronweekly
    ssh
  • thumbnail
    avsm/docker-ssh-agent-forward: Forward SSH agent socket into a container
    July 30, 2019 at 8:26:21 AM GMT+2 - permalink - archive.org - https://github.com/avsm/docker-ssh-agent-forward
    docker mac mount ssh
  • AWS Systems Manager Session Manager - AWS Systems Manager

    interessant

    June 28, 2019 at 10:44:14 AM GMT+2 - permalink - archive.org - https://docs.aws.amazon.com/systems-manager/latest/userguide/session-manager.html
    aws ssh ssm
  • Frequently Asked Questions — Ansible Documentation
    June 27, 2019 at 5:28:27 PM GMT+2 - permalink - archive.org - https://docs.ansible.com/ansible/latest/reference_appendices/faq.html#how-do-i-configure-a-jump-host-to-access-servers-that-i-have-no-direct-access-to
    ansible bastion jump ssh
  • thumbnail
    Secure your instances with multi-factor authentication | AWS Startups Blog
    June 12, 2019 at 6:18:16 PM GMT+2 - permalink - archive.org - https://aws.amazon.com/fr/blogs/startups/securing-ssh-to-amazon-ec2-linux-hosts/
    aws mfa ssh
  • clush — clustershell 1.8.1 documentation
    May 14, 2019 at 1:30:22 PM GMT+2 - permalink - archive.org - https://clustershell.readthedocs.io/en/latest/tools/clush.html
    cluster ssh
  • thumbnail
    Scalable and secure access with SSH - Facebook Code

    j'avais perdu cet article, il est là!

    November 21, 2018 at 4:41:07 PM GMT+1 - permalink - archive.org - https://code.fb.com/security/scalable-and-secure-access-with-ssh/
    bastion ssh
  • Docker Tips : access the Docker daemon via ssh – @lucjuggery – Medium

    not bad! better than unprotected socket access ;)

    October 25, 2018 at 8:50:54 AM GMT+2 - permalink - archive.org - https://medium.com/lucjuggery/docker-tips-access-the-docker-daemon-via-ssh-97cd6b44a53?mkt_tok=eyJpIjoiTmpZNE5HWXdOVFJtWkRWbCIsInQiOiI1b0Zsb1RkNk4rXC9qSWtyajFCN3RsSERRQytkSk0wRzZkQ3dRU3g0eXM0YUV3R3RWM1dpb3dqNXpYVjc4MUlNMmpcL1ZIeGdLbk1yQjZYZjNIbjczOTBLOUY4YlBsSUVQRVZwMUg5bGZnNlRHOXpTaFdhdkIydnhmTFd1V0JyRE50In0%3D
    docker remote ssh
  • thumbnail
    GitHub - jirsbek/SSH-keys-in-macOS-Sierra-keychain: Saving SSH keys in macOS Sierra keychain

    Solution 1 (recommended)

    Apple updated its Technical Notes to indicate that since 10.12.2, macOS includes version 7.3p1 of OpenSSH and its new behaviors.

    In ~/.ssh create config file with the following content:

    Host * (asterisk for all hosts or add specific host)
    AddKeysToAgent yes
    UseKeychain yes
    IdentityFile <key> (e.g. ~/.ssh/userKey)

    June 11, 2018 at 10:09:42 PM GMT+2 - permalink - archive.org - https://github.com/jirsbek/SSH-keys-in-macOS-Sierra-keychain
    mac ssh
  • thumbnail
    How can I permanently add my SSH private key to Keychain so it is automatically available to ssh? - Ask Different
    June 3, 2018 at 2:04:56 PM GMT+2 - permalink - archive.org - https://apple.stackexchange.com/questions/48502/how-can-i-permanently-add-my-ssh-private-key-to-keychain-so-it-is-automatically
    mac ssh
  • Creating a persistent ssh tunnel in Ubuntu |

    autossh

    November 15, 2017 at 9:06:12 AM GMT+1 - permalink - archive.org - https://erik.torgesta.com/2013/12/creating-a-persistent-ssh-tunnel-in-ubuntu/
    ssh tunnel
  • thumbnail
    Kryptonite - The new way to protect your private key.
    April 25, 2017 at 7:15:15 AM GMT+2 - permalink - archive.org - https://krypt.co/
    mobile ssh
  • SSH Blamer

    Encore un exemple d'utilisation de env= dans le authorized keys

    via skunnyk

    August 1, 2016 at 5:09:11 PM GMT+2 - permalink - archive.org - http://damiengustave.fr/ssh-blamer/
    blame log ssh
  • Note: ssh-agent trick

    cat agentmanagement.sh

    variables=~/.ssh/variables

    sshadd() {
    source "$variables" > /dev/null
    ssh-add -l > /dev/null 2>&1
    case "$?" in
    1)
    ssh-add /root/.ssh/key > /dev/null 2>&1
    ;;
    2)
    rm "$variables"
    sshagent
    ;;
    esac
    }

    sshagent() {
    if [ -f "$variables" ] ; then
    sshadd
    else
    ssh-agent -s > $variables
    sshadd
    fi
    }

    sshagent

    tail .bashrc

    source /root/agentmanagement.sh

    July 21, 2016 at 12:07:15 PM GMT+2 - permalink - archive.org - https://links.infomee.fr/?F4oSMA
    agent ssh
  • Carrying your Git settings around

    .ssh/authorized_keys

    environment="GIT_AUTHOR_NAME=Arnaud M",environment="GIT_AUTHOR_EMAIL=arnaud@foo.bar",environment="GIT_COMMITTER_NAME=Arnaud M",environment="GIT_COMMITTER_EMAIL=arnaud@foo.bar" ssh-rsa .....

    Peut être pratique quand plusieurs personnes commit depuis le même serveur (pour avoir un historique git avec les noms..)

    June 22, 2016 at 4:11:50 PM GMT+2 - permalink - archive.org - http://cweiske.de/tagebuch/carry-git-settings.htm
    git ssh
  • new openssh key format and bcrypt pbkdf
    January 18, 2016 at 10:27:29 AM GMT+1 - permalink - archive.org - http://www.tedunangst.com/flak/post/new-openssh-key-format-and-bcrypt-pbkdf
    ecdsa key ssh
  • thumbnail
    ccontavalli/ssh-ident

    To manage multiple identities

    November 12, 2015 at 5:29:35 PM GMT+1 - permalink - archive.org - https://github.com/ccontavalli/ssh-ident
    agent ssh
  • Using rsync from cron with ssh keys that have a passphrase | Me in IT

    It took me some time to figure this one out, as everybody is using rsync and ssh-keys without passphrases, but I insist that an ssh-key should have a passphrase.

    In my first attemts I got this error messages mailed to me by crontab:
    Permission denied (gssapi-keyex,gssapi-with-mic,publickey,keyboard-interactive).

    Here are the steps to automate a backup initiated from crontab using rsync, SSH and ssh-keys with a passphrase:

    Make a set of SSH keys.
    Setup SSH to use the agent automatically.
    Login once as the user who's cron will run the backup script. You will be asked for a passphrase. When the machine reboots, you will need to login once more, to enter the passphrase again.
    Make a backup script that includes some SSH variables.
    This script could be as simple as this:
    . /home/username/.ssh/variables
    rsync -avz --delete /data/ example.com:data
    
    N.B. This variables file only contains these lines:
    SSH_AUTH_SOCK=/tmp/ssh-DmFcb18036/agent.18036; export SSH_AUTH_SOCK;
    SSH_AGENT_PID=18037; export SSH_AGENT_PID;
    echo Agent pid 18037;
    Put that script in crontab.

    That should do it for you, as it works like a charm for me!

    November 12, 2015 at 5:24:01 PM GMT+1 - permalink - archive.org - https://meinit.nl/using-rsync-from-cron-with-ssh-keys-that-have-a-passphrase
    ssh
  • Enter your ssh-passphrase once, use it many times, even from crontab | Me in IT

    variables=~/.ssh/variables

    sshadd() {
    source "$variables" > /dev/null
    ssh-add -l > /dev/null 2>&1
    case "$?" in
    1)
    ssh-add > /dev/null 2>&1
    ;;
    2)
    rm "$variables"
    sshagent
    ;;
    esac
    }

    sshagent() {
    if [ -f "$variables" ] ; then
    sshadd
    else
    ssh-agent -s > $variables
    sshadd
    fi
    }

    sshagent

    November 12, 2015 at 5:23:46 PM GMT+1 - permalink - archive.org - https://meinit.nl/enter-your-ssh-passphrase-once-use-it-many-times-even-from-crontab
    ssh
Links per page: 20 50 100
◄Older
page 1 / 4
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation