Forgot your password?
typodupeerror

Comment Re:UDP block - use pdnsd with tcp_only (Score 2, Interesting) 275

Did not found way to force system resolver to use tcp-only, but something like this should work:
aptitide install pdnsd
=== cut /etc/pdnsd.conf ===
global {
query_method = tcp_only;
}
server {
ip = 8.8.8.8, 8.8.4.4;
label = "google";
}
=== cut /etc/resolv.conf ===
nameserver 127.0.0.1
That's slower than udp, but better than nothing (and pdnsd cache will compensate slowdown from tcp usage).

Slashdot Top Deals

A sheet of paper is an ink-lined plane. -- Willard Espy, "An Almanac of Words at Play"

Working...