From b6ee44bc5d97b787beedf3b9a0a7d78a4cd271f6 Mon Sep 17 00:00:00 2001 From: Logan Gartner Date: Fri, 25 Jun 2021 13:50:48 -0600 Subject: [PATCH] Added Tor support to SSH --- .gitignore | 2 ++ .ssh/.gitignore | 2 ++ .ssh/config | 3 +++ 3 files changed, 7 insertions(+) create mode 100644 .ssh/.gitignore create mode 100644 .ssh/config diff --git a/.gitignore b/.gitignore index e341e48..628d60f 100644 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,8 @@ !.config/** !.icons/ !.icons/** +!.ssh/ +!.ssh/** !.vimrc !.Xresources !.xinitrc diff --git a/.ssh/.gitignore b/.ssh/.gitignore new file mode 100644 index 0000000..7f4220d --- /dev/null +++ b/.ssh/.gitignore @@ -0,0 +1,2 @@ +* +!config diff --git a/.ssh/config b/.ssh/config new file mode 100644 index 0000000..b72d579 --- /dev/null +++ b/.ssh/config @@ -0,0 +1,3 @@ +# Generic configuration for all .onion hosts that proxies onion traffic through the local tor service +Host *.onion + ProxyCommand /bin/nc -xlocalhost:9050 -X5 %h %p