我的笔记本计算机使用MacOS,并且已经在网络偏好设置中设置了http(s)代理,但是在终端中运行npm install
时始终无法安装任何软件包,它会弹出错误407 Proxy Authentication Required
。
因此我安装了 cntlm 并应用了正确的配置。
以下是测试,并且似乎通过(返回HTTP代码200):
cntlm -c /usr/local/etc/cntlm.conf -I -M http://registry.npmjs.org/vue
Password:
Config profile 1/4... OK (HTTP code: 200)
----------------------------[ Profile 0 ]------
Auth NTLMv2
PassNTLMv2 28B089518C6573274C6B9D83D0XXXXXX
我运行npm i vue-cli -g
时, cntlm 确实收到了以下请求:
cntlm -c /usr/local/etc/cntlm.conf -f
Oct 15 15:12:29 cntlm[17646] <Info>: Cntlm ready, staying in the foreground
Oct 15 15:12:38 cntlm[17646] <Info>: Using proxy company-proxy:80
Oct 15 15:12:38 cntlm[17646] <Debug>: 127.0.0.1 GET http://registry.npmjs.org/nexe
但是 nodejs 抛出以下异常:
npm i vue-cli -g
npm ERR! code E407
npm ERR! 407 Proxy Authentication Required ( Forefront TMG requires authorization to fulfill the request. Access to the Web Proxy filter is denied. ): vue-cli@latest
npm ERR! A complete log of this run can be found in:
npm ERR! /Users/****/.npm/_logs/2018-10-15T23_13_47_019Z-debug.log
这让我感到困惑:因为测试是通过的,但是为什么 cntlm 仍然无法连接到npmjs.org?
答案 0 :(得分:0)
最后找到解决方案:
请勿使用纯文本密码(在#
行的开头添加一个Password
,例如将Password XXX
更改为{{ 1}})
使用 PassLM , PassNT , PassNTLMv2 (似乎哈希值将再次阻止auth握手机制,这意味着您代表已登录Windows用户帐户的应用程序。)
默认的cntlm配置文件已经介绍了如何生成它们的步骤。
我的步骤如下:
执行#Password XXX
然后提示输入密码,输入密码,然后按 Enter :
输出如下:
cntlm -H -d your_domain -u your_username
将上面的哈希值粘贴到配置文件中的相关字段中。
保存,然后重新启动 cntlm ,它可以正常工作。