6

how can I register subdomains of my web development server into my DNS automatically?

I mean, I wouldn't like to edit the DNS config file, but send something from the client that says 'Hey, I have a subdomain here'. Is it possible? Other way, how can I register a subdomain, example redmine.DEV01 into my dnsmasq installation?

Thanks.

JorgeeFG
  • 416

1 Answers1

5

You can use dnsmasq wildcard. For example if you want to force all subdomains of DEV01 to machine with ip 192.168.1.2 just add this line to dnsmasq config: address=/.DEV01/192.168.1.2

rominf
  • 220