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