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"; |
Scott Baker | a3b3ff2 | 2019-01-23 11:25:18 -0800 | [diff] [blame] | 6 | option description = "Service that manages and configures fabric switches in ONOS"; |
Matteo Scandolo | 9cc4f6f | 2017-10-02 18:03:58 -0700 | [diff] [blame] | 7 | |
Scott Baker | a3b3ff2 | 2019-01-23 11:25:18 -0800 | [diff] [blame] | 8 | optional bool autoconfig = 1 [ |
| 9 | help_text="Automatically apply addresses from AddressManager service to Fabric", |
Scott Baker | e93ad34 | 2019-03-12 15:40:11 -0700 | [diff] [blame] | 10 | default = True]; |
Sapan Bhatia | 8c95eb4 | 2017-05-02 12:17:52 +0200 | [diff] [blame] | 11 | } |
Luca Prete | b601c38 | 2018-04-30 16:10:43 -0700 | [diff] [blame] | 12 | |
| 13 | message Switch(XOSBase) { |
| 14 | option verbose_name = "Fabric Switch"; |
Scott Baker | a3b3ff2 | 2019-01-23 11:25:18 -0800 | [diff] [blame] | 15 | option description = "An individual fabric switch managed by ONOS"; |
Luca Prete | b601c38 | 2018-04-30 16:10:43 -0700 | [diff] [blame] | 16 | |
Scott Baker | a3b3ff2 | 2019-01-23 11:25:18 -0800 | [diff] [blame] | 17 | required string ofId = 1 [ |
| 18 | help_text = "The unique OpenFlow ID of the fabric switch", |
Scott Baker | a3b3ff2 | 2019-01-23 11:25:18 -0800 | [diff] [blame] | 19 | max_length = 19]; |
| 20 | required string name = 2 [ |
| 21 | help_text = "The unique name of the fabric switch", |
Scott Baker | a3b3ff2 | 2019-01-23 11:25:18 -0800 | [diff] [blame] | 22 | max_length = 254]; |
| 23 | required string driver = 3 [ |
| 24 | help_text = "The driver used by the SDN controller", |
Scott Baker | a3b3ff2 | 2019-01-23 11:25:18 -0800 | [diff] [blame] | 25 | default = "ofdpa3", |
| 26 | max_length = 254]; |
| 27 | required int32 ipv4NodeSid = 4 [ |
Scott Baker | e93ad34 | 2019-03-12 15:40:11 -0700 | [diff] [blame] | 28 | help_text = "The MPLS label used by the switch [17 - 1048576]"]; |
Scott Baker | a3b3ff2 | 2019-01-23 11:25:18 -0800 | [diff] [blame] | 29 | required string ipv4Loopback = 5 [ |
| 30 | help_text = "Fabric loopback interface", |
Scott Baker | a3b3ff2 | 2019-01-23 11:25:18 -0800 | [diff] [blame] | 31 | max_length = 17]; |
| 32 | required string routerMac = 6 [ |
| 33 | help_text = "MAC address of the fabric switch used for all interfaces", |
Scott Baker | a3b3ff2 | 2019-01-23 11:25:18 -0800 | [diff] [blame] | 34 | max_length = 17]; |
| 35 | required bool isEdgeRouter = 7 [ |
| 36 | help_text="True if the fabric switch is a leaf, False if it is a spine", |
Scott Baker | e93ad34 | 2019-03-12 15:40:11 -0700 | [diff] [blame] | 37 | default = True]; |
Luca Prete | b601c38 | 2018-04-30 16:10:43 -0700 | [diff] [blame] | 38 | } |
| 39 | |
| 40 | message SwitchPort(XOSBase) { |
| 41 | option verbose_name = "Fabric Switch Port"; |
Scott Baker | a3b3ff2 | 2019-01-23 11:25:18 -0800 | [diff] [blame] | 42 | option description = "A port on a fabric switch"; |
Luca Prete | b601c38 | 2018-04-30 16:10:43 -0700 | [diff] [blame] | 43 | |
Scott Baker | a3b3ff2 | 2019-01-23 11:25:18 -0800 | [diff] [blame] | 44 | required manytoone switch->Switch:ports = 1:1001 [ |
| 45 | help_text = "The fabric switch the port belongs to", |
| 46 | db_index = True, |
| 47 | tosca_key=True]; |
| 48 | required int32 portId = 2 [ |
| 49 | help_text = "The unique port OpenFlow port ID", |
Scott Baker | a3b3ff2 | 2019-01-23 11:25:18 -0800 | [diff] [blame] | 50 | tosca_key=True]; |
| 51 | required bool host_learning = 3 [ |
| 52 | help_text = "whether or not to enable autodiscovery", |
Scott Baker | e93ad34 | 2019-03-12 15:40:11 -0700 | [diff] [blame] | 53 | default = True]; |
Scott Baker | 91bf91b | 2019-03-15 16:13:51 -0700 | [diff] [blame^] | 54 | optional string admin_state = 4 [ |
| 55 | help_text = "desired administrative state of port", |
| 56 | choices = "(('enabled', 'enabled'), ('disabled', 'disabled'))", |
| 57 | default = "enabled"]; |
| 58 | optional string oper_status = 5 [ |
| 59 | help_text = "operational status of port", |
| 60 | choices = "(('enabled', 'enabled'), ('disabled', 'disabled'))", |
| 61 | feedback_state = True]; |
Luca Prete | b601c38 | 2018-04-30 16:10:43 -0700 | [diff] [blame] | 62 | } |
| 63 | |
| 64 | message PortInterface(XOSBase) { |
| 65 | option verbose_name = "Fabric Port Interface"; |
Scott Baker | a3b3ff2 | 2019-01-23 11:25:18 -0800 | [diff] [blame] | 66 | option description = "An interface on a port on a fabric switch"; |
Luca Prete | b601c38 | 2018-04-30 16:10:43 -0700 | [diff] [blame] | 67 | |
Scott Baker | a3b3ff2 | 2019-01-23 11:25:18 -0800 | [diff] [blame] | 68 | required manytoone port->SwitchPort:interfaces = 1:1001 [ |
| 69 | help_text = "The fabric switch port the interface belongs to", |
| 70 | db_index = True]; |
| 71 | required string name = 2 [ |
| 72 | help_text = "The unique name of the fabric switch port", |
Scott Baker | a3b3ff2 | 2019-01-23 11:25:18 -0800 | [diff] [blame] | 73 | max_length = 254]; |
| 74 | optional int32 vlanUntagged = 3 [ |
Scott Baker | e93ad34 | 2019-03-12 15:40:11 -0700 | [diff] [blame] | 75 | help_text = "The optional untagged VLAN ID for the interface"]; |
Matteo Scandolo | af3c994 | 2018-06-27 14:03:12 -0700 | [diff] [blame] | 76 | } |
| 77 | |
| 78 | message NodeToSwitchPort(XOSBase) { |
| 79 | option verbose_name = "Node to switch port"; |
| 80 | option description = "Compute Node connection to a Fabric switch port"; |
| 81 | |
Scott Baker | a3b3ff2 | 2019-01-23 11:25:18 -0800 | [diff] [blame] | 82 | required manytoone port->SwitchPort:node_to_switch_ports = 1:1002 [ |
| 83 | help_text = "The fabric switch port the node is connected to", |
| 84 | db_index = True, |
| 85 | tosca_key=True]; |
| 86 | required manytoone node->Node:node_to_switch_ports = 2:1004 [ |
| 87 | help_text = "The ComputeNode this port is connected to", |
| 88 | db_index = True, |
| 89 | tosca_key=True]; |
Luca Prete | 1537787 | 2018-09-11 17:32:55 -0700 | [diff] [blame] | 90 | } |
| 91 | |
| 92 | message FabricIpAddress(XOSBase) { |
| 93 | option verbose_name = "IP address"; |
Scott Baker | a3b3ff2 | 2019-01-23 11:25:18 -0800 | [diff] [blame] | 94 | option description = "An IP address associated with a port on a fabric switch"; |
Luca Prete | 1537787 | 2018-09-11 17:32:55 -0700 | [diff] [blame] | 95 | |
Scott Baker | a3b3ff2 | 2019-01-23 11:25:18 -0800 | [diff] [blame] | 96 | required manytoone interface->PortInterface:ips = 1:1001 [ |
| 97 | help_text = "The port interface the IP address belongs to", |
| 98 | db_index = True, |
| 99 | tosca_key = True]; |
| 100 | required string ip = 2 [ |
| 101 | help_text = "The unique IP address (either IPv4 or IPv6 / netmask)", |
Scott Baker | a3b3ff2 | 2019-01-23 11:25:18 -0800 | [diff] [blame] | 102 | max_length = 52, |
| 103 | tosca_key = True, |
| 104 | unique_with = "interface"]; |
| 105 | optional string description = 3 [ |
| 106 | help_text = "A short description of the IP address", |
Scott Baker | a3b3ff2 | 2019-01-23 11:25:18 -0800 | [diff] [blame] | 107 | max_length = 254]; |
Luca Prete | 1537787 | 2018-09-11 17:32:55 -0700 | [diff] [blame] | 108 | } |