--
You received this message because you are subscribed to the Google Groups "VOLTHA Discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to voltha-discuss+unsubscribe@opencord.org.
To post to this group, send email to voltha-...@opencord.org.
Visit this group at https://groups.google.com/a/opencord.org/group/voltha-discuss/.
To view this discussion on the web visit https://groups.google.com/a/opencord.org/d/msgid/voltha-discuss/2ac3ee91-9c4a-474b-bf9f-3fb66b086683%40opencord.org.
For more options, visit https://groups.google.com/a/opencord.org/d/optout.
Not to be picky - Is OLT enable/disable the same as PON port enable/disable? I hope not. Then we need to add PON port enable/disable.ThanksShawn
On Fri, Jun 9, 2017 at 10:51 AM, <gcgiri...@gmail.com> wrote:
Hello All,Attached is the proposal for device management in voltha. I haven't really mentioned the fine grained details of the implementation. Request your feedback if you see something is not right in this initial proposal and needs a change/enhanced. We can as well discuss the same in the forthcoming TST meetings.Thanks & Regards,Girish
--
You received this message because you are subscribed to the Google Groups "VOLTHA Discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to voltha-discus...@opencord.org.
Girish - the page mentioned the architecture changes in order to support the device manager. are ALL the blue blocks need to be changed? I don't think any block is new.ThanksShawn
On Fri, Jun 9, 2017 at 3:06 PM, GS Ying <syin...@gmail.com> wrote:
Not to be picky - Is OLT enable/disable the same as PON port enable/disable? I hope not. Then we need to add PON port enable/disable.ThanksShawn
On Fri, Jun 9, 2017 at 10:51 AM, <gcgiri...@gmail.com> wrote:
Hello All,Attached is the proposal for device management in voltha. I haven't really mentioned the fine grained details of the implementation. Request your feedback if you see something is not right in this initial proposal and needs a change/enhanced. We can as well discuss the same in the forthcoming TST meetings.Thanks & Regards,Girish
--
You received this message because you are subscribed to the Google Groups "VOLTHA Discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to voltha-discus...@opencord.org.
Hi Chip,
Agree to you inputs.
The API to retrieve the SW version on the device will be designed to include the items you mention.
Regards,
Girish
--
You received this message because you are subscribed to the Google Groups "VOLTHA Discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to
voltha-discus...@opencord.org.
To post to this group, send email to
voltha-...@opencord.org.
Visit this group at
https://groups.google.com/a/opencord.org/group/voltha-discuss/.
To view this discussion on the web visit https://groups.google.com/a/opencord.org/d/msgid/voltha-discuss/a0339960-eeef-48ee-bfec-a3b3fdf569ae%40opencord.org.
Hi Amit/Girish:A few questions on the proposal:1. "Disable ONU" API currently sends ofp.OFPPR_DELETE event to ONOS, and ONOS sets the port to "disabled".When "Enable ONU" API is called, ONOS sets the port to "enabled" and immediately puts ONU into service mode rather than start fresh from EAPOL authentication.Question: how to address this issue in the proposal?
2. If Disable ONU/Enable ONU APIs' current behaviors are correct, then what do we expect "Delete ONU" and "Delete ONT" APIs to do?Currently those two APIs are pretty much just deleting the device objects from VOLTHA database. Shall we expect them to provoke ONOS to re-authenticate ONT subscriber?
[AG]: On "Delete ONU", the logical port in voltha should be removed as well as OFPPR_DELETE should be sent to ONOS.
3. Shall we consider elevating the ONT port/interface configuration to VOLTHA adapter and expose it to NBI APIs?
[AG]: Not sure I understand this, which parameters configuration are we talking about here.
Hi Lydia,
When the ONU is disabled, the adapter should not remove the port. It should instead update the port, i.e., call adapter_agent.update_logical_port instead of adapter_agent.delete_logical_port.
The adapter_agent.update_logical_port function updates the /logical_devices/{}/ports and this invokes the callback _port_updated in logical_device_agent.py. FYI, the _port_updated function is registered in _port_added function at the time of port creation. Please look into _port_added for more details where it sends a port_status OF message.
Regards,
Girish
From: L Fang [mailto:lfan...@gmail.com]
Sent: Wednesday, June 14, 2017 4:42 AM
To: VOLTHA Discuss <voltha-...@opencord.org>
Cc: gcgiri...@gmail.com
Subject: [voltha-discuss] Re: Proposal - Device Management in VOLTHA
Hi Amit,
--
You received this message because you are subscribed to the Google Groups "VOLTHA Discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to
voltha-discus...@opencord.org.
To post to this group, send email to
voltha-...@opencord.org.
Visit this group at
https://groups.google.com/a/opencord.org/group/voltha-discuss/.
To view this discussion on the web visit https://groups.google.com/a/opencord.org/d/msgid/voltha-discuss/7bd9f6d5-02cc-4f76-bab6-8ffd6a23e166%40opencord.org.
To post to this group, send email to voltha...@opencord.org.
Hi Lydia,
For disabling the ONU the port.ofp_port.state should be set to OFPPS_LINK_DOWN. Once the ONU is re-enabled, the port.ofp_port.state should be set back to OFPPS_LIVE. The port.ofp_port.config field is usually modified by controller and the switch ideally shouldn’t be modifying it.
When the OLT is disabled, the existing behavior in the ponsim_olt adapter seems right to me. This means at the voltha side => the device is disabled, logical device deleted, child devices disabled, all references for the device removed and all ports disabled. At the ONOS end => the entire logical device appears as down.
Is there any state diagrams or sequence diagrams available for the ONT and OLT use cases?
Mark
To post to this group, send email to voltha-...@opencord.org.
Visit this group at
https://groups.google.com/a/opencord.org/group/voltha-discuss/.
To view this discussion on the web visit https://groups.google.com/a/opencord.org/d/msgid/voltha-discuss/SN2PR0801MB637BCE4389396F3A59476CCEEC00%40SN2PR0801MB637.namprd08.prod.outlook.com.
To post to this group, send email to voltha-...@opencord.org.
To view this discussion on the web visit https://groups.google.com/a/opencord.org/d/msgid/voltha-discuss/SN2PR0801MB637BCE4389396F3A59476CCEEC00%40SN2PR0801MB637.namprd08.prod.outlook.com.
Girish,
I looked through the latest proposal and I do not see any references to ONU’s entities and its management. For e.g, how the ONT’s slots and ports will be managed. When is this planned to be incorporated on the proposal? There are requirements in the POC3 to manage ONU’s entities.
Thanks
Sireesha
From: gcgiris...@gmail.com [mailto:gcgiris...@gmail.com]
Sent: Friday, June 16, 2017 5:24 AM
To: VOLTHA Discuss <voltha-...@opencord.org>
Cc: gcgiri...@gmail.com
Subject: [voltha-discuss] Re: Proposal - Device Management in VOLTHA
Agreed Steve and thanks for the feedback.
--
You received this message because you are subscribed to the Google Groups "VOLTHA Discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to
voltha-discus...@opencord.org.
To post to this group, send email to
voltha-...@opencord.org.
Visit this group at
https://groups.google.com/a/opencord.org/group/voltha-discuss/.
To view this discussion on the web visit https://groups.google.com/a/opencord.org/d/msgid/voltha-discuss/333ecb2f-5fe2-4555-95fd-f09c0b49a582%40opencord.org.
Hi Sireesha,
I think the items you are referring to fall under Chassis Management (correct me if I am wrong) and is not being addressed as part of the proposal shared. It will need to be addressed separately, may be after the we have addressed the items in the current proposal.
Regards,
Girish
To view this discussion on the web visit https://groups.google.com/a/opencord.org/d/msgid/voltha-discuss/DB4PR07MB0704914CBBF9A3D23C9DE600FCC10%40DB4PR07MB0704.eurprd07.prod.outlook.com.
Amit,
Sorry I missed this question.
As mentioned before in on one of the threads, the entities listed in red oval (in the below picture) need to be supported(at least the minimum set) for configuration of ONU slots and ports etc. This falls under Device Management which is a gap.
The AT&T POC-III requirements H3 as priority listed for the following requirement(as e.g.). This would need the ONU device management to manage ont-card and port(ethernet UNI). In the current code, since there is no support for this, the ont-card and port numbers are inferred from the name of vEnet(temporary stop-gap work-around). Let me know if you have any further questions!
|
• Ethernet Interface (UNI) – link configuration (i.e. 1000BTFULLDPLX), link admin state (UP/DOWN) |
H |
H1 |

Thanks!
From: Amit Ghosh [mailto:ghos...@gmail.com]
Sent: Friday, June 16, 2017 9:14 AM
To: VOLTHA Discuss <voltha-...@opencord.org>
--
You received this message because you are subscribed to the Google Groups "VOLTHA Discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to
voltha-discus...@opencord.org.
To post to this group, send email to
voltha-...@opencord.org.
Visit this group at
https://groups.google.com/a/opencord.org/group/voltha-discuss/.
To view this discussion on the web visit https://groups.google.com/a/opencord.org/d/msgid/voltha-discuss/e90e19b5-125e-4200-9a69-7a39a5833c24%40opencord.org.