HomeSort by relevance Sort by last modified time
    Searched full:nameserver (Results 1 - 25 of 96) sorted by null

1 2 3 4

  /external/dnsmasq/contrib/openvpn/
dhclient-enter-hooks 22 for nameserver in $new_domain_name_servers; do
23 echo nameserver $nameserver >>$RESOLVCONF
README 13 > /etc/resolv.conf is set to nameserver 127.0.0.1
35 > the fly to set 127.0.0.1 to the nameserver (and somehow keep the
dnsmasq.patch 22 + sed -e 's/\(nameserver[ tab]\+\)[0-9]\+\.[0-9]\+\.[0-9]\+\.[0-9]\+$/\1127.0.0.1/' /etc/resolv.conf.dnsmasq > /etc/resolv.conf
  /external/dnsmasq/contrib/try-all-ns/
README-2.47 10 in NXDOMAIN, it iterates the whole given nameserver list
  /external/dhcpcd/dhcpcd-hooks/
20-resolv.conf 40 # Build the nameserver list
42 key_get_value "nameserver " ${interfaces})
44 servers="${servers}nameserver $x\n"
94 conf="${conf}nameserver $x\n"
  /external/dnsmasq/
setup.html 33 and any local hosts in <TT>/etc/hosts</TT>) can be turned into a nameserver
42 <h2>Making the nameserver machine use dnsmasq.</h2>
46 upstream nameservers. To fix this, simply replace the nameserver in
48 address(es) of the upstream nameserver(s) to dnsmasq directly. You can
53 <h2>Automatic nameserver configuration.</h2>
60 nameserver(s) completely transparently.
65 as above with "nameserver 127.0.0.1" in <TT>/etc/resolv.conf</TT> and run dnsmasq
83 <TT>dhcpcd.exe</TT> script gets run with the addresses of the nameserver(s) in
91 echo "nameserver $serv" >>/etc/dhcpc/resolv.conf
177 nameservers. The solution is to use the companies nameserver fo
    [all...]
  /external/chromium/third_party/libevent/
evdns.3 202 Add a nameserver. The address should be an IP address in
208 address and adds it as a nameserver.
231 whether our calls to the various nameserver configuration functions
254 nameserver lines
282 this queue requests have an allocated transaction id and nameserver.
288 nameserver. Several algorithms require a full walk of the inflight
292 If a nameserver loses too many requests it is considered down and we
293 try not to use it. After a while we send a probe to that nameserver
295 again. If the nameserver fails a probe we wait longer to try again
evdns.c 169 struct nameserver *ns; /* the server which we last sent it */
211 struct nameserver { struct
219 struct nameserver *next, *prev;
229 static struct nameserver *server_head = NULL;
315 /* These are the timeout values for nameservers. If we find a nameserver is down */
320 static struct nameserver *nameserver_pick(void);
325 static void nameserver_send_probe(struct nameserver *const ns);
446 /* a libevent callback function which is called when a nameserver */
450 struct nameserver *const ns = (struct nameserver *) arg
2704 const char *const nameserver = NEXT_TOKEN; local
    [all...]
evdns.h 143 * this queue requests have an allocated transaction id and nameserver.
149 * nameserver. Several algorithms require a full walk of the inflight
153 * If a nameserver loses too many requests it is considered down and we
154 * try not to use it. After a while we send a probe to that nameserver
156 * again. If the nameserver fails a probe we wait longer to try again
250 Add a nameserver.
267 whether our calls to the various nameserver configuration functions
300 Add a nameserver.
303 address and adds it as a nameserver.
405 Obtain nameserver information using the Windows API
    [all...]
  /external/chromium_org/third_party/libevent/
evdns.3 202 Add a nameserver. The address should be an IP address in
208 address and adds it as a nameserver.
231 whether our calls to the various nameserver configuration functions
254 nameserver lines
282 this queue requests have an allocated transaction id and nameserver.
288 nameserver. Several algorithms require a full walk of the inflight
292 If a nameserver loses too many requests it is considered down and we
293 try not to use it. After a while we send a probe to that nameserver
295 again. If the nameserver fails a probe we wait longer to try again
evdns.c 169 struct nameserver *ns; /* the server which we last sent it */
211 struct nameserver { struct
219 struct nameserver *next, *prev;
229 static struct nameserver *server_head = NULL;
315 /* These are the timeout values for nameservers. If we find a nameserver is down */
320 static struct nameserver *nameserver_pick(void);
325 static void nameserver_send_probe(struct nameserver *const ns);
446 /* a libevent callback function which is called when a nameserver */
450 struct nameserver *const ns = (struct nameserver *) arg
2704 const char *const nameserver = NEXT_TOKEN; local
    [all...]
evdns.h 143 * this queue requests have an allocated transaction id and nameserver.
149 * nameserver. Several algorithms require a full walk of the inflight
153 * If a nameserver loses too many requests it is considered down and we
154 * try not to use it. After a while we send a probe to that nameserver
156 * again. If the nameserver fails a probe we wait longer to try again
250 Add a nameserver.
267 whether our calls to the various nameserver configuration functions
300 Add a nameserver.
303 address and adds it as a nameserver.
405 Obtain nameserver information using the Windows API
    [all...]
  /external/chromium_org/net/base/
dns_reloader.cc 24 // or because nameserver info has changed as a result of e.g. connecting to
28 // to res_ninit to reload the nameserver information in different threads.
39 // Android does not have /etc/resolv.conf. The system takes care of nameserver
  /external/mdnsresponder/mDNSShared/
dnsextd_lexer.l 57 nameserver return NAMESERVER;
dnsextd_parser.y 103 %token NAMESERVER
178 NAMESERVER ADDRESS networkaddress
182 NAMESERVER ADDRESS networkaddress PORT NUMBER
  /external/iproute2/examples/
dhcp-client-script 294 # domain and nameserver list are passed in global variables.
300 local nameserver
316 for nameserver in $new_domain_name_servers; do
317 echo nameserver $nameserver >> /etc/resolv.conf.dhcp
320 echo nameserver 127.0.0.1 >> /etc/resolv.conf.dhcp
  /external/chromium/net/base/
dns_reload_timer.cc 16 // or because nameserver info has changed as a result of e.g. connecting to
20 // to res_ninit to reload the nameserver information in different threads.
  /external/chromium_org/net/tools/gdig/
gdig.cc 69 output.append("nameserver ");
255 " [--nameserver=<ip_address[:port]>]"
319 if (parsed_command_line.HasSwitch("nameserver")) {
320 std::string nameserver = local
321 parsed_command_line.GetSwitchValueASCII("nameserver");
322 if (!StringToIPEndPoint(nameserver, &nameserver_)) {
  /external/chromium/third_party/libevent/test/
regress_dns.c 306 /* Add ourself as the only nameserver, and make sure we really are
307 * the only nameserver. */
314 /* Now configure a nameserver port. */
357 evdns_shutdown(0); /* remove ourself as nameserver. */
  /external/chromium_org/net/dns/
dns_socket_pool.h 51 // Allocates a socket that is already connected to the nameserver referenced
  /external/chromium_org/third_party/libevent/test/
regress_dns.c 306 /* Add ourself as the only nameserver, and make sure we really are
307 * the only nameserver. */
314 /* Now configure a nameserver port. */
357 evdns_shutdown(0); /* remove ourself as nameserver. */
  /external/dnsmasq/contrib/Suse/
dnsmasq-suse.spec 21 Summary: A lightweight caching nameserver
  /external/ipsec-tools/src/racoon/samples/roadwarrior/client/
phase1-up.sh 31 echo "nameserver ${INTERNAL_DNS4}" >> /etc/resolv.conf
  /external/mdnsresponder/
PrivateDNS.txt 62 forwards the request to the "real" nameserver, and returns the result to
132 "nameserver", "private", and "llq". It defaults to expecting the "real"
133 nameserver to be listening on 127.0.0.1:5030.
196 // a caching only nameserver config
  /external/openssh/
README.dns 23 implementations. If your nameserver has support for the SSHFP RR

Completed in 409 milliseconds

1 2 3 4