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 5A7342095DCA3 for ; Fri, 22 Feb 2019 19:38:10 -0800 (PST) Received: from muon.bluestop.org (localhost [127.0.0.1]) by muon.bluestop.org (Postfix) with ESMTP id D2E2561FF2; Fri, 22 Feb 2019 20:39:03 -0700 (MST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=bluestop.org; s=mail; t=1550893143; bh=KzfXMkOsRneW46YEKHS4p4FKL2YVHx8r+dMO8UQl/Yo=; h=From:To:Cc:Subject:Date:From; b=pAWIWMccRb8pV+gNlRCjUwsCgBMWFPMZI3gY2JiqVOJBmVwcwhYZdMn3F8BHEmP8w l0Y6hb+uVc0YiDPMvM4PybuO0So95YTCEwcVvxmfB0bHGL7ZU6lcxkznWeRmP6L60T iStKenH+0YBXhSmPsmQ8XXQ7/hsgEaJDIjNItNwY= 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 QAfF3f1jCHkg; Fri, 22 Feb 2019 20:39: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; Fri, 22 Feb 2019 20:39:03 -0700 (MST) From: Rebecca Cran To: edk2-devel@lists.01.org Date: Fri, 22 Feb 2019 20:38:02 -0700 Message-Id: <20190223033802.74083-1-rebecca@bluestop.org> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Subject: [PATCH] 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: Sat, 23 Feb 2019 03:38:10 -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. --- 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