You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried running this on a fresh AWS Ubuntu 18.04. After running install.sh, name resolution stopped working. Commenting out these lines from install.sh seem to solve the issue:
The above lines were needed previously because systemd-resolved bound the port 127.0.0.1:53 and that caused issues.
I think old version of certbot or old version of Burp Collaborator required port 53 on localhost which broke things and needed systemd-resolved to be disabled.
I think it might be possible to remove that hack now, but I'll have to test if it actually is possible.
Hi Putsi,
Thanks for this awesome script!
I tried running this on a fresh AWS Ubuntu 18.04. After running install.sh, name resolution stopped working. Commenting out these lines from install.sh seem to solve the issue:
systemctl disable systemd-resolved.service
systemctl stop systemd-resolved
rm -rf /etc/resolv.conf
echo "nameserver 1.1.1.1" > /etc/resolv.conf
echo "options edns0" >> /etc/resolv.conf
echo "search eu-north-1.compute.internal" >> /etc/resolv.conf
The text was updated successfully, but these errors were encountered: