Skip to content

Instantly share code, notes, and snippets.

@coffnix
Last active July 25, 2024 15:27
Show Gist options
  • Save coffnix/d443ef2a263851bc6d4a5e5e8ec7cdaf to your computer and use it in GitHub Desktop.
Save coffnix/d443ef2a263851bc6d4a5e5e8ec7cdaf to your computer and use it in GitHub Desktop.
barrier SSL cert
# Linux (client)
cd ~/.local/share/barrier/SSL/
openssl req -x509 -nodes -days 3650 -sha256 -subj /CN=Barrier -newkey rsa:4096 -keyout Barrier.pem -out Barrier.pem
# Windows (client)
cd %USERPROFILE%\AppData\Local\Barrier\SSL
openssl req -x509 -nodes -days 3650 -sha256 -subj "/CN=Barrier" -newkey rsa:4096 -keyout Barrier.pem -out Barrier.pem
# MacOS (server)
cd ~/Library/Application\ Support/barrier/SSL
openssl req -x509 -nodes -days 3650 -sha256 -subj "/C=BR/ST=MG/L=Belo Horizonte/O=vipnix/CN=Barrier" -newkey rsa:4096 -keyout Barrier.pem -out Barrier.pem
@coffnix
Copy link
Author

coffnix commented Sep 20, 2023

Barrier é um software de código aberto que permite compartilhar um único mouse e teclado entre vários computadores. Ele é uma bifurcação (fork) do projeto Synergy, proporcionando uma alternativa livre para aqueles que desejam uma solução simples e eficaz para controlar múltiplas máquinas.

Os comandos fornecidos neste gist têm o objetivo de gerar certificados autoassinados para garantir uma conexão segura entre os computadores ao usar o Barrier. Eles são específicos para cada sistema operacional:

  • Linux (cliente)
  • Windows (cliente)
  • MacOS (servidor)

Siga as instruções para cada plataforma para configurar adequadamente sua conexão segura. - https://github.com/debauchee/barrier

@coffnix
Copy link
Author

coffnix commented Sep 20, 2023

Barrier is an open-source software that allows you to share a single mouse and keyboard across multiple computers. It's a fork of the Synergy project, providing a free alternative for those seeking a straightforward and effective solution to control multiple machines.

The commands provided in this gist aim to generate self-signed certificates to ensure a secure connection between computers when using Barrier. They are tailored for each operating system:

  • Linux (client)
  • Windows (client)
  • MacOS (server)

Follow the instructions for each platform to properly set up your secure connection. - https://github.com/debauchee/barrier

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment