• chevron_right

      New Release Alert: OpenSSH 9.2/9.2p1 Upgraded with Security and Improvements

      TREND OCEANS · Monday, 6 February, 2023 - 05:46

    OpenSSH 9.2 and 9.2p1: security fixes and other improvements were released this week, giving system administrators and users the latest in secure remote access protocols. Read more

    #linux #debian #ubuntu #bsd #openssh #ssh #dev #sysadmin #devops #developers

    • chevron_right

      Remote CUPS Server over SSH

      pubsub.slavino.sk / warlord0blog · Saturday, 21 January, 2023 - 19:09 edit

    Hosting a customer’s web service for ERP systems means the hosted system has limited options of sending printable material to the end user. Usually it involves printing a web page from the browser, or having the server convert the document to a PDF that the user then downloads and is able to print locally. When &ellipsisRead the full post »

    Značky: #Linux, #cups, #autossh, #ssh

    • chevron_right

      Connect to SSH Server on Alternate Port

      pubsub.slavino.sk / linuxhandbook.com · Sunday, 6 November, 2022 - 07:49 edit

    Here's a beginner's guide for adding an alternate port to SSH server and the steps for connecting to it.

    Značky: #Linux, #SSH

    • chevron_right

      Everything You Important You Should Know About the known_hosts file in Linux

      pubsub.slavino.sk / linuxhandbook.com · Monday, 26 September, 2022 - 12:29 edit

    There is a known_hosts file in the .ssh directory and it is an integral part of the SSH mechanism. Learn more about it.

    Značky: #SSH, #Explain, #Linux

    • chevron_right

      Sshs – Le gestionnaire d’accès SSH

      news.movim.eu / Korben · Monday, 13 June, 2022 - 07:00

    Si vous vous connectez souvent en SSH sur vos serveurs, depuis une machine Linux, Windows ou macOS, au travers d’un terminal, vous devez peut-être faire à chaque fois un exercice mental pour retrouver l’IP ou le nom ou le port auxquels vous connecter.

    Mais ce temps est révolu grâce à Sshs, une interface dans le terminal qui liste tout simplement le contenu de votre fichier ~/.ssh/config afin que vous puissiez vous y connecter facilement.

    Pour l’installer sous macOS :

    brew install sshs

    Pour l’installer sous Windows avec Chocolatey :

    choco install sshs

    Et pour Linux, il y a des paquets Arch et bien sûr les sources ( Allez voir le Github ).

    Ensuite pour gérer la liste de vos machines, ça se passe comme je le disais dans le fichier ~/.ssh/config dont voici un exemple :

    Host *
      AddKeysToAgent yes
      UseKeychain yes
      IdentityFile ~/.ssh/id_rsa
    
    Host "Mon serveurr"
      HostName server1.example.com
      User root
      Port 22
    
    Host "Via le proxy"
      HostName server2.example.com
      User someone
      Port 22
      ProxyCommand ssh -W %h:%p proxy.example.com

    Le reste des paramètres que vous pouvez utiliser se trouve ici.

    • chevron_right

      Mathias Poujol-Rost ✅ · Tuesday, 10 May, 2022 - 18:17

      Contact publication

    Utiliser une Nitrokey Pro 2 comme clé SSH
    • Utiliser une Nitrokey Pro 2 comme clé SSH

      Chez Octopuce, nous effectuons nos sauvegardes depuis des baies de backup qui se connectent via SSH pour récupérer les données de tous les serveurs que nous hébergeons. Afin de garantir une bonne sécurité à ces machines critiques, nous avons décidé d'utiliser des clés Nitrokey Pro 2 pour stocker de

    • chevron_right

      VSCode Remote SSH Fails to Connect

      pubsub.slavino.sk / warlord0blog · Tuesday, 1 March, 2022 - 15:05 edit

    This cost me a few hours today. I thought my ssh config was messed up as nothing i did would allow me to get onto my remote workstation, but it worked fine on some other systems. Short answer – change your default shell to /bin/bash Mine is set in LDAP to /bin/zsh, which meant I &ellipsisRead the full post »

    Značky: #vscode, #Linux, #ssh

    • chevron_right

      How to Set Up SSH on CentOS & RHEL

      pubsub.slavino.sk / linuxhandbook.com · Saturday, 15 January, 2022 - 13:24 edit

    Learn to enable SSH on CentOS Linux systems. Also learn to configure it to follow the best practices.

    Značky: #SSH, #Linux

    • chevron_right

      4 Ways to Transfer Files Between Remote and Local Systems Over SSH

      pubsub.slavino.sk / linuxhandbook.com · Wednesday, 28 July, 2021 - 06:13 edit

    From legacy scp to modern rsync. From the unconventional sshfs to the GUI convenience of FileZilla. Learn different ways for copying files over SSH.

    Značky: #SSH, #Tips, #Linux