Windows10 WSL2 Ubuntu/Debian # 无网络 [英] Windows10 WSL2 Ubuntu / Debian # no network

查看:99
本文介绍了Windows10 WSL2 Ubuntu/Debian # 无网络的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

从 WSL 升级到 WSL2 后

sudo apt-get 更新

不再起作用.之后:

wsl --set-version Ubuntu-18.04 2

输出为:

<代码>>sudo apt-get 更新错误:1 http://security.ubuntu.com/ubuntu bionic-security InRelease解决security.ubuntu.com"的临时失败错误:2 http://archive.ubuntu.com/ubuntu 仿生 InRelease解决archive.ubuntu.com"的临时失败错误:3 http://archive.ubuntu.com/ubuntu bionic-updates InRelease解决archive.ubuntu.com"的临时失败错误:4 http://archive.ubuntu.com/ubuntu bionic-backports InRelease解决archive.ubuntu.com"的临时失败阅读包裹清单...完成W:无法获取 http://archive.ubuntu.com/ubuntu/dists/bionic/InRelease 解决archive.ubuntu.com"的临时失败W:无法获取 http://archive.ubuntu.com/ubuntu/dists/bionic-updates/InRelease 解决archive.ubuntu.com"的临时失败W:无法获取 http://archive.ubuntu.com/ubuntu/dists/bionic-backports/InRelease 解决archive.ubuntu.com"的临时失败W:无法获取 http://security.ubuntu.com/ubuntu/dists/bionic-security/InRelease 解决security.ubuntu.com"的临时失败W:部分索引文件下载失败.它们已被忽略,或使用旧的代替.

回到 WSL1 后,问题又消失了.在 Debian 上相同,在 CentOS 中类似.. 所以 WSL2 肯定有错误.

Windows10 构建版本为 19041,今天安装.

WSL2 有什么解决办法吗?问候

解决方案

最有可能的是,分发版有自己的虚拟适配器,首先您可以尝试一些步骤:

  1. 需要检查数据包是否真的通过了Windows防火墙然后检查 %systemroot%\system32\LogFiles\Firewall\pfirewall.log

  2. 如果数据包没有通过防火墙,很可能是发行版获得了它自己的虚拟适配器,检查哪些 IP 从 Debian 内部获得了发行版:

    ifconfig

或者如果您没有 ifconfig:

perl -MSocket -le 'socket(S, PF_INET, SOCK_DGRAM, getprotobyname("udp"));连接(S,sockaddr_in(1,inet_aton(8.8.8.8")));打印 inet_ntoa((sockaddr_in(getsockname(S)))[1]);'

ipconfig 在 Windows WSL2 主机上,并查看在 WSL 适配器下哪些 IP 占用了机器

  1. 如果您需要通过 Windows IP 访问互联网,请检查此问题:

    After upgrading from WSL to WSL2

    sudo apt-get update
    

    not works any longer. After:

    wsl --set-version Ubuntu-18.04 2

    Output is:

    > sudo apt-get update
    Err:1 http://security.ubuntu.com/ubuntu bionic-security InRelease
      Temporary failure resolving 'security.ubuntu.com'
    Err:2 http://archive.ubuntu.com/ubuntu bionic InRelease
      Temporary failure resolving 'archive.ubuntu.com'
    Err:3 http://archive.ubuntu.com/ubuntu bionic-updates InRelease
      Temporary failure resolving 'archive.ubuntu.com'
    Err:4 http://archive.ubuntu.com/ubuntu bionic-backports InRelease
      Temporary failure resolving 'archive.ubuntu.com'
    Reading package lists... Done
    W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/bionic/InRelease  Temporary failure resolving 'archive.ubuntu.com'
    W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/bionic-updates/InRelease  Temporary failure resolving 'archive.ubuntu.com'
    W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/bionic-backports/InRelease  Temporary failure resolving 'archive.ubuntu.com'
    W: Failed to fetch http://security.ubuntu.com/ubuntu/dists/bionic-security/InRelease  Temporary failure resolving 'security.ubuntu.com'
    W: Some index files failed to download. They have been ignored, or old ones used instead.
    

    After going back to WSL1 the problem disappears again. Same on Debian and analogous in CentOS .. so WSL2 must have a bug.

    The Windows10 build Version is 19041 and was installed today.

    Any work around for WSL2? Regards

    解决方案

    Most probably, the Distribution gets its own virtual adapter, first there are some steps you might try:

    1. Need to check if the packets really go through the Windows firewall Then check %systemroot%\system32\LogFiles\Firewall\pfirewall.log

    2. If packets are not going through firewall most likely the distribution gets it's own Virtual Adapter, check what IP gets distribution from inside Debian with:

      ifconfig

    or if you don't have ifconfig:

    perl -MSocket -le 'socket(S, PF_INET, SOCK_DGRAM, getprotobyname("udp"));
    connect(S, sockaddr_in(1, inet_aton("8.8.8.8")));
    print inet_ntoa((sockaddr_in(getsockname(S)))[1]);'
    

    or ipconfig on the Windows WSL2 host machine and look what IP takes the machine unde WSL adapter

    1. If you need to have access to the internet through the Windows IP check this issue: https://github.com/microsoft/WSL/issues/4150

    The work around is to use a script that does :

    a. Get Ip Address of WSL 2 machine

    b. Remove previous port forwarding rules

    c. Add port Forwarding rules

    d. Remove previously added firewall rules

    e. Add new Firewall Rules

    $remoteport = bash.exe -c "ifconfig eth0 | grep 'inet '"
    $found = $remoteport -match '\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}';
    
    if( $found ){
      $remoteport = $matches[0];
    } else{
      echo "The Script Exited, the ip address of WSL 2 cannot be found";
      exit;
    }
    
    #[Ports]
    
    #All the ports you want to forward separated by coma
    $ports=@(80,443,10000,3000,5000);
    
    
    #[Static ip]
    #You can change the addr to your ip config to listen to a specific address
    $addr='0.0.0.0';
    $ports_a = $ports -join ",";
    
    
    #Remove Firewall Exception Rules
    iex "Remove-NetFireWallRule -DisplayName 'WSL 2 Firewall Unlock' ";
    
    #adding Exception Rules for inbound and outbound Rules
    iex "New-NetFireWallRule -DisplayName 'WSL 2 Firewall Unlock' -Direction Outbound -LocalPort $ports_a -Action Allow -Protocol TCP";
    iex "New-NetFireWallRule -DisplayName 'WSL 2 Firewall Unlock' -Direction Inbound -LocalPort $ports_a -Action Allow -Protocol TCP";
    
    for( $i = 0; $i -lt $ports.length; $i++ ){
      $port = $ports[$i];
      iex "netsh interface portproxy delete v4tov4 listenport=$port listenaddress=$addr";
      iex "netsh interface portproxy add v4tov4 listenport=$port listenaddress=$addr connectpor t=$port connectaddress=$remoteport";
      }
    

    An alternative solution is to go to Hyper-V Manager and change the Virtual Switch that is bound to the physical NIC

    这篇关于Windows10 WSL2 Ubuntu/Debian # 无网络的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆