Google TV 网络受限怎么办?

要解决国内使用google tv 无法自动连接WIFI,需要修改两处配置,需要通过adb工具来修改。

一、修改NTP_Server时间同步服务器

adb shell settings put global ntp_server cn.pool.ntp.org

cn.pool.ntp.org

可以替换为任意可用 ntp 服务器

二、修改Android Captive Portal Server 认证服务器

#####################
#国内可用的认证服务器#
#####################

#chrome,google.cn任意选一个
adb shell settings put global captive_portal_http_url http://www.gstatic.com/generate_204
adb shell settings put global captive_portal_https_url https://www.gstatic.com/generate_204
##################################################################################
adb shell settings put global captive_portal_http_url http://www.google.cn/generate_204
adb shell settings put global captive_portal_https_url https://www.google.cn/generate_204
##################################################################################
##################################################################################
#获取当前captive_portal_server
adb shell settings get global captive_portal_http_url
adb shell settings get global captive_portal_https_url

修改完成后重启google tv已经可以自动连接WIFI了。

你可能感兴趣的:(服务器,网络,http)