Sapan Bhatia | 8c95eb4 | 2017-05-02 12:17:52 +0200 | [diff] [blame] | 1 | option app_label = "fabric"; |
Matteo Scandolo | 9cc4f6f | 2017-10-02 18:03:58 -0700 | [diff] [blame] | 2 | option name = "fabric"; |
Sapan Bhatia | 8c95eb4 | 2017-05-02 12:17:52 +0200 | [diff] [blame] | 3 | |
Luca Prete | b601c38 | 2018-04-30 16:10:43 -0700 | [diff] [blame] | 4 | message FabricService(Service) { |
Matteo Scandolo | 9cc4f6f | 2017-10-02 18:03:58 -0700 | [diff] [blame] | 5 | option verbose_name = "Fabric Service"; |
| 6 | |
| 7 | optional bool autoconfig = 1 [default = True, help_text="Autoconfigure the fabric", null=False]; |
Sapan Bhatia | 8c95eb4 | 2017-05-02 12:17:52 +0200 | [diff] [blame] | 8 | } |
Luca Prete | b601c38 | 2018-04-30 16:10:43 -0700 | [diff] [blame] | 9 | |
| 10 | message Switch(XOSBase) { |
| 11 | option verbose_name = "Fabric Switch"; |
| 12 | |
Scott Baker | 8270a1a | 2018-10-01 11:50:12 -0700 | [diff] [blame^] | 13 | required string ofId = 1 [help_text = "The unique OpenFlow ID of the fabric switch", max_length = 19, null = False, db_index = False, blank = False]; |
Luca Prete | b601c38 | 2018-04-30 16:10:43 -0700 | [diff] [blame] | 14 | required string name = 2 [help_text = "The unique name of the fabric switch", max_length = 254, null = False, db_index = False, blank = False]; |
| 15 | required string driver = 3 [help_text = "The driver used by the SDN controller", max_length = 254, null = False, db_index = False, blank = False, default = "ofdpa3"]; |
| 16 | required int32 ipv4NodeSid = 4 [help_text = "The MPLS label used by the switch [17 - 1048576]", null = False, db_index = False, blank = False]; |
| 17 | required string ipv4Loopback = 5 [help_text = "Fabric loopback interface", max_length = 17, null = False, db_index = False, blank = False]; |
| 18 | required string routerMac = 6 [help_text = "MAC address of the fabric switch used for all interfaces", max_length = 17, null = False, db_index = False, blank = False]; |
| 19 | required bool isEdgeRouter = 7 [default = True, help_text="Whether the fabric switch is a leaf or a spine", null=False, blank = False]; |
| 20 | } |
| 21 | |
| 22 | message SwitchPort(XOSBase) { |
| 23 | option verbose_name = "Fabric Switch Port"; |
| 24 | |
| 25 | required manytoone switch->Switch:ports = 1 [help_text = "The fabric switch the port belongs to", db_index = True, null = False, blank = False, tosca_key=True]; |
| 26 | required int32 portId = 2 [help_text = "The unique port OpenFlow port ID", null = False, db_index = False, blank = False, tosca_key=True]; |
Matteo Scandolo | dfe75ff | 2018-06-15 10:52:09 -0700 | [diff] [blame] | 27 | required bool host_learning = 3 [help_text = "whether or not to enable autodiscovery", default = True, null = False, db_index = False, blank = False]; |
Luca Prete | b601c38 | 2018-04-30 16:10:43 -0700 | [diff] [blame] | 28 | } |
| 29 | |
| 30 | message PortInterface(XOSBase) { |
| 31 | option verbose_name = "Fabric Port Interface"; |
| 32 | |
| 33 | required manytoone port->SwitchPort:interfaces = 1 [help_text = "The fabric switch port the interface belongs to", db_index = True, null = False, blank = False]; |
| 34 | required string name = 2 [help_text = "The unique name of the fabric switch port", max_length = 254, null = False, db_index = False, blank = False]; |
Matteo Scandolo | af3c994 | 2018-06-27 14:03:12 -0700 | [diff] [blame] | 35 | required string ips = 3 [help_text = "The interface IP address (xxx.yyy.www.zzz/nm)", max_length = 20, null = False, db_index = False, blank = False, unique_with = "port"]; |
Matteo Scandolo | b13dc2d | 2018-08-15 17:57:35 -0700 | [diff] [blame] | 36 | optional int32 vlanUntagged = 4 [help_text = "The optional untagged VLAN ID for the interface", null = True, db_index = False, blank = True]; |
Matteo Scandolo | af3c994 | 2018-06-27 14:03:12 -0700 | [diff] [blame] | 37 | } |
| 38 | |
| 39 | message NodeToSwitchPort(XOSBase) { |
| 40 | option verbose_name = "Node to switch port"; |
| 41 | option description = "Compute Node connection to a Fabric switch port"; |
| 42 | |
| 43 | required manytoone port->SwitchPort:node_to_switch_ports = 1 [help_text = "The fabric switch port the node is connected to", db_index = True, null = False, blank = False, tosca_key=True]; |
| 44 | required manytoone node->Node:node_to_switch_ports = 2 [help_text = "The ComputeNode this port is connected to", db_index = True, null = False, blank = False, tosca_key=True]; |
Luca Prete | b601c38 | 2018-04-30 16:10:43 -0700 | [diff] [blame] | 45 | } |