├── .gitignore ├── README.md ├── client ├── crontab ├── pppoe.sh ├── request.conf └── request.sh └── server ├── __init__.py ├── config.py ├── ip └── main.py /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | *.pyc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Germey/AutoProxy/HEAD/README.md -------------------------------------------------------------------------------- /client/crontab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Germey/AutoProxy/HEAD/client/crontab -------------------------------------------------------------------------------- /client/pppoe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Germey/AutoProxy/HEAD/client/pppoe.sh -------------------------------------------------------------------------------- /client/request.conf: -------------------------------------------------------------------------------- 1 | KEY=something 2 | SERVER=http://127.0.0.1:5000/record -------------------------------------------------------------------------------- /client/request.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Germey/AutoProxy/HEAD/client/request.sh -------------------------------------------------------------------------------- /server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Germey/AutoProxy/HEAD/server/config.py -------------------------------------------------------------------------------- /server/ip: -------------------------------------------------------------------------------- 1 | 127.0.0.1 -------------------------------------------------------------------------------- /server/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Germey/AutoProxy/HEAD/server/main.py --------------------------------------------------------------------------------