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 page if the request address is in my list. I was able to write the server, just not sure how to redirect.

Thank you. I am using Python 2.6 on Windows XP.

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

There's little, simple example here that can easily be adapted to make all kinds of "mini fake dns servers". Note that absolutely no "redirect" is involved (that's not how DNS works): rather, the request is for a domain name, and the result of that request is an IP address. If what you want to do is drastically different from translating names to addresses, then maybe what you need is not actually a DNS server...?

link|improve this answer
I guess it isn't. What would I need then? I thought I needed a proxy because I wanted it to be easy for network andims to use my program for web address filtering. If I ue a proxy, it can't be a "network wide" utility because there is not anywhere in most router settings to set a proxy. – Zachary Brown Sep 23 '10 at 2:18
@Zachary, I don't know what you need because I still don't understand what kind of "web address filtering" you're trying to accomplish -- I just answered the actual question you asked. If you're writing a web server that needs to respond differently depending on the IP that's doing the request, for example, that's obviously a completely different question (depending on your chosen web framework &c, for starters;-). – Alex Martelli Sep 23 '10 at 2:24
...and if what you want is for your server to proxy to different ones, without technically being an HTTP proxy, that's feasible too, but yet another completely different question. Please ask a different question specifying what you're trying to accomplish more precisely, and close this one!-) – Alex Martelli Sep 23 '10 at 2:26
Not quite sure. I have already written a proxy that blocks access to sites with certain keywords or addresses. Now I need a solution of the same type for an entire network. Maybe I need the DNS server to forward all requests through the proxy? If this is what I need, let me know and I will post that question. Thank you. – Zachary Brown Sep 23 '10 at 2:30
@Zachary, sure, you can have a DNS server that just doesn't translate certain specified addresses (that's the only way in which a DNS server can "block access"!-) -- "forwarding to proxy" makes little sense unless your so-called "proxy" handles every protocol in the universe (including both TCP-based and UDP-based ones, but that's just a start), which would be a very weird "proxy" indeed (proxies normally handle a small number of protocols, often just HTTP and HTTPS -- and DNS servers are of course not informed of what protocol is in play). – Alex Martelli Sep 23 '10 at 2:55
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.