diff --git a/tests/0_common/30_dns_works.sh b/tests/0_common/30_dns_works.sh
index 4dbee5a..3d5f8e8 100755
--- a/tests/0_common/30_dns_works.sh
+++ b/tests/0_common/30_dns_works.sh
@@ -2,7 +2,7 @@
 
 t_Log "Running $0 - testing to see if DNS works"
 if [ $SKIP_QA_HARNESS -eq 1 ]; then 
-  HOST=ci.dev.centos.org 
+  HOST=www.centos.org
 else
   HOST=repo.centos.qa
 fi
diff --git a/tests/p_curl/curl_test.sh b/tests/p_curl/curl_test.sh
index 27965ba..22f3eac 100755
--- a/tests/p_curl/curl_test.sh
+++ b/tests/p_curl/curl_test.sh
@@ -6,8 +6,8 @@ t_Log "Running $0 - curl can access http-host and retrieve index.html."
 
 
 if [ $SKIP_QA_HARNESS -eq 1 ]; then
-  CHECK_FOR="CentOS CI test page"
-  URL="http://ci.dev.centos.org/cstatic/"
+  CHECK_FOR="The CentOS Project"
+  URL="http://www.centos.org/"
 else
   CHECK_FOR="Index of /srv"
   URL="http://repo.centos.qa/srv/CentOS/"
diff --git a/tests/p_iputils/tracepath_test.sh b/tests/p_iputils/tracepath_test.sh
index b8112ab..5526be4 100755
--- a/tests/p_iputils/tracepath_test.sh
+++ b/tests/p_iputils/tracepath_test.sh
@@ -5,7 +5,7 @@ TEST=tracepath
 
 # Testing availability of network
 if [ $SKIP_QA_HARNESS -eq 1 ]; then
-  HOST="ci.dev.centos.org"
+  HOST="www.centos.org"
 else
   HOST="repo.centos.qa"
 fi
diff --git a/tests/p_lynx/lynx_dump_page_test.sh b/tests/p_lynx/lynx_dump_page_test.sh
index 0f5de17..10603e1 100755
--- a/tests/p_lynx/lynx_dump_page_test.sh
+++ b/tests/p_lynx/lynx_dump_page_test.sh
@@ -4,8 +4,8 @@
 t_Log "Running $0 - check that lynx can dump remote page."
 
 if [ "$SKIP_QA_HARNESS" = "1" ] ; then
-  URL="http://ci.dev.centos.org/cstatic/"
-  CHECK_FOR="CentOS CI test page"
+  URL="http://www.centos.org/"
+  CHECK_FOR="The CentOS Project"
 else
   URL="http://repo.centos.qa/qa/"
   CHECK_FOR="ks_cfg"
diff --git a/tests/p_mtr/mtr_test.sh b/tests/p_mtr/mtr_test.sh
index 862314e..447ec7b 100755
--- a/tests/p_mtr/mtr_test.sh
+++ b/tests/p_mtr/mtr_test.sh
@@ -5,7 +5,7 @@ TEST=mtr
 
 # Testing availability of network
 if [ $SKIP_QA_HARNESS -eq 1 ]; then
-  HOST="ci.dev.centos.org"
+  HOST="www.centos.org"
 else
   HOST="repo.centos.qa"
 fi
diff --git a/tests/p_squid/squid_test.sh b/tests/p_squid/squid_test.sh
index 982a49e..7651b71 100755
--- a/tests/p_squid/squid_test.sh
+++ b/tests/p_squid/squid_test.sh
@@ -4,8 +4,8 @@
 t_Log "Running $0 - Squid test."
 
 if [ $SKIP_QA_HARNESS -eq 1 ]; then
-  URL="http://ci.dev.centos.org/cstatic/"
-  CHECK_FOR="CentOS CI test page"
+  URL="http://www.centos.org/"
+  CHECK_FOR="The CentOS Project"
 else
   URL="http://repo.centos.qa/qa/"
   CHECK_FOR="ks_cfg"
diff --git a/tests/p_traceroute/traceroute_test.sh b/tests/p_traceroute/traceroute_test.sh
index b311abd..b07af1b 100755
--- a/tests/p_traceroute/traceroute_test.sh
+++ b/tests/p_traceroute/traceroute_test.sh
@@ -5,7 +5,7 @@ TEST=traceroute
 
 # Testing availability of network
 if [ $SKIP_QA_HARNESS -eq 1 ]; then
-  HOST="ci.dev.centos.org"
+  HOST="www.centos.org"
 else
   HOST="repo.centos.qa"
 fi
diff --git a/tests/p_wget/wget_test.sh b/tests/p_wget/wget_test.sh
index 2298a67..6826425 100755
--- a/tests/p_wget/wget_test.sh
+++ b/tests/p_wget/wget_test.sh
@@ -7,8 +7,8 @@ FILE=/var/tmp/index.html
 
 
 if [ $SKIP_QA_HARNESS -eq 1 ]; then
-  CHECK_FOR="CentOS"
-  URL="http://ci.dev.centos.org/cstatic/"
+  CHECK_FOR="The CentOS Project"
+  URL="http://www.centos.org/"
 else
   CHECK_FOR="CentOS"
   URL="http://repo.centos.qa/srv/CentOS/"