2018-05-26 22:36:25 +00:00
# -*- coding: utf-8 -*-
2018-06-26 16:49:19 +00:00
# Generated by Django 1.10.7 on 2018-06-26 16:37
2018-05-26 22:36:25 +00:00
from __future__ import unicode_literals
from django . db import migrations , models
import django . db . models . deletion
import re2o . mixins
class Migration ( migrations . Migration ) :
dependencies = [
2018-06-26 16:49:19 +00:00
( ' machines ' , ' 0082_auto_20180525_2209 ' ) ,
2018-05-26 22:36:25 +00:00
( ' topologie ' , ' 0060_server ' ) ,
]
operations = [
migrations . CreateModel (
name = ' PortProfile ' ,
fields = [
( ' id ' , models . AutoField ( auto_created = True , primary_key = True , serialize = False , verbose_name = ' ID ' ) ) ,
2018-06-26 16:49:19 +00:00
( ' name ' , models . CharField ( max_length = 255 , verbose_name = ' Name ' ) ) ,
2018-06-30 15:29:00 +00:00
( ' profil_default ' , models . CharField ( blank = True , choices = [ ( ' room ' , ' room ' ) , ( ' nothing ' , ' nothing ' ) , ( ' accespoint ' , ' accesspoint ' ) , ( ' uplink ' , ' uplink ' ) , ( ' asso_machine ' , ' asso_machine ' ) ] , max_length = 32 , null = True , unique = True , verbose_name = ' profil default ' ) ) ,
2018-06-26 16:49:19 +00:00
( ' radius_type ' , models . CharField ( choices = [ ( ' NO ' , ' NO ' ) , ( ' 802.1X ' , ' 802.1X ' ) , ( ' MAC-radius ' , ' MAC-radius ' ) ] , max_length = 32 , verbose_name = ' RADIUS type ' ) ) ,
( ' radius_mode ' , models . CharField ( choices = [ ( ' STRICT ' , ' STRICT ' ) , ( ' COMMON ' , ' COMMON ' ) ] , default = ' COMMON ' , max_length = 32 , verbose_name = ' RADIUS mode ' ) ) ,
( ' speed ' , models . CharField ( choices = [ ( ' 10-half ' , ' 10-half ' ) , ( ' 100-half ' , ' 100-half ' ) , ( ' 10-full ' , ' 10-full ' ) , ( ' 100-full ' , ' 100-full ' ) , ( ' 1000-full ' , ' 1000-full ' ) , ( ' auto ' , ' auto ' ) , ( ' auto-10 ' , ' auto-10 ' ) , ( ' auto-100 ' , ' auto-100 ' ) ] , default = ' auto ' , help_text = ' Mode de transmission et vitesse du port ' , max_length = 32 , verbose_name = ' Speed ' ) ) ,
( ' mac_limit ' , models . IntegerField ( blank = True , help_text = ' Limit du nombre de mac sur le port ' , null = True , verbose_name = ' Mac limit ' ) ) ,
( ' flow_control ' , models . BooleanField ( default = False , help_text = ' Gestion des débits ' , verbose_name = ' Flow control ' ) ) ,
( ' dhcp_snooping ' , models . BooleanField ( default = False , help_text = ' Protection dhcp pirate ' , verbose_name = ' Dhcp snooping ' ) ) ,
( ' dhcpv6_snooping ' , models . BooleanField ( default = False , help_text = ' Protection dhcpv6 pirate ' , verbose_name = ' Dhcpv6 snooping ' ) ) ,
( ' arp_protect ' , models . BooleanField ( default = False , help_text = " Verification assignation de l ' IP par dhcp " , verbose_name = ' Arp protect ' ) ) ,
( ' ra_guard ' , models . BooleanField ( default = False , help_text = ' Protection contre ra pirate ' , verbose_name = ' Ra guard ' ) ) ,
( ' loop_protect ' , models . BooleanField ( default = False , help_text = ' Protection contre les boucles ' , verbose_name = ' Loop Protect ' ) ) ,
2018-06-26 17:12:52 +00:00
( ' vlan_tagged ' , models . ManyToManyField ( blank = True , related_name = ' vlan_tagged ' , to = ' machines.Vlan ' , verbose_name = ' VLAN(s) tagged ' ) ) ,
2018-06-26 16:49:19 +00:00
( ' vlan_untagged ' , models . ForeignKey ( blank = True , null = True , on_delete = django . db . models . deletion . SET_NULL , related_name = ' vlan_untagged ' , to = ' machines.Vlan ' , verbose_name = ' VLAN untagged ' ) ) ,
2018-05-26 22:36:25 +00:00
] ,
options = {
2018-06-26 16:49:19 +00:00
' verbose_name ' : ' Port profile ' ,
2018-05-26 22:36:25 +00:00
' permissions ' : ( ( ' view_port_profile ' , ' Can view a port profile object ' ) , ) ,
2018-06-26 16:49:19 +00:00
' verbose_name_plural ' : ' Port profiles ' ,
2018-05-26 22:36:25 +00:00
} ,
2018-06-26 16:49:19 +00:00
bases = ( re2o . mixins . AclMixin , re2o . mixins . RevMixin , models . Model ) ,
2018-05-26 22:36:25 +00:00
) ,
]