Docker“ERROR:无法在默认的地址池中找到可用的、不重叠的IPv4地址池,以分配给网络”。

8 浏览
0 Comments

Docker“ERROR:无法在默认的地址池中找到可用的、不重叠的IPv4地址池,以分配给网络”。

我有一个名为apkmirror-scraper-compose的文件夹,它的结构如下:

.
├── docker-compose.yml
├── privoxy
│   ├── config
│   └── Dockerfile
├── scraper
│   ├── Dockerfile
│   ├── newnym.py
│   └── requirements.txt
└── tor
    └── Dockerfile

我试图运行下列的docker-compose.yml文件:

version: '3'
services:
  privoxy:
    build: ./privoxy
    ports:
      - "8118:8118"
    links:
      - tor
  tor:
    build:
      context: ./tor
      args:
        password: ""
    ports:
      - "9050:9050"
      - "9051:9051"
  scraper:
    build: ./scraper
    links:
      - tor
      - privoxy

torDockerfile如下:

FROM alpine:latest
EXPOSE 9050 9051
ARG password
RUN apk --update add tor
RUN echo "ControlPort 9051" >> /etc/tor/torrc
RUN echo "HashedControlPassword $(tor --quiet --hash-password $password)" >> /etc/tor/torrc
CMD ["tor"]

privoxyDockerfile如下:

FROM alpine:latest
EXPOSE 8118
RUN apk --update add privoxy
COPY config /etc/privoxy/config
CMD ["privoxy", "--no-daemon"]

config包含两行:

listen-address 0.0.0.0:8118
forward-socks5 / tor:9050 .

scraperDockerfile如下:

FROM python:2.7-alpine
ADD . /scraper
WORKDIR /scraper
RUN pip install -r requirements.txt
CMD ["python", "newnym.py"]

requirements.txt中只包含一行requests。最后,程序newnym.py的目的仅是测试是否可以使用Tor更改IP地址:

from time import sleep, time
import requests as req
import telnetlib
def get_ip():
    IPECHO_ENDPOINT = 'http://ipecho.net/plain'
    HTTP_PROXY = 'http://privoxy:8118'
    return req.get(IPECHO_ENDPOINT, proxies={'http': HTTP_PROXY}).text
def request_ip_change():
    tn = telnetlib.Telnet('tor', 9051)
    tn.read_until("Escape character is '^]'.", 2)
    tn.write('AUTHENTICATE ""\r\n')
    tn.read_until("250 OK", 2)
    tn.write("signal NEWNYM\r\n")
    tn.read_until("250 OK", 2)
    tn.write("quit\r\n")
    tn.close()
if __name__ == '__main__':
    dts = []
    try:
        while True:
            ip = get_ip()
            t0 = time()
            request_ip_change()
            while True:
                new_ip = get_ip()
                if new_ip == ip:
                    sleep(1)
                else:
                    break
            dt = time() - t0
            dts.append(dt)
            print("{} -> {} in ~{}s".format(ip, new_ip, int(dt)))
    except KeyboardInterrupt:
        print("Stopping...")
        print("Average: {}".format(sum(dts) / len(dts)))

docker-compose build构建成功,但如果我尝试docker-compose up,则会收到以下错误消息:

Creating network "apkmirrorscrapercompose_default" with the default driver
ERROR: could not find an available, non-overlapping IPv4 address pool among the defaults to assign to the network

我尝试搜索有关此错误消息的帮助,但找不到任何信息。是什么造成了这个错误?

admin 更改状态以发布 2023年5月21日
0
0 Comments

我遇到了这个问题,因为我正在运行OpenVPN。一旦我杀掉了OpenVPN,docker-compose up就可以正确运行,错误也消失了。

0
0 Comments

我看到有人提到docker可能已经达到了创建网络的最大限制。命令docker network prune可用于删除至少有一个容器未使用的所有网络。

我的问题最终是由Robert所评论的: openvpn问题service openvpn stop '解决'了这个问题。

0