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 7DAB821945DE3 for ; Thu, 7 Mar 2019 18:15:07 -0800 (PST) Received: from muon.bluestop.org (localhost [127.0.0.1]) by muon.bluestop.org (Postfix) with ESMTP id CE5447CDA4; Thu, 7 Mar 2019 19:16:03 -0700 (MST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=bluestop.org; s=mail; t=1552011363; bh=jreLpbNYbzytHp6CtXwn1QYEth3UPpKIq55RqaspmOU=; h=From:To:Cc:Subject:Date:From; b=IkURzsm351vYLIs4dsYoAAAUUjJeN9UgsE40j+QUAygijLesMRiYQ9X5eYWGweCUK pPmr0GIN6HieZzwpZl3/IAA4NnswG1/y8KiEiZDNXgKySDaaDeKcwi5H6Sq/3Afl3i TbXoC5IU/pTUHjMV5aB39Tu8sX7vzlA1M+wI6kDI= 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 PM4T2bbQCo8j; Thu, 7 Mar 2019 19:16:03 -0700 (MST) Received: from photon.int.bluestop.org (gw.bluestop.org [96.73.9.3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by muon.bluestop.org (Postfix) with ESMTPSA; Thu, 7 Mar 2019 19:16:03 -0700 (MST) From: Rebecca Cran To: edk2-devel@lists.01.org Cc: Rebecca Cran , Jaben Carsey , Laszlo Ersek Date: Thu, 7 Mar 2019 19:14:55 -0700 Message-Id: <20190308021455.89858-1-rebecca@bluestop.org> X-Mailer: git-send-email 2.21.0 MIME-Version: 1.0 Subject: [PATCH] StdLib: Update resolv.conf to use Google's 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: Fri, 08 Mar 2019 02:15:07 -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. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Rebecca Cran Reviewed-by: Jaben Carsey Reviewed-by: Laszlo Ersek --- 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.21.0