Tagged Questions

44
votes
10answers
34k views

Wildcards in a hosts file

I want to setup my local development machine so that any requests for *.local are redirected to localhost. The idea is that as I develop multiple sites, I can just add vhosts to Apache called ...
9
votes
6answers
19k views

DNS problem, nslookup works, ping doesn't

I am setting up a development server in my flat. I have set up an Ubuntu DNS server on it and have added the zone weddinglist (just weddinglist - no TLD. It's just an internal domain.) This works ...
5
votes
1answer
2k views

Slow response from getaddrinfo

I'm using getaddrinfo to do DNS queries from C++ on Windows. I used to use the Windows API DnsQuery and that worked fine, but when adding IPv6 support to my software I switched to getaddrinfo. Since ...
3
votes
1answer
76 views

DNS customization development on Windows?

I want to implement my own policy for DNS look up on Windows platform (Server 2008), in more details, the customization I mean is when there is a request to look up IP for a host name comes for DNS ...
3
votes
3answers
2k views

How can I find the current DNS server?

I'm using Delphi and need to get the current Windows DNS server IP address so I can do a lookup. What function should I call to find it? The only solution I have right now does an ipconfig/all to get ...
2
votes
1answer
116 views

How does Windows know how to resolve mDNS queries?

When you install Bonjour for Windows you can resolve any ".local" mDNS name from anywhere in the system. For example, you can "ping some_computer.local" and mDNSResponder.exe (Bonjour/mDNS Daemon) ...
2
votes
1answer
109 views

DNS local domain anti-spoofing on Windows 7?

I'm looking for a way to customize the DNS resolution policy on Windows 7 as follows: 1) For certain private domains, the request should be forwarded to a secure server of my choosing (likely ...
2
votes
2answers
105 views

Is there a .NET interface to edit Windows DNS Server zones?

I think I may need to create a tool to assist in migrating DNS information, creating "shadow" zones for NAT'ed addreses, and so on in our forest of 2003 and 2008 servers. I know there are ways to ...
2
votes
4answers
1k views

Domain Suffix added to DNS Queries

I have a reoccurring DNS problem that has been plaguing our users, occasionally causing their laptops to append our company's domain to the end of all DNS queries. The problem only occurs when users ...
2
votes
1answer
881 views

How do I create a subdomain on windows?

I just want to add a couple subdomains to my computers FQDN so that I can have some Vitrual Servers (apache.) Any ideas? Note: I need to add the aliases to my machine, like a.foo.com and ...
1
vote
1answer
53 views

How to disable NetBIOS resolving in C# (Dns.GetHostEntry)

as stated in MSDN - Dns.GetHostEntry Method (String), If the DNS query fails, the system may fall back to a NetBIOS name query depending on the configuration of the local computer. . This is nice ...
1
vote
1answer
60 views

Friendly name to acces my embedded device using USB/ETH connection

I have trouble to configure my network to access my device with a friendly name. Here is my situation: LAN ^ ----¦---- USB/ETH ------------------ ¦ PC ¦ ---------> ¦ Embedded device¦ ...
1
vote
1answer
55 views

Retrieving what's in the DNS cache

In Windows, is there an API to retrieve the content of the DNS cache. A college of mine asked me this very question but so far I've looked in on MSDN and searched the web but I couldn't find any ...
1
vote
0answers
37 views

Python: Getting Local Nameserver information from Windows 95/XP/7

I'm trying to get local nameserver information for a reverse DNS lookup. In Linux I can parse the resolv.conf file. How do I get the same information for Windows programmatically using Python? What ...
1
vote
1answer
123 views

How to Change DNS Servers Programmaticly in Windows with Python?

I want to change DNS servers programmatically. I don't want to build a DNS server, I just want to change the primary and secondary dns servers automatically. This work needs to be done in Python.
1
vote
4answers
476 views

Windows Azure: How to 301 non-www url to www for a domain

I recently deployed an Windows Azure application and configured DNS of my domain through DreamHost portal. Now my site is accessible through http://www.coziie.com, but not through non-www address. I ...
1
vote
3answers
399 views

Cannot connect to host in C: Hostname not found (11001) on Windows, DNS Problem?

I am trying to use an API that connects to a remote server in C, but I keep having the following error message: log_message: 15:13:19.489 I [ap:1388] Connecting to AP A3.spotify.com:4070 ...
1
vote
1answer
101 views

Block website without forcing user to restart browser?

I know blocking a website is a popular question but none of the answers I've seen address my particular situation: I want to block a website (to be selected by the user, which must also have Admin ...
1
vote
2answers
459 views

How to ping XP machine from MacOSX

On my home network, I am able to ping between my XP machines just fine. I can also ping my Mac from the XP machines. However when I attempt to ping my XP machines from the OSX terminal I get ...
1
vote
2answers
133 views

Is there a way to simulate DNS Hijacking for testing purposes?

I'm working on an application that connects to URLs, and it responds differently depending on whether or not an address resolves in DNS. I need to find a way to simulate DNS Hijacking so that I can ...
1
vote
1answer
130 views

Script to set windows (vista) DNS settings

I'd like to create a script that will toggle between setting the DNS settings of my wireless card between automatic selection and a particular IP (openDNS). Can this be done, and if so what should I ...
1
vote
1answer
478 views

Programmatically Changing NameServer in Windows TCP/IP

I am building a VPN application where I need to set DNS server programmatically. I am changing NameServer parameter in the registry (in ...
1
vote
2answers
532 views

DNS Lookup in ASP / ASP.Net

I have a Windows server that is intermittently losing the ability to lookup DNS information. I'm trying to get to the root cause of the problem but in the mean time I'd like to be able to monitor ...
1
vote
4answers
2k views

DNS Lookup in PHP

I have a Windows server that is intermittently losing the ability to lookup DNS information. I'm trying to get to the root cause of the problem but in the mean time I'd like to be able to monitor ...
0
votes
1answer
35 views

How to modify dns server in C++?

I want to change the primary dns server to some ip(e.g. 8.8.8.8), for all active adapters. I tried to modify the registry, for all interfaces under ...
0
votes
0answers
19 views

Windows 2003 DNS Zones on Secondary server won't load

Until recently, we had two Windows 2003 DNS servers (one of the machines recently died, and took the HD's down with it). We're running ok on one, but I'm trying to set up the second. The server that ...
0
votes
0answers
16 views

How to have different “hosts file” based on the connected network?

Is there some way to configure Windows to automatically resolve host names to different IPs depending on which network you are connected to?
0
votes
1answer
70 views

Programmatically obtain DNS IPv6 servers of host

I would like to obtain IPv6 addresses of DNS servers in system. This topic helped me very much with IPv4. But GetNetworkParams() is not returning IPv6 servers, only IPv4. Is there any other way to ...
0
votes
2answers
34 views

url structure of internal websites

I would like to have a particular url structure of my company dev server. we got a few websites, and I'm putting them on 1 server, but each websites can access to the same libs and config files making ...
0
votes
1answer
73 views

binding different DNS to one DNS - iis 7 - programmatically

I have multiple sites - www.ca1.com , ca1.com . All these sites are to be bind to www.mysite.com/ca1 programmatically on IIS 7.
0
votes
2answers
168 views

DNS How do I setup Multiple A records pointing to the same sub-domain?

I have a sub-domain sub1.primary.com that works correctly. Now I need to setup sub2.primary.com and have it point to the same web application as sub1.primary.com. I tried it as a new A record and a ...
0
votes
0answers
242 views

Redirect all n-level subdomain to another DNS server

I have an hosting service that registered for me a domain. call it qqq.com i can manage dns. i bought in another country a windows server. i want that all subdomain of l1.qqq.com have to be managed ...
0
votes
1answer
348 views

How to query TXT and SRV records from Windows?

I am attempting to query a set of SRV records using the naked host name (e.g. _service._proto) however this fails unless I also include the domain name. This is strange because other tools such as ...
0
votes
0answers
144 views

Write custom DNS resolver plugin

I would like to write a plugin, which will provide alternative name resolution in windows; e.g.: a dll which will be called when gethostbyname() is called. I'm wondering if anyone is aware if ...
0
votes
1answer
565 views

Python DNS Server

I am adding a feature to my current project that will allow network admins to install the software to the network. I need to code a DNS server in Python that will allow me to redirect to a certain ...
0
votes
1answer
415 views

windows c++ DNS lookups

I have a windows C++ application (mingw, but I guess it doesn't matter). I need to do very occasional obscure types of DNS lookups, such as TXT and AXFR. The best I can do at the moment is using ...
0
votes
3answers
276 views

Windows host name resolution

I was wondering how the windows host-name resolution system works. More precisely I wonder about the use, or lack thereof, of local caching in the process. According to Microsoft TCP/IP Host Name ...
0
votes
1answer
15 views

Core of Windows Server name server system

I am trying to find some info about the nature of name server in Windows server, like BIND stands for Unix or Linux, for instance. Does anyone know where can I find some tech info about the based ...
0
votes
1answer
302 views

windows 2008 DNS Website without www?

I have a site on my server that only works with a www. example: http://www.dartmouthplayers.ns.ca/ works but without it, it does not. http://dartmouthplayers.ns.ca/ But the site's bindings has both ...
0
votes
1answer
103 views

Dnsqueryconfig returning junk characters!

Hi iam trying to retrieve the domain name of a machine using the following code //if(FAILED(DnsQueryConfig( // DnsConfigPrimaryDomainName_UTF8, // FALSE, // NULL, ...
0
votes
1answer
477 views

Modify destination port in TCP/IP headers of all outgoing packets

Used SSH Tunnel to route the traffic addressed to server1:port1 to server2:port2. Now,the problem is that i want to redirect all TCP/IP packets from desktop addressed to server1:port1 to ...
0
votes
1answer
503 views

Programmatically Refresh DNS resolution (avoid cache) (c#)

Is there a way to programmatically remove an address from windows' dns cache, or to re-resolve it? I'm using c#, but native code would be just fine (however, playing with the registry would not be). ...
0
votes
2answers
519 views

“Microsoft DNS Client” vs. getaddrinfo?

Right now, my application is using the c-ares asynchronous DNS resolver library on Windows below cURL, and I have users complaining that it behaves differently from other windows apps. One particular ...
0
votes
1answer
292 views

Windows DNS hooks

How does Windows resolv DNS and how can I intercept the calls, in order to inject my own domains? I need this in an application, and running my own DNS server or modifying the hosts file is not a ...
0
votes
5answers
1k views

set up website on local machine

I have a fast dedicated internet connection and a static IP address at my office. I also have a web site that I want to host on my server machine (win server 2003). I know how to setup a web site ...
0
votes
3answers
335 views

Getting DNS servers on Windows

I'm using the DnsQueryConfig Win32 function to get the DNS servers used by Windows. This works fine for IPv4 addresses, but what if the DNS servers have IPv6 addresses?