Skip to content

This article outlines steps to access Gitlab Repo over SSH/Cloudflared

Notifications You must be signed in to change notification settings

shishir2019/Gitlab-AccessRepo-OverSSH-Cloudflared-

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 

Repository files navigation

Gitlab-AccessRepo-OverSSH-Cloudflared-

This article outlines steps to access Gitlab Repo over SSH/Cloudflared

The Gitlab server is only accessible via the UI (protected by Okta and Cloudflare) and SSH (protected by Cloudflare and SSH keys). Direct HTTP(S) or SSH access is unavailable.

The Git command line tool doesn’t provide a way to log in with Okta when using HTTP(S) so only SSH is available for Git command line usage (and anything that wraps around the command line).

SSH Access is only available over cloudflared.

Install Cloudflared See the upstream documentation here: Downloads · Cloudflare Zero Trust docs

Log into Cloudflared TODO

Configure SSH Access Install an SSH client Linux/Mac You probably already have an SSH client installed as a part of your operating system. If not, see your operating system documentation for instructions to install an SSH client.

Windows Download and install cloudflared-windows-amd64.msi file from below github: Releases · cloudflare/cloudflared

Download and install git for windows here: Git for Windows Alternatively you can download portable version of git here: Releases · sheabunge/GitPortable

Go to your home directory in windows where you have .ssh folder or if not, you can create one. C:\Users<username>.ssh

Open git-bash.exe and then create public/private key pair as per below (Generate a public/private key pair instructions) to add ssh keys to git.orro.dev.

Add your SSH key to the ssh-agent from git-bash

$&gt; eval "$(ssh-agent -s)"

$> ssh-add ~/.ssh/[email protected]

Generate a public/private key pair The following command will generate an ed25519 ssh public/private key pair:

ssh-keygen -t ed25519 -C "[email protected]" -N "" -f [email protected] Two files will be created in the current directory:

[email protected]: The private key. This should be kept safe on your PC. It should never be shared. You should never need to provide this key to Gitlab.

[email protected]: The public key. This will be provided to Gitlab.

Add your public key to Gitlab Configure SSH Client

Linux/Mac

Host ssh-git.orro.dev IdentityFile /home/work/.ssh/identities/[email protected] ProxyCommand bash -c "cloudflared access ssh --hostname %h 2>/dev/tty"

Windows

Go to your .ssh directory in home and create a file named ‘config’ (Note: No file extension) and add below content and save it.

Host ssh-git.orro.dev IdentityFile ~/.ssh/[email protected] ProxyCommand bash -c "cloudflared access ssh --hostname %h 2>/dev/tty"

About

This article outlines steps to access Gitlab Repo over SSH/Cloudflared

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published