wsl2/Temporary failure in name resolution.md
... ...
@@ -0,0 +1,30 @@
1
+## 問題
2
+DNSサーバが応答しなくなる。
3
+
4
+```
5
+$ ping google.jp
6
+ping: google.jp: Temporary failure in name resolution
7
+```
8
+
9
+既に報告されているが、解決していないようだ。[https://github.com/microsoft/WSL/issues/8365](https://github.com/microsoft/WSL/issues/8365)
10
+
11
+## 解決方法
12
+
13
+`/etc/wsl.conf`に以下を追加。
14
+
15
+```
16
+[network]
17
+generateResolvConf = false
18
+```
19
+
20
+WindowsのPowerShellで以下を実行する。
21
+
22
+```
23
+$ wsl --shutdown
24
+```
25
+
26
+`/etc/resolv.conf`に以下を追加
27
+
28
+```
29
+nameserver 1.1.1.1
30
+```
... ...
\ No newline at end of file