0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

WSL2でPysmbの接続がきなくなってTimeOutエラーになる(VPN)

Posted at

はじめに

この記事は2022年2月にまとめていた「細かいつまずいたことをメモしておく(2月編)をそれぞれ投稿した内容になります
解決方法が最新でない可能性もありますのでご了承ください

問題

いままでPysmbに接続ができていたのにいきなり接続できなくなった

解決方法

これはWSL2特有の問題っぽく、sudo service docker startでデーモンを起動するとVPNにつながらなくなっていた

# つながる
$ ping xx.xx.xx.xx(VPNのIP)

$ sudo service strat docker

# つながらない
$ ping xx.xx.xx.xx(VPNのIP)

# VPNを別のにつなげる
# dockerデーモンが起動しているがつながる
$ ping --.--.--.--

検証のためUbuntu18.04LTSをインストールしてDockerをいれたところなぜかpingが通ったので、Ubuntu(WSL)とDockerがいい感じにルーティンしているのがあるタイミングで壊れたのがおそらく原因だとわかった

Dockerを再インストールすることで解決した

# アンインストール

$ sudo apt-get purge docker-ce
$ sudo rm -rf /var/lib/docker

# インストール
$ curl https://get.docker.com | sh 

これでつながるようになりました。しかし、根本的な解決にはなっていないのでいつおこるかは不明

いきなりsudo apt-get updateができなくなる事象もこれで解決できた

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?