Created
May 30, 2023 14:27
-
-
Save spawnrider/603de7d5c043f690021e4fe00d885502 to your computer and use it in GitHub Desktop.
Configure CNTLM on Ubuntu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1) Download cntlm deb package from http://sourceforge.net/projects/cntlm/files/cntlm/ | |
2) Login as root | |
3) Run command: | |
$ dpkg -i cntlm*.deb | |
4a) Obtain password hash for the configuration file in step 4b (do not put plaintext password in configuration) | |
$ cntlm -H -d <domain> -u <username> | |
4b) Configure CNTLM: | |
$ gksudo gedit /etc/cntlm.conf | |
5) Restart cntlm: | |
$ sudo service cntlm restart | |
6) Export proxy settings: | |
$ gksudo gedit ~/.bashrc | |
export http_proxy=http://127.0.0.1:3128 | |
export https_proxy=http://127.0.0.1:3128 | |
export ftp_proxy=http://127.0.0.1:3128 | |
7) Run command: | |
$ . ~/.bashrc | |
8) If it's not setup to start automatically (will say it exists if already there): | |
$ sudo update-rc.d cntlm defaults |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Also some help for the WSL : https://shuaiber.medium.com/setting-up-wsl-behind-an-ntlm-proxy-987ecf6e3788