/
telnov.ob
/
cerberus
Обзор
Документация
Войти
/
telnov.ob
/
cerberus
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
tinyproxy/tinyproxy.sh
33 строки
642 B
Daniel J Wilcox
changed port
25 дек 2014, 03:38
25 дек 2014, 03:38
1c3274f
Код
Авторство
О чём код?
#!/bin/bash # tinyproxy install and config #============================= sudo pacman -S tinyproxy # edit the tinyproxy config file sudo vim /etc/tinyproxy/tinyproxy.conf # change the following options in the config file #================================================ # change the port to one open in your firewall Port 6882 # comment out Listen 127.0.0.1 so you can access the proxy on the lan network #Listen 127.0.0.1 # Allow access for an ip address Allow 192.168.1.4 # Allow access from the local subnet Allow 192.168.1.0/24 # start tinyproxy sudo systemctl start tinyproxy # stop tinyproxy sudo systemctl stop tinyproxy