<html><head></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; color: rgb(0, 0, 0); font-size: 14px; font-family: Calibri, sans-serif; "><div>Is there anyway to make presigned-zones on slaves the default.</div><div><br></div><div>I have supermasters on all my slaves and they get updates automatically but after the initial transfer it does I have to log into the slave and run pdnssec set-presigned domain.com for every domain on the slave.</div><div>As I want the slaves to be as smart as possible I want all zones from them presigned (as the master does all the signing)</div><div><br></div><div>I could change (as far as I can tell) (tested and it works)</div><div><br></div><div><div>bool DNSSECKeeper::isPresigned(const std::string& name)</div><div>{</div><div>  string meta;</div><div>  getFromMeta(name, "PRESIGNED", meta);</div><div>  return meta=="1";</div><div>}</div></div><div><br></div><div>to </div><div><br></div><div><div>bool DNSSECKeeper::isPresigned(const std::string& name)</div><div>{</div><div>  string meta;</div><div>  getFromMeta(name, "PRESIGNED", meta);</div><div>  return true;</div><div>}</div></div><div><br></div><div>On the slave so all zones which get asked for are set to presigned..</div><div><br></div><div>Ideas??</div><div><br></div><div>Thanks</div><div>Craig</div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div></body></html>