之前一直访问不了,也没有细究,以为是 frp 的问题。昨晚测试了一下,小米路由器严格检查 http 请求的 HOST 字段,如果是非局域网内的机器,就直接不响应了,或者响应重定向。
```
root@OpenWrt:~# curl -H "Host:
baidu.com:123" 192.168.50.1 -v
> GET / HTTP/1.1
> Host:
baidu.com:123> User-Agent: curl/7.77.0
> Accept: */*
>
直接卡住了……
root@OpenWrt:~# curl -H "Host: 192.168.50.3" 192.168.50.1 -v
> GET / HTTP/1.1
> Host: 192.168.50.3
> User-Agent: curl/7.77.0
> Accept: */*
>
< HTTP/1.1 502 Bad Gateway
< Server: nginx/1.12.2
< Date: Wed, 01 Dec 2021 04:50:45 GMT
< Content-Type: text/html; charset=UTF-8
< Content-Length: 173
< Connection: close
root@OpenWrt:~# curl -H "Host: 192.168.50.2" 192.168.50.1 -v
> GET / HTTP/1.1
> Host: 192.168.50.2
> User-Agent: curl/7.77.0
> Accept: */*
>
< HTTP/1.1 403 Forbidden
< Server: nginx/1.12.2
< Date: Wed, 01 Dec 2021 04:54:37 GMT
< Content-Type: text/html; charset=UTF-8
< Transfer-Encoding: chunked
< Connection: close
< Cache-Control: no-cache
< Pragma: no-cache
< Expires: 0
<
<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="utf-8">
<title>OpenWrt - LuCI</title>
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
https://www.v2ex.com/t/819272
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.