@Gramerch 在 hoplimit会被校园网用于多设备检测吗? 中发帖
之前看了很多校园网放代理检测的教程,都提到了ttl检测,但似乎都没有提到hoplimit检测,是因为hoplimit不易被检测还是别的什么原因吗?
另外,我试图将原来用于防ttl检测的配置改成如下内容:
chain mangle_postrouting_ttl64 {
type filter hook postrouting priority 300; policy accept;
counter ip ttl set 64
counter ip6 hoplimit set 64
}
chain mangle_prerouting_ttl64 {
type filter hook prerouting priority 300; policy accept;
counter ip ttl set 64
...