From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=96.73.9.1; helo=muon.bluestop.org; envelope-from=rebecca@bluestop.org; receiver=edk2-devel@lists.01.org Received: from muon.bluestop.org (muon.bluestop.org [96.73.9.1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 6C693211CF357 for ; Mon, 25 Feb 2019 10:36:41 -0800 (PST) Received: from muon.bluestop.org (localhost [127.0.0.1]) by muon.bluestop.org (Postfix) with ESMTP id D2C77785F1; Mon, 25 Feb 2019 11:37:30 -0700 (MST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=bluestop.org; s=mail; t=1551119850; bh=c42E+C9dzk3YiASILPmLmDcUM+yArl8ZW0T8WIS9qGA=; h=From:To:Cc:Subject:Date:From; b=ZCrOhoXjF9pahdxJS3tTeEuvrl8NyWo8LOxEWwMM5jd1wF9C/NVuU2AgmnpZhsrX5 VnfcINLIO32E3T3GpzDMU+8HVZeJZF9smfObNf1t4KGcdaT3m+D3777F0l4cet1pbv E6BYiJp40srjbBXGvGmhlNpgSDAJssTGqs2UVuDA= Received: from muon.bluestop.org ([127.0.0.1]) by muon.bluestop.org (muon.bluestop.org [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id UOPW84q4KHOg; Mon, 25 Feb 2019 11:37:30 -0700 (MST) Received: from photon.int.bluestop.org (gw.bluestop.org [96.73.9.3]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by muon.bluestop.org (Postfix) with ESMTPSA; Mon, 25 Feb 2019 11:37:30 -0700 (MST) From: Rebecca Cran To: edk2-devel@lists.01.org Cc: Jaben Carsey , Daryl McDaniel , Laszlo Ersek , Rebecca Cran Date: Mon, 25 Feb 2019 11:36:37 -0700 Message-Id: <20190225183637.91406-1-rebecca@bluestop.org> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Subject: [PATCH] StdLib: Update resolv.conf to use Google's public DNS servers X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2019 18:36:41 -0000 Content-Transfer-Encoding: 8bit The current servers listed appear to be unusable. I suspect most people will get correct DNS servers via DHCP, but the defaults should work for anyone. Change the entries to be Google's public DNS servers. Also, change the domain name to be example.com, to be more applicable to consumers outside Intel. --- StdLib/Efi/StdLib/etc/resolv.conf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/StdLib/Efi/StdLib/etc/resolv.conf b/StdLib/Efi/StdLib/etc/resolv.conf index 3ac16ac230..724e6297b2 100644 --- a/StdLib/Efi/StdLib/etc/resolv.conf +++ b/StdLib/Efi/StdLib/etc/resolv.conf @@ -1,13 +1,13 @@ # # Domain name # -domain intel.com +domain example.com ; ; Name Servers ; -nameserver 206.63.63.61 -nameserver 216.251.100.1 +nameserver 8.8.8.8 +nameserver 8.8.4.4 ; nameserver 10.248.2.1 ; nameserver 10.22.224.204 -- 2.20.1