Sell bandwidth - louisa-uno/wiki GitHub Wiki

Services

Good ones

All $/GB are based on a Munich residential IP address

Bad ones

Installation & Scripts:

Honeygain

Start once

docker run honeygain/honeygain -tou-accept -email email -pass password -device name_of_device

Setup as docker compose

docker-compose.yml file: nano docker-compose.yml

version: '3.7'
services:
  honeygain:
    container_name: honeygain
    image: honeygain/honeygain
    command: -tou-accept -email email -pass password -device name_of_device
    restart: always
    deploy:
      replicas: 1
      restart_policy:
        condition: on-failure
        max_attempts: 0
  • Start sudo docker-compose up -d
  • Stop sudo docker-compose down

IPRoyal

Download

https://github.com/IPRoyal/pawns-cli/blob/main/readme.md

Start once

/home/dietpi/IPRoyal -email=email -password=password -device-name=DietPi -accept-tos

Setup as service

IPRoyal.service file: sudo nano /etc/systemd/system/IPRoyal.service

[Unit]
Description=IPRoyal proxy worker
After=network.target
StartLimitIntervalSec=0

[Service]
Type=simple
Restart=always
RestartSec=300
User=dietpi
ExecStart=/home/dietpi/IPRoyal -email=email -password=password -device-name=DietPi -accept-tos

[Install]
WantedBy=multi-user.target
  • Enable sudo systemctl enable IPRoyal.service
  • Reload sudo systemctl daemon-reload
  • Start sudo systemctl start IPRoyal.service
  • Status sudo systemctl status IPRoyal.service
  • Stop sudo systemctl stop IPRoyal.service