Here are the config file settings for one of the nodes. The config file for the other node differs only in the value of quartz.scheduler.instanceId, which is "Node-Two".
<quartz>
<add key="quartz.scheduler.instanceName" value="QuartzServer" />
<add key="quartz.scheduler.instanceId" value="Node-One" />
<add key="quartz.threadPool.threadCount" value="10" />
<add key="quartz.threadPool.threadPriority" value="Normal" />
<add key="quartz.jobStore.misfireThreshold" value="2000" />
<add key="quartz.jobStore.type" value="Quartz.Impl.AdoJobStore.JobStoreTX, Quartz" />
<add key="quartz.jobStore.useProperties" value="false" />
<add key="quartz.jobStore.dataSource" value="default" />
<add key="quartz.jobStore.tablePrefix" value="QRTZ_" />
<add key="quartz.jobStore.clustered" value="true" />
<add key="quartz.jobStore.lockHandler.type" value="Quartz.Impl.AdoJobStore.SimpleSemaphore, Quartz" />
<!-- point this at your database -->
<add key="quartz.dataSource.default.connectionString" value="..." />
<add key="quartz.dataSource.default.provider" value="SqlServer-20" />
</quartz>