@@ -72,7 +72,7 @@ func (t *NativeTun) configure() error {
72
72
if err != nil {
73
73
return E .Cause (err , "set ipv4 address" )
74
74
}
75
- if ! t .options .EXP_DisableDNSHijack {
75
+ if t . options . AutoRoute && ! t .options .EXP_DisableDNSHijack {
76
76
dnsServers := common .Filter (t .options .DNSServers , netip .Addr .Is4 )
77
77
if len (dnsServers ) == 0 && HasNextAddress (t .options .Inet4Address [0 ], 1 ) {
78
78
dnsServers = []netip.Addr {t .options .Inet4Address [0 ].Addr ().Next ()}
@@ -83,14 +83,19 @@ func (t *NativeTun) configure() error {
83
83
return E .Cause (err , "set ipv4 dns" )
84
84
}
85
85
}
86
+ } else {
87
+ err = luid .SetDNS (winipcfg .AddressFamily (windows .AF_INET ), nil , nil )
88
+ if err != nil {
89
+ return E .Cause (err , "set ipv4 dns" )
90
+ }
86
91
}
87
92
}
88
93
if len (t .options .Inet6Address ) > 0 {
89
94
err := luid .SetIPAddressesForFamily (winipcfg .AddressFamily (windows .AF_INET6 ), t .options .Inet6Address )
90
95
if err != nil {
91
96
return E .Cause (err , "set ipv6 address" )
92
97
}
93
- if ! t .options .EXP_DisableDNSHijack {
98
+ if t . options . AutoRoute && ! t .options .EXP_DisableDNSHijack {
94
99
dnsServers := common .Filter (t .options .DNSServers , netip .Addr .Is6 )
95
100
if len (dnsServers ) == 0 && HasNextAddress (t .options .Inet6Address [0 ], 1 ) {
96
101
dnsServers = []netip.Addr {t .options .Inet6Address [0 ].Addr ().Next ()}
@@ -101,6 +106,11 @@ func (t *NativeTun) configure() error {
101
106
return E .Cause (err , "set ipv6 dns" )
102
107
}
103
108
}
109
+ } else {
110
+ err = luid .SetDNS (winipcfg .AddressFamily (windows .AF_INET6 ), nil , nil )
111
+ if err != nil {
112
+ return E .Cause (err , "set ipv6 dns" )
113
+ }
104
114
}
105
115
}
106
116
if len (t .options .Inet4Address ) > 0 || len (t .options .Inet6Address ) > 0 {
0 commit comments