如果没有 sudo,pycurl 和 curl 将无法运行

如果没有 sudo,pycurl 和 curl 将无法运行

抱歉我的英语不好

我有两个以上的网络接口,我想通过特定接口发送请求。这是我使用 pycurl 的代码:

def curl_post(url, data, iface=None):
    c = pycurl.Curl()
    buffer = BytesIO()
    c.setopt(pycurl.URL, url)
    c.setopt(pycurl.POST, True)
    c.setopt(pycurl.HTTPHEADER, ['Content-Type: application/json'])
    c.setopt(pycurl.TIMEOUT, 10)
    c.setopt(pycurl.WRITEFUNCTION, buffer.write)
    c.setopt(pycurl.POSTFIELDS, data)
    if iface:
        c.setopt(pycurl.INTERFACE, iface)
    c.perform()

    # Json response
    resp = buffer.getvalue().decode('UTF-8')

    #  Check response is a JSON if not there was an error
    try:
        resp = json.loads(resp)
    except json.decoder.JSONDecodeError:
        pass

    buffer.close()
    c.close()
    return resp
dat = {"id": 52, "configuration": [{"eno1": {"address": "192.168.1.1"}}]}
res = curl_post("https://emapp.cc/get_my_ip", json.dumps(dat), "enp0s20u1u3")
print(res)

当我使用 sudo 运行我的 python 代码时,它运行得很好。但如果没有 sudo,它会引发超时错误

甚至在 bash 中:

curl --interface enp0s20u1u3 google.com

没有 sudo 就无法工作。

注意:我的默认接口是 enp4s0f2,当我将其设置为我的代码时,无需 sudo

相关内容