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.

link|improve this question

75% accept rate
feedback

1 Answer

up vote 1 down vote accepted

You can call a command line tool to do it for you with os.system.

import os
os.system('netsh interface ip set dns "Local Area Connection" static 192.168.0.200'
link|improve this answer
I didn't know it could be changed on command prompt. – PythEch Sep 15 '11 at 9:17
feedback

Your Answer

 
or
required, but never shown

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