环境:
某省移动宽带, VPN服务器在JP, 服务器端在DO新加坡机房。
1. 不开VPN
执行curl --http1.0 xxx.com(打码了,非真实网址)
服务端打印:
HttpRequest(GET,http://xxx.com/,List(Host:
xxx.com, Cache-Control: max-age=259200, Accept: */*, User-Agent: curl/7.30.0),Empty,HTTP/1.1)
2. 开vpn
重新执行:curl --http1.0
xxx.com服务端打印:
HttpRequest(GET,http://xxx.com/,List(Host:
xxx.com, Accept: */*, User-Agent: curl/7.30.0),Empty,HTTP/1.0)
tcpdump了一下,curl发出的包中确实是HTTP/1.0, 并且没有Cache-Control那个头。
请问是谁动了我http包呢,
是跨国访问经过了某个CDN吗,还是我触摸到了伟大到墙?