Reputation: 307
What I want to do is write an Application in Python and deploy it in django(I want to implement it on Linux platform), and that Application could manage DNS remotely in Active Directory(Windows environment). It's preferred that all the scripts written in Cpython. I tryed several ways below but failed:
Can somebody provide a resolution? Or a workaround.
In my understand, I need a cpython scripts run in Linux that could remotely manage DNS in Active Directory on Windows platform. If there is any problem about it, please let me know. Any suggestions are appreciated.
Upvotes: 0
Views: 1880
Reputation: 43533
Set up the windows machine as a chaching nameserver, with the linux box as its authoritative nameserver. That way you can just change the settings of BIND on the linux box, and the windows box should follow along.
This question probably belongs on server fault, though.
Upvotes: 1