Skip to content
Snippets Groups Projects
Commit 90894784 authored by nimrod's avatar nimrod
Browse files

- Added alias for transmission-remote (create an SSH tunnel before hand,

port forward). Adjusted the SSH config accordingly.
parent 66bf1e5c
Branches
No related tags found
No related merge requests found
......@@ -100,6 +100,7 @@ alias toupper='awk "{print toupper(\$0)}"'
alias wifi-portal='curl --silent --fail --write-out "%{redirect_url}" --output /dev/null http://detectportal.firefox.com/success.txt'
alias urlencode='perl -MURI::Escape -ne "chomp;print uri_escape(\$_), \"\n\""'
alias urldecode='perl -MURI::Escape -ne "chomp;print uri_unescape(\$_), \"\n\""'
alias transmission-remote='ssh -fNo ExitOnForwardFailure=yes xbmc.shore.co.il && transmission-remote'
deduce_aws_region () {
AWS_DEFAULT_REGION="$(curl --silent \
......
# shore.co.il infrastructure
Host ns1.shore.co.il www.shore.co.il
LocalForward 9091 xbmc.shore.co.il:9091
DynamicForward 8080
Host xbmc.shore.co.il
ForwardX11 yes
LocalForward 9091 localhost:9091
ProxyCommand ssh ns1.shore.co.il -W %h:%p
Host ns2.shore.co.il
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment