Cntlm 拒绝除 1 个 IP 以外的所有 IP (windows)

Cntlm deny all but 1 IP (windows)

我有一个 windows cntlm 代理设置和工作。

现在我想将它作为网关打开,但限制可以调用它的IP。这意味着拒绝除一个 ip 地址之外的所有地址。

目前我在 cntlm.ini 中尝试过这个和类似的配置:

Allow 10.10.10.1/32

Deny 0/0

但阻止一切。

知道怎么做吗?我在网上搜索失败。

我设法让它与这个设置一起工作。

# Enable to allow access from other computers
#
Gateway yes

# Useful in Gateway mode to allow/restrict certain IPs
# Specifiy individual IPs or subnets one rule per line.
#
Allow       10.10.10.1     # my computer ip
Allow       127.0.0.1
Allow       10.0.75.0/24   # docker interfaces range
Deny        0/0            # deny everyone else