('hostname',models.CharField(help_text='Host name or IP address of the BIND server.',max_length=255,unique=True)),
('dns_port',models.IntegerField(default=53,help_text='The port where the BIND server is listening for DNS requests. binder especially uses that port for the dynamic zone updates. In most cases you should always leave it at the default port 53.',verbose_name='DNS port')),
('statistics_port',models.IntegerField(help_text='Port where the BIND server is serving statistics on.')),
('name',models.CharField(help_text=b'A human readable name for the key to store, used for further references to the key.',unique=True,max_length=255)),
('data',models.CharField(help_text=b'The private part of the TSIG key.',max_length=255)),
('algorithm',models.CharField(help_text=b'The algorithm which has been used for the key.',max_length=255,choices=[(b'HMAC-MD5.SIG-ALG.REG.INT',b'MD5'),(b'hmac-sha1',b'SHA1'),(b'hmac-sha256',b'SHA256'),(b'hmac-sha384',b'SHA384'),(b'hmac-sha512',b'SHA512')])),
('name',models.CharField(help_text='A human readable name for the key to store, used for further references to the key.',max_length=255,unique=True)),
('data',models.CharField(help_text='The private part of the TSIG key.',max_length=255)),
('algorithm',models.CharField(choices=[('HMAC-MD5.SIG-ALG.REG.INT','MD5'),('hmac-sha1','SHA1'),('hmac-sha256','SHA256'),('hmac-sha384','SHA384'),('hmac-sha512','SHA512')],help_text='The algorithm which has been used for the key.',max_length=255)),
],
options={
'ordering':['name'],
},
bases=(models.Model,),
),
migrations.AddField(
model_name='bindserver',
name='default_transfer_key',
field=models.ForeignKey(blank=True,to='binder.Key',help_text=b'The default key to use for all actions with this DNS server as long as no other key is specified explicitly.',null=True),
preserve_default=True,
field=models.ForeignKey(blank=True,help_text='The default key to use for all actions with this DNS server as long as no other key is specified explicitly.',null=True,on_delete=django.db.models.deletion.CASCADE,to='binder.Key'),
field=models.IntegerField(default=53,verbose_name='DNS port',help_text=b'The port where the BIND server is listening for DNSrequests. binder especially uses that port for the dynamic zone updates. In most cases you should always leave it at the default port 53.'),