cleaning up some non-generalized scripts
authorFred Hamster <fred@gruntose.com>
Thu, 19 Dec 2024 21:41:40 +0000 (16:41 -0500)
committerFred Hamster <fred@gruntose.com>
Thu, 19 Dec 2024 21:41:40 +0000 (16:41 -0500)
scripts/customize/fred/scripts/jobby/hal_jenkins_tunnel.sh [new file with mode: 0644]
scripts/customize/fred/scripts/jobby/khandroma_tunnels.sh [new file with mode: 0644]
scripts/customize/fred/scripts/jobby/proxy_hookup_uva.sh [new file with mode: 0644]
scripts/customize/fred/scripts/jobby/uva_web_proxy.sh [new file with mode: 0644]
scripts/security/hal_jenkins_tunnel.sh [deleted file]
scripts/security/khandroma_tunnels.sh [deleted file]
scripts/security/uva_web_proxy.sh [deleted file]

diff --git a/scripts/customize/fred/scripts/jobby/hal_jenkins_tunnel.sh b/scripts/customize/fred/scripts/jobby/hal_jenkins_tunnel.sh
new file mode 100644 (file)
index 0000000..5e8bf58
--- /dev/null
@@ -0,0 +1,2 @@
+ssh -i $HOME/.ssh/id_dsa_fred -2 -N -v -L "*:8080:hal:8080" fred@hal &>~/.tmp/zz_tunnel_equan_to_hal_8080_8080 &
+
diff --git a/scripts/customize/fred/scripts/jobby/khandroma_tunnels.sh b/scripts/customize/fred/scripts/jobby/khandroma_tunnels.sh
new file mode 100644 (file)
index 0000000..ec24b72
--- /dev/null
@@ -0,0 +1,18 @@
+#!/usr/bin/env bash
+# tunnels to the khandroma machine for vnc access to the win7 box and for the jenkins
+# server.
+
+soundfile=$FEISTY_MEOW_APEX/infobase/sounds/my_mind_is_going.wav
+if [ ! -z "$1" ]; then
+  soundfile=$1
+fi
+
+while true; do
+  echo Connecting jenkins and vms at khandroma.
+  ssh -i $HOME/.ssh/id_dsa_fred -2 -N -v -L "*:5905:localhost:5905" -L "*:5902:localhost:5902" -L "*:5909:localhost:5909" -L "*:5908:localhost:5908" -L "*:4040:localhost:8080" fred@khandroma.cs.virginia.edu
+  bash $FEISTY_MEOW_SCRIPTS/multimedia/sound_play.sh $soundfile &>/dev/null </dev/null &
+  echo "Got dumped from tunnels; re-establishing connection."
+  echo "Note: if you're being asked for a password, you haven't set up an RSA key yet."
+  sleep 14
+done
+
diff --git a/scripts/customize/fred/scripts/jobby/proxy_hookup_uva.sh b/scripts/customize/fred/scripts/jobby/proxy_hookup_uva.sh
new file mode 100644 (file)
index 0000000..503bee0
--- /dev/null
@@ -0,0 +1,9 @@
+
+# this script should be source'd to get these variables set,
+# and additionally the tunnel across the mac laptop needs to be running.
+
+export http_proxy="socks5://localhost:14420"
+export https_proxy="socks5://localhost:14420"
+
+
+
diff --git a/scripts/customize/fred/scripts/jobby/uva_web_proxy.sh b/scripts/customize/fred/scripts/jobby/uva_web_proxy.sh
new file mode 100644 (file)
index 0000000..1485e0e
--- /dev/null
@@ -0,0 +1,51 @@
+#!/usr/bin/env bash
+# this script makes a tunnel for SMTP traffic and others.  a remote ssh server
+# is required.  this is especially useful for routing around firewalls using
+# a web proxy like squid.  when used for SMTP, it ensures that none of the
+# text is seen on whatever network one is on before it's sent from the remote
+# server.
+#
+# it accepts a single parameter so far, which will be used as the name of a
+# sound file to play.
+
+#hmmm:  none of the user info below will work for others: parameterize it.
+
+#ssh_host=khandroma.cs.virginia.edu
+#ssh_host=mason.cs.virginia.edu
+ssh_host=clambook.gruntose.blurgh
+username=cak0l
+
+soundfile=$FEISTY_MEOW_APEX/infobase/sounds/woouoo.wav
+if [ ! -z "$1" ]; then
+  soundfile=$1
+fi
+
+while true; do
+  echo Connecting uva web sites via a machine on site: $ssh_host
+  ssh -2 -N -v -D localhost:14420 ${username}@${ssh_host}
+  bash $FEISTY_MEOW_SCRIPTS/multimedia/sound_play.sh $soundfile
+  echo "Got dumped from tunnels; re-establishing connection."
+  echo "Note: if you're being asked for a password, you haven't set up an RSA key yet."
+  sleep 14
+done
+
+#-L 8028:localhost:3128 
+
+#-L 8043:localhost:443 
+
+# ports sometimes used:
+#     25 is the sendmail tunnel.
+#   3128 is the squid proxy server.
+#    443 is the https version of squid.
+
+# ssh flags in use sometimes:
+#   -f   go into the background once connected.
+#   -2   enforce ssh version 2.
+#   -N   don't execute any command; just forward data between the ports.
+#   -L   (port:host:hostport) connect the local machine's "port" to the
+#        remote port "hostport" on the "host" specified.  the local "port"
+#        becomes an alias for the remote port.  note that the connection
+#        being made to host and hostport is from the perspective of the ssh
+#        server, not the local host.
+
+
diff --git a/scripts/security/hal_jenkins_tunnel.sh b/scripts/security/hal_jenkins_tunnel.sh
deleted file mode 100644 (file)
index 5e8bf58..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-ssh -i $HOME/.ssh/id_dsa_fred -2 -N -v -L "*:8080:hal:8080" fred@hal &>~/.tmp/zz_tunnel_equan_to_hal_8080_8080 &
-
diff --git a/scripts/security/khandroma_tunnels.sh b/scripts/security/khandroma_tunnels.sh
deleted file mode 100644 (file)
index ec24b72..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/usr/bin/env bash
-# tunnels to the khandroma machine for vnc access to the win7 box and for the jenkins
-# server.
-
-soundfile=$FEISTY_MEOW_APEX/infobase/sounds/my_mind_is_going.wav
-if [ ! -z "$1" ]; then
-  soundfile=$1
-fi
-
-while true; do
-  echo Connecting jenkins and vms at khandroma.
-  ssh -i $HOME/.ssh/id_dsa_fred -2 -N -v -L "*:5905:localhost:5905" -L "*:5902:localhost:5902" -L "*:5909:localhost:5909" -L "*:5908:localhost:5908" -L "*:4040:localhost:8080" fred@khandroma.cs.virginia.edu
-  bash $FEISTY_MEOW_SCRIPTS/multimedia/sound_play.sh $soundfile &>/dev/null </dev/null &
-  echo "Got dumped from tunnels; re-establishing connection."
-  echo "Note: if you're being asked for a password, you haven't set up an RSA key yet."
-  sleep 14
-done
-
diff --git a/scripts/security/uva_web_proxy.sh b/scripts/security/uva_web_proxy.sh
deleted file mode 100644 (file)
index f3de338..0000000
+++ /dev/null
@@ -1,49 +0,0 @@
-#!/usr/bin/env bash
-# this script makes a tunnel for SMTP traffic and others.  a remote ssh server
-# is required.  this is especially useful for routing around firewalls using
-# a web proxy like squid.  when used for SMTP, it ensures that none of the
-# text is seen on whatever network one is on before it's sent from the remote
-# server.
-#
-# it accepts a single parameter so far, which will be used as the name of a
-# sound file to play.
-
-#hmmm:  none of the user info below will work for others: parameterize it.
-
-#ssh_host=khandroma.cs.virginia.edu
-ssh_host=mason.cs.virginia.edu
-
-soundfile=$FEISTY_MEOW_APEX/infobase/sounds/woouoo.wav
-if [ ! -z "$1" ]; then
-  soundfile=$1
-fi
-
-while true; do
-  echo Connecting uva web sites via a machine on site: $ssh_host
-  ssh -i $HOME/.ssh/id_dsa_fred -2 -N -v -D localhost:14420 fred@$ssh_host
-  bash $FEISTY_MEOW_SCRIPTS/multimedia/sound_play.sh $soundfile
-  echo "Got dumped from tunnels; re-establishing connection."
-  echo "Note: if you're being asked for a password, you haven't set up an RSA key yet."
-  sleep 14
-done
-
-#-L 8028:localhost:3128 
-
-#-L 8043:localhost:443 
-
-# ports sometimes used:
-#     25 is the sendmail tunnel.
-#   3128 is the squid proxy server.
-#    443 is the https version of squid.
-
-# ssh flags in use sometimes:
-#   -f   go into the background once connected.
-#   -2   enforce ssh version 2.
-#   -N   don't execute any command; just forward data between the ports.
-#   -L   (port:host:hostport) connect the local machine's "port" to the
-#        remote port "hostport" on the "host" specified.  the local "port"
-#        becomes an alias for the remote port.  note that the connection
-#        being made to host and hostport is from the perspective of the ssh
-#        server, not the local host.
-
-