69 | | Log onto the proxy node and use [attachment:runme.proxy this script] with the `sudo` command this will run a script which installs and sets up [https://banu.com/tinyproxy/ tinyproxy] on the node. Tinyproxy is a free program and is designed to be small and easy to operate. The proxy is now set up! We'll get to using it in a little while. |
| 69 | Log onto the proxy node and use [attachment:runme.proxy this script] with the `sudo` command |
| 70 | {{{ |
| 71 | #! /bin/sh |
| 72 | |
| 73 | apt-get update |
| 74 | |
| 75 | apt-get install tinyproxy |
| 76 | |
| 77 | apt-get update |
| 78 | |
| 79 | echo "Filter \"/etc/tinyproxy/filter\"\nFilterURLs On\nAllow 10.0.0.0/8" >> /etc/tinyproxy.conf |
| 80 | |
| 81 | cp /usr/share/tinyproxy/default.html /usr/share/tinyproxy/default.html.ORIGINAL |
| 82 | |
| 83 | /etc/init.d/tinyproxy reset |
| 84 | }}} |
| 85 | This will run a script which installs and sets up [https://banu.com/tinyproxy/ tinyproxy] on the node. Tinyproxy is a free program and is designed to be small and easy to operate. The proxy is now set up! We'll get to using it in a little while. |