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 | 81a9be2 | 2019-04-09 14:42:26 -0700 | [diff] [blame] | 22 | max_length = 256]; |
Scott Baker | a3b3ff2 | 2019-01-23 11:25:18 -0800 | [diff] [blame] | 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", |
Scott Baker | 81a9be2 | 2019-04-09 14:42:26 -0700 | [diff] [blame] | 26 | max_length = 256]; |
Scott Baker | a3b3ff2 | 2019-01-23 11:25:18 -0800 | [diff] [blame] | 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]; |
Scott Baker | cabc3de | 2019-04-03 17:23:08 -0700 | [diff] [blame^] | 38 | optional string managementAddress = 8 [ |
| 39 | help_text = "Address where this switch can be managed", |
| 40 | feedback_state = True, |
| 41 | max_length = 1024]; |
Luca Prete | b601c38 | 2018-04-30 16:10:43 -0700 | [diff] [blame] | 42 | } |
| 43 | |
| 44 | message SwitchPort(XOSBase) { |
| 45 | option verbose_name = "Fabric Switch Port"; |
Scott Baker | a3b3ff2 | 2019-01-23 11:25:18 -0800 | [diff] [blame] | 46 | option description = "A port on a fabric switch"; |
Luca Prete | b601c38 | 2018-04-30 16:10:43 -0700 | [diff] [blame] | 47 | |
Scott Baker | a3b3ff2 | 2019-01-23 11:25:18 -0800 | [diff] [blame] | 48 | required manytoone switch->Switch:ports = 1:1001 [ |
| 49 | help_text = "The fabric switch the port belongs to", |
| 50 | db_index = True, |
| 51 | tosca_key=True]; |
| 52 | required int32 portId = 2 [ |
| 53 | help_text = "The unique port OpenFlow port ID", |
Scott Baker | a3b3ff2 | 2019-01-23 11:25:18 -0800 | [diff] [blame] | 54 | tosca_key=True]; |
| 55 | required bool host_learning = 3 [ |
| 56 | help_text = "whether or not to enable autodiscovery", |
Scott Baker | e93ad34 | 2019-03-12 15:40:11 -0700 | [diff] [blame] | 57 | default = True]; |
Scott Baker | 91bf91b | 2019-03-15 16:13:51 -0700 | [diff] [blame] | 58 | optional string admin_state = 4 [ |
| 59 | help_text = "desired administrative state of port", |
| 60 | choices = "(('enabled', 'enabled'), ('disabled', 'disabled'))", |
Scott Baker | 81a9be2 | 2019-04-09 14:42:26 -0700 | [diff] [blame] | 61 | default = "enabled", |
| 62 | max_length = 32]; |
Scott Baker | 91bf91b | 2019-03-15 16:13:51 -0700 | [diff] [blame] | 63 | optional string oper_status = 5 [ |
| 64 | help_text = "operational status of port", |
| 65 | choices = "(('enabled', 'enabled'), ('disabled', 'disabled'))", |
Scott Baker | 81a9be2 | 2019-04-09 14:42:26 -0700 | [diff] [blame] | 66 | feedback_state = True, |
| 67 | max_length = 32]; |
Scott Baker | cabc3de | 2019-04-03 17:23:08 -0700 | [diff] [blame^] | 68 | optional string kind = 6 [ |
| 69 | help_text = "type of device attached to port", |
| 70 | choices = "(('access', 'access'), ('internet', 'internet'))", |
| 71 | max_length = 32]; |
Luca Prete | b601c38 | 2018-04-30 16:10:43 -0700 | [diff] [blame] | 72 | } |
| 73 | |
| 74 | message PortInterface(XOSBase) { |
| 75 | option verbose_name = "Fabric Port Interface"; |
Scott Baker | a3b3ff2 | 2019-01-23 11:25:18 -0800 | [diff] [blame] | 76 | option description = "An interface on a port on a fabric switch"; |
Luca Prete | b601c38 | 2018-04-30 16:10:43 -0700 | [diff] [blame] | 77 | |
Scott Baker | a3b3ff2 | 2019-01-23 11:25:18 -0800 | [diff] [blame] | 78 | required manytoone port->SwitchPort:interfaces = 1:1001 [ |
| 79 | help_text = "The fabric switch port the interface belongs to", |
| 80 | db_index = True]; |
| 81 | required string name = 2 [ |
| 82 | help_text = "The unique name of the fabric switch port", |
Scott Baker | 81a9be2 | 2019-04-09 14:42:26 -0700 | [diff] [blame] | 83 | max_length = 256]; |
Scott Baker | a3b3ff2 | 2019-01-23 11:25:18 -0800 | [diff] [blame] | 84 | optional int32 vlanUntagged = 3 [ |
Scott Baker | e93ad34 | 2019-03-12 15:40:11 -0700 | [diff] [blame] | 85 | help_text = "The optional untagged VLAN ID for the interface"]; |
Matteo Scandolo | af3c994 | 2018-06-27 14:03:12 -0700 | [diff] [blame] | 86 | } |
| 87 | |
| 88 | message NodeToSwitchPort(XOSBase) { |
| 89 | option verbose_name = "Node to switch port"; |
| 90 | option description = "Compute Node connection to a Fabric switch port"; |
| 91 | |
Scott Baker | a3b3ff2 | 2019-01-23 11:25:18 -0800 | [diff] [blame] | 92 | required manytoone port->SwitchPort:node_to_switch_ports = 1:1002 [ |
| 93 | help_text = "The fabric switch port the node is connected to", |
| 94 | db_index = True, |
| 95 | tosca_key=True]; |
| 96 | required manytoone node->Node:node_to_switch_ports = 2:1004 [ |
| 97 | help_text = "The ComputeNode this port is connected to", |
| 98 | db_index = True, |
| 99 | tosca_key=True]; |
Luca Prete | 1537787 | 2018-09-11 17:32:55 -0700 | [diff] [blame] | 100 | } |
| 101 | |
| 102 | message FabricIpAddress(XOSBase) { |
| 103 | option verbose_name = "IP address"; |
Scott Baker | a3b3ff2 | 2019-01-23 11:25:18 -0800 | [diff] [blame] | 104 | 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] | 105 | |
Scott Baker | a3b3ff2 | 2019-01-23 11:25:18 -0800 | [diff] [blame] | 106 | required manytoone interface->PortInterface:ips = 1:1001 [ |
| 107 | help_text = "The port interface the IP address belongs to", |
| 108 | db_index = True, |
| 109 | tosca_key = True]; |
| 110 | required string ip = 2 [ |
| 111 | help_text = "The unique IP address (either IPv4 or IPv6 / netmask)", |
Scott Baker | a3b3ff2 | 2019-01-23 11:25:18 -0800 | [diff] [blame] | 112 | max_length = 52, |
| 113 | tosca_key = True, |
| 114 | unique_with = "interface"]; |
| 115 | optional string description = 3 [ |
| 116 | help_text = "A short description of the IP address", |
Scott Baker | 81a9be2 | 2019-04-09 14:42:26 -0700 | [diff] [blame] | 117 | max_length = 256]; |
Luca Prete | 1537787 | 2018-09-11 17:32:55 -0700 | [diff] [blame] | 118 | } |