('radius_general_policy',models.CharField(choices=[('MACHINE',"On the IP range's VLAN of the machine"),('DEFINED',"Preset in 'VLAN for machines accepted by RADIUS'")],default='DEFINED',max_length=32)),
field=models.ForeignKey(blank=True,help_text='Vlan for banned if not rejected.',null=True,on_delete=django.db.models.deletion.PROTECT,related_name='banned_vlan',to='machines.Vlan',verbose_name='Banned Vlan'),
field=models.ForeignKey(blank=True,help_text='Vlan for non members if not rejected.',null=True,on_delete=django.db.models.deletion.PROTECT,related_name='non_member_vlan',to='machines.Vlan',verbose_name='Non member Vlan'),
field=models.ForeignKey(blank=True,help_text='Vlan for unknown machines if not rejected.',null=True,on_delete=django.db.models.deletion.PROTECT,related_name='unknown_machine_vlan',to='machines.Vlan',verbose_name='Unknown machine Vlan'),
field=models.ForeignKey(blank=True,help_text='Vlan for unknown ports if not rejected.',null=True,on_delete=django.db.models.deletion.PROTECT,related_name='unknown_port_vlan',to='machines.Vlan',verbose_name='Unknown port Vlan'),
field=models.ForeignKey(blank=True,help_text='Vlan for unknown room if not rejected.',null=True,on_delete=django.db.models.deletion.PROTECT,related_name='unknown_room_vlan',to='machines.Vlan',verbose_name='Unknown room Vlan'),
field=models.CharField(choices=[('REJECT','Reject the machine'),('SET_VLAN','Place the machine on the VLAN')],default='REJECT',max_length=32,verbose_name='Policy for banned users.'),
field=models.CharField(choices=[('REJECT','Reject the machine'),('SET_VLAN','Place the machine on the VLAN')],default='REJECT',max_length=32,verbose_name='Policy non member users.'),
field=models.CharField(choices=[('REJECT','Reject the machine'),('SET_VLAN','Place the machine on the VLAN')],default='REJECT',max_length=32,verbose_name='Policy for unknown machines'),
),
migrations.AddField(
model_name='radiusoption',
name='unknown_port',
field=models.CharField(choices=[('REJECT','Reject the machine'),('SET_VLAN','Place the machine on the VLAN')],default='REJECT',max_length=32,verbose_name='Policy for unknown machines'),
),
migrations.AddField(
model_name='radiusoption',
name='unknown_room',
field=models.CharField(choices=[('REJECT','Reject the machine'),('SET_VLAN','Place the machine on the VLAN')],default='REJECT',max_length=32,verbose_name='Policy for machine connecting from unregistered room (relevant on ports with STRICT radius mode)'),