It worked for me after adding the Pulse DNS servers from Windows and DNS Suffix to /etc/resolv.conf inside WSL2 It looks like below now ``` # This file was automatically generated by WSL. To stop automatic generation of this file, add the following entry to /etc/wsl.conf: # [network] # generateResolvConf = false search internal.*.com nameserver **.***.*.* nameserver **.***.*.* nameserver ***.**.***.*** ``` The *s above are wildcards Also, you have to edit the /etc/wsl.conf as mentioned in the comments above. Else /etc/resolv.conf will be overwritten I think I have to refresh the addresses above when those DNS servers change
... View more