<module>-impl project code file generation
Hello Team,
I am using honeycomb 18.07 version. Trying to bring up Netconf server for my own yang model file.
I modified the “honeycomb/enodebsim/enodebsim-api/src/main/yang/enodebsim.yang” file with my yang content.
Then I did the following:
$cd honeycomb/
$ rm enodebsim/pom.xml enodebsim/enodebsim-api/pom.xml
$ vi pom.xml #removed the enodebsim from Module list
$ mvn -X archetype:generate -DarchetypeGroupId=io.fd.honeycomb.tools -DarchetypeArtifactId=honeycomb-plugin-archetype -DarchetypeVersion=1.18.10-SNAPSHOT -DinteractiveMode=false -DgroupId=org.onap.ransim -DartifactId=enodebsim -Dversion=1.0.0-SNAPSHOT -Dpackage=org.onap.ransim
$cd honeycomb/enodebsim/
$mvn clean install
This generated the java files for my new yang model. However the code generated in “honeycomb/enodebsim/enodebsim-impl” is not referring my new yang model. It still uses the old sample yang model.
Will the generate netconf agent automatically includes new yang model into capabilities?
Pls let me know if I missed any steps. If you can share the link/doc explaining what needs to be done for custom yang model simulation?
Regards,
Saran
generating netconf agent based on custom model is not supported.
But feel free to create jira ticket if you are interested in the feature.
Contributions to design/implementation are welcomed!
Currently Honeycomb plugin archetype generates maven project structure,
code and documentation
only for the sample model (parametrized by root artifact id):
https://git.fd.io/honeycomb/tree/tools/archetype/src/main/resources/archetype-resources/__rootArtifactId__-api/src/main/yang/__rootArtifactId__.yang
Here is relevant patch where you can find more info:
https://gerrit.fd.io/r/#/c/2429/
You can find more examples in:
https://docs.fd.io/honeycomb/1.18.10-SNAPSHOT/release-notes-aggregator/release_notes.html#_devel_guide
https://git.fd.io/honeycomb/tree/samples
Please also take a look at https://wiki.fd.io/view/Hc2vpp
which is Honeycomb agent for VPP.
Regards,
Marek
śr., 29 sie 2018 o 05:16 saravanan.a75@...
<saravanan.a75@...> napisał(a):
Hello Team,
I am using honeycomb 18.07 version. Trying to bring up Netconf server for my own yang model file.
I modified the “honeycomb/enodebsim/enodebsim-api/src/main/yang/enodebsim.yang” file with my yang content.
Then I did the following:
$cd honeycomb/
$ rm enodebsim/pom.xml enodebsim/enodebsim-api/pom.xml
$ vi pom.xml #removed the enodebsim from Module list
$ mvn -X archetype:generate -DarchetypeGroupId=io.fd.honeycomb.tools -DarchetypeArtifactId=honeycomb-plugin-archetype -DarchetypeVersion=1.18.10-SNAPSHOT -DinteractiveMode=false -DgroupId=org.onap.ransim -DartifactId=enodebsim -Dversion=1.0.0-SNAPSHOT -Dpackage=org.onap.ransim
$cd honeycomb/enodebsim/
$mvn clean install
This generated the java files for my new yang model. However the code generated in “honeycomb/enodebsim/enodebsim-impl” is not referring my new yang model. It still uses the old sample yang model.
Will the generate netconf agent automatically includes new yang model into capabilities?
Pls let me know if I missed any steps. If you can share the link/doc explaining what needs to be done for custom yang model simulation?
Regards,
Saran
Sensitivity: Internal & Restricted
The information contained in this electronic message and any attachments to this message are intended for the exclusive use of the addressee(s) and may contain proprietary, confidential or privileged information. If you are not the intended recipient, you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately and destroy all copies of this message and any attachments. WARNING: Computer viruses can be transmitted via email. The recipient should check this email and any attachments for the presence of viruses. The company accepts no liability for any damage caused by any virus transmitted by this email. www.wipro.com
-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#816): https://lists.fd.io/g/honeycomb-dev/message/816
Mute This Topic: https://lists.fd.io/mt/25070762/675181
Group Owner: honeycomb-dev+owner@...
Unsubscribe: https://lists.fd.io/g/honeycomb-dev/unsub [margradz@...]
-=-=-=-=-=-=-=-=-=-=-=-
I am implementing impl classes for my Yang model.
I have a yang model in which “list fap-service “ is present immediately in “module bbf-tr-196-2-0-3-full”.
module bbf-tr-196-2-0-3-full {
list fap-service {
...
}
}
Hope this is valid yang model, I see a problem in honeycomb implementation for " final class FapServiceCrudService implements CrudService<FapService>".
@Override
public List<FapService> readAll() throws ReadFailedException {
LOG.info("RANSIM FapServiceCrudService readAll called");
// read all data under parent node,in this case {@link ModuleState}
return Collections.singletonList(
readSpecific(InstanceIdentifier.create(FapServices.class).child(FapService.class, new FapServiceKey("FapNode1"))));
}
}
What I should specify in the parent node class? If I have a top level container with name " fap-services " than, above code works. If we don't have such container what I should give as parent class?
Is honeycomb expect top level container always like below?
module bbf-tr-196-2-0-3-full {
container fap-services {
list fap-service {
...
}
}
}
Regards,
Saran
Sensitivity: Internal & Restricted
From: Marek Grądzki [mailto:margradz@...]
Sent: Friday, August 31, 2018 11:55 AM
To: Saravanan A (Communications-Telecom Equipment) <saravanan.a75@...>
Cc: honeycomb-dev@...
Subject: Re: [honeycomb-dev] <module>-impl project code file generation
** This mail has been sent from an external source. Treat hyperlinks and attachments in this email with caution**
Hello Saran,
generating netconf agent based on custom model is not supported.
But feel free to create jira ticket if you are interested in the feature.
Contributions to design/implementation are welcomed!
Currently Honeycomb plugin archetype generates maven project structure, code and documentation only for the sample model (parametrized by root artifact id):
https://git.fd.io/honeycomb/tree/tools/archetype/src/main/resources/archetype-resources/__rootArtifactId__-api/src/main/yang/__rootArtifactId__.yang
Here is relevant patch where you can find more info:
https://gerrit.fd.io/r/#/c/2429/
You can find more examples in:
https://docs.fd.io/honeycomb/1.18.10-SNAPSHOT/release-notes-aggregator/release_notes.html#_devel_guide
https://git.fd.io/honeycomb/tree/samples
Please also take a look at https://wiki.fd.io/view/Hc2vpp which is Honeycomb agent for VPP.
Regards,
Marek
śr., 29 sie 2018 o 05:16 saravanan.a75@... <saravanan.a75@...> napisał(a):
The information contained in this electronic message and any attachments to this message are intended for the exclusive use of the addressee(s) and may contain proprietary, confidential or privileged information. If you are not the intended recipient, you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately and destroy all copies of this message and any attachments. WARNING: Computer viruses can be transmitted via email. The recipient should check this email and any attachments for the presence of viruses. The company accepts no liability for any damage caused by any virus transmitted by this email. www.wipro.com
Hello Team,
I am using honeycomb 18.07 version. Trying to bring up Netconf server for my own yang model file.
I modified the “honeycomb/enodebsim/enodebsim-api/src/main/yang/enodebsim.yang” file with my yang content.
Then I did the following:
$cd honeycomb/
$ rm enodebsim/pom.xml enodebsim/enodebsim-api/pom.xml
$ vi pom.xml #removed the enodebsim from Module list
$ mvn -X archetype:generate
-DarchetypeGroupId=io.fd.honeycomb.tools
-DarchetypeArtifactId=honeycomb-plugin-archetype
-DarchetypeVersion=1.18.10-SNAPSHOT -DinteractiveMode=false
-DgroupId=org.onap.ransim -DartifactId=enodebsim
-Dversion=1.0.0-SNAPSHOT -Dpackage=org.onap.ransim
$cd honeycomb/enodebsim/
$mvn clean install
This generated the java files for my new yang model. However the code generated in “honeycomb/enodebsim/enodebsim-impl” is not referring my new yang model. It still uses the old sample yang model.
Will the generate netconf agent automatically includes new yang model into capabilities?
Pls let me know if I missed any steps. If you can share the link/doc explaining what needs to be done for custom yang model simulation?
Regards,
Saran
Sensitivity: Internal & Restricted
The information contained in this electronic message and any
attachments to this message are intended for the exclusive use of the
addressee(s) and may contain proprietary, confidential or privileged
information. If you are not the intended recipient, you should not
disseminate, distribute or copy this e-mail. Please notify the sender
immediately and destroy all copies of this message and any
attachments. WARNING: Computer viruses can be transmitted via email.
The recipient should check this email and any attachments for the
presence of viruses. The company accepts no liability for any damage
caused by any virus transmitted by this email. www.wipro.com
-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#816):
https://lists.fd.io/g/honeycomb-dev/message/816
Mute This Topic: https://lists.fd.io/mt/25070762/675181
Group Owner: honeycomb-dev+owner@...
Unsubscribe: https://lists.fd.io/g/honeycomb-dev/unsub
[margradz@...]
-=-=-=-=-=-=-=-=-=-=-=-
niedz., 9 wrz 2018 o 23:12 Marek Grądzki <margradz@...> napisał(a):
Saran,
the model looks valid.
I don't remember if I ever used top level list.
The ietf models used in hc2vpp have top level container defined.
Not sure if InstanceIdentifier provides methods suitable for your usecase,
but you might try to use KeyedInstanceIdentifier.builder.
InstanceIdentifer and KeyedInstanceIdentifier are concepts
from ODL Yangtools (https://wiki.opendaylight.org/view/YANG_Tools:Main)
Regards,
Marekśr., 5 wrz 2018 o 11:31 saravanan.a75@...
<saravanan.a75@...> napisał(a):
Hello Merek,
I am implementing impl classes for my Yang model.
I have a yang model in which “list fap-service “ is present immediately in “module bbf-tr-196-2-0-3-full”.
module bbf-tr-196-2-0-3-full {
list fap-service {
...
}
}
Hope this is valid yang model, I see a problem in honeycomb implementation for " final class FapServiceCrudService implements CrudService<FapService>".
@Override
public List<FapService> readAll() throws ReadFailedException {
LOG.info("RANSIM FapServiceCrudService readAll called");
// read all data under parent node,in this case {@link ModuleState}
return Collections.singletonList(
readSpecific(InstanceIdentifier.create(FapServices.class).child(FapService.class, new FapServiceKey("FapNode1"))));
}
}
What I should specify in the parent node class? If I have a top level container with name " fap-services " than, above code works. If we don't have such container what I should give as parent class?
Is honeycomb expect top level container always like below?
module bbf-tr-196-2-0-3-full {
container fap-services {
list fap-service {
...
}
}
}
Regards,
Saran
Sensitivity: Internal & Restricted
-----Original Message-----
From: Marek Grądzki [mailto:margradz@...]
Sent: Friday, August 31, 2018 11:55 AM
To: Saravanan A (Communications-Telecom Equipment) <saravanan.a75@...>
Cc: honeycomb-dev@...
Subject: Re: [honeycomb-dev] <module>-impl project code file generation
** This mail has been sent from an external source. Treat hyperlinks and attachments in this email with caution**
Hello Saran,
generating netconf agent based on custom model is not supported.
But feel free to create jira ticket if you are interested in the feature.
Contributions to design/implementation are welcomed!
Currently Honeycomb plugin archetype generates maven project structure, code and documentation only for the sample model (parametrized by root artifact id):
https://git.fd.io/honeycomb/tree/tools/archetype/src/main/resources/archetype-resources/__rootArtifactId__-api/src/main/yang/__rootArtifactId__.yang
Here is relevant patch where you can find more info:
https://gerrit.fd.io/r/#/c/2429/
You can find more examples in:
https://docs.fd.io/honeycomb/1.18.10-SNAPSHOT/release-notes-aggregator/release_notes.html#_devel_guide
https://git.fd.io/honeycomb/tree/samples
Please also take a look at https://wiki.fd.io/view/Hc2vpp which is Honeycomb agent for VPP.
Regards,
Marek
śr., 29 sie 2018 o 05:16 saravanan.a75@... <saravanan.a75@...> napisał(a):The information contained in this electronic message and any attachments to this message are intended for the exclusive use of the addressee(s) and may contain proprietary, confidential or privileged information. If you are not the intended recipient, you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately and destroy all copies of this message and any attachments. WARNING: Computer viruses can be transmitted via email. The recipient should check this email and any attachments for the presence of viruses. The company accepts no liability for any damage caused by any virus transmitted by this email. www.wipro.com
Hello Team,
I am using honeycomb 18.07 version. Trying to bring up Netconf server for my own yang model file.
I modified the “honeycomb/enodebsim/enodebsim-api/src/main/yang/enodebsim.yang” file with my yang content.
Then I did the following:
$cd honeycomb/
$ rm enodebsim/pom.xml enodebsim/enodebsim-api/pom.xml
$ vi pom.xml #removed the enodebsim from Module list
$ mvn -X archetype:generate
-DarchetypeGroupId=io.fd.honeycomb.tools
-DarchetypeArtifactId=honeycomb-plugin-archetype
-DarchetypeVersion=1.18.10-SNAPSHOT -DinteractiveMode=false
-DgroupId=org.onap.ransim -DartifactId=enodebsim
-Dversion=1.0.0-SNAPSHOT -Dpackage=org.onap.ransim
$cd honeycomb/enodebsim/
$mvn clean install
This generated the java files for my new yang model. However the code generated in “honeycomb/enodebsim/enodebsim-impl” is not referring my new yang model. It still uses the old sample yang model.
Will the generate netconf agent automatically includes new yang model into capabilities?
Pls let me know if I missed any steps. If you can share the link/doc explaining what needs to be done for custom yang model simulation?
Regards,
Saran
Sensitivity: Internal & Restricted
The information contained in this electronic message and any
attachments to this message are intended for the exclusive use of the
addressee(s) and may contain proprietary, confidential or privileged
information. If you are not the intended recipient, you should not
disseminate, distribute or copy this e-mail. Please notify the sender
immediately and destroy all copies of this message and any
attachments. WARNING: Computer viruses can be transmitted via email.
The recipient should check this email and any attachments for the
presence of viruses. The company accepts no liability for any damage
caused by any virus transmitted by this email. www.wipro.com
-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#816):
https://lists.fd.io/g/honeycomb-dev/message/816
Mute This Topic: https://lists.fd.io/mt/25070762/675181
Group Owner: honeycomb-dev+owner@...
Unsubscribe: https://lists.fd.io/g/honeycomb-dev/unsub
[margradz@...]
-=-=-=-=-=-=-=-=-=-=-=-
I could implement honeycomb agent and test basic operations.
However I have few pending tasks/issues.
1. When I run get-config command, the control is not coming to any of the implemented classes. Only for 'get' command, the control is coming to implemented classes. Is it possible to get control for get-config operation?
2. If I want to edit the device configuration from backend, how to do it? I am seeing 2 options:
a) I modified the config/data.json file and tried reloading it. Is this doable and better way? Is there any sample/example implementation available?
For e.g., as per https://wiki.fd.io/view/Honeycomb/Persistence link, it says "It is necessary to store the configuration in human readable format to enable users to perform manual edits e.g. XML or JSON.". After the config data tree file is edited, how to restore it in honeycomb agent without restarting agent.
b) Another way is that I can send the device configuration through netconf session and commit. Can I do this from the honeycomb agent itself? Is there any sample/example implementation available?
If you can point me on how to proceed, it will be great help.
Regards,
Saran
Sensitivity: Internal & Restricted
From: Marek Grądzki [mailto:margradz@...]
Sent: Monday, September 10, 2018 2:43 AM
To: Saravanan A (Communications-Telecom Equipment) <saravanan.a75@...>; honeycomb-dev@...
Subject: Re: [honeycomb-dev] <module>-impl project code file generation
** This mail has been sent from an external source. Treat hyperlinks and attachments in this email with caution**
+ honeycomb-dev@...
niedz., 9 wrz 2018 o 23:12 Marek Grądzki <margradz@...> napisał(a):
The information contained in this electronic message and any attachments to this message are intended for the exclusive use of the addressee(s) and may contain proprietary, confidential or privileged information. If you are not the intended recipient, you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately and destroy all copies of this message and any attachments. WARNING: Computer viruses can be transmitted via email. The recipient should check this email and any attachments for the presence of viruses. The company accepts no liability for any damage caused by any virus transmitted by this email. www.wipro.com
Saran,
the model looks valid.
I don't remember if I ever used top level list.
The ietf models used in hc2vpp have top level container defined.
Not sure if InstanceIdentifier provides methods suitable for your
usecase, but you might try to use KeyedInstanceIdentifier.builder.
InstanceIdentifer and KeyedInstanceIdentifier are concepts from ODL
Yangtools (https://wiki.opendaylight.org/view/YANG_Tools:Main)
Regards,
Marekśr., 5 wrz 2018 o 11:31 saravanan.a75@...
<saravanan.a75@...> napisał(a):
Hello Merek,
I am implementing impl classes for my Yang model.
I have a yang model in which “list fap-service “ is present immediately in “module bbf-tr-196-2-0-3-full”.
module bbf-tr-196-2-0-3-full {
list fap-service {
...
}
}
Hope this is valid yang model, I see a problem in honeycomb implementation for " final class FapServiceCrudService implements CrudService<FapService>".
@Override
public List<FapService> readAll() throws ReadFailedException {
LOG.info("RANSIM FapServiceCrudService readAll called");
// read all data under parent node,in this case {@link ModuleState}
return Collections.singletonList(
readSpecific(InstanceIdentifier.create(FapServices.class).child(FapService.class, new FapServiceKey("FapNode1"))));
}
}
What I should specify in the parent node class? If I have a top level container with name " fap-services " than, above code works. If we don't have such container what I should give as parent class?
Is honeycomb expect top level container always like below?
module bbf-tr-196-2-0-3-full {
container fap-services {
list fap-service {
...
}
}
}
Regards,
Saran
Sensitivity: Internal & Restricted
-----Original Message-----
From: Marek Grądzki [mailto:margradz@...]
Sent: Friday, August 31, 2018 11:55 AM
To: Saravanan A (Communications-Telecom Equipment)
<saravanan.a75@...>
Cc: honeycomb-dev@...
Subject: Re: [honeycomb-dev] <module>-impl project code file
generation
** This mail has been sent from an external source. Treat hyperlinks
and attachments in this email with caution**
Hello Saran,
generating netconf agent based on custom model is not supported.
But feel free to create jira ticket if you are interested in the feature.
Contributions to design/implementation are welcomed!
Currently Honeycomb plugin archetype generates maven project structure, code and documentation only for the sample model (parametrized by root artifact id):
https://git.fd.io/honeycomb/tree/tools/archetype/src/main/resources/
archetype-resources/__rootArtifactId__-api/src/main/yang/__rootArtif
actId__.yang
Here is relevant patch where you can find more info:
https://gerrit.fd.io/r/#/c/2429/
You can find more examples in:
https://docs.fd.io/honeycomb/1.18.10-SNAPSHOT/release-notes-aggregat
or/release_notes.html#_devel_guide
https://git.fd.io/honeycomb/tree/samples
Please also take a look at https://wiki.fd.io/view/Hc2vpp which is Honeycomb agent for VPP.
Regards,
Marek
śr., 29 sie 2018 o 05:16 saravanan.a75@... <saravanan.a75@...> napisał(a):The information contained in this electronic message and any
Hello Team,
I am using honeycomb 18.07 version. Trying to bring up Netconf server for my own yang model file.
I modified the “honeycomb/enodebsim/enodebsim-api/src/main/yang/enodebsim.yang” file with my yang content.
Then I did the following:
$cd honeycomb/
$ rm enodebsim/pom.xml enodebsim/enodebsim-api/pom.xml
$ vi pom.xml #removed the enodebsim from Module list
$ mvn -X archetype:generate
-DarchetypeGroupId=io.fd.honeycomb.tools
-DarchetypeArtifactId=honeycomb-plugin-archetype
-DarchetypeVersion=1.18.10-SNAPSHOT -DinteractiveMode=false
-DgroupId=org.onap.ransim -DartifactId=enodebsim
-Dversion=1.0.0-SNAPSHOT -Dpackage=org.onap.ransim
$cd honeycomb/enodebsim/
$mvn clean install
This generated the java files for my new yang model. However the code generated in “honeycomb/enodebsim/enodebsim-impl” is not referring my new yang model. It still uses the old sample yang model.
Will the generate netconf agent automatically includes new yang model into capabilities?
Pls let me know if I missed any steps. If you can share the link/doc explaining what needs to be done for custom yang model simulation?
Regards,
Saran
Sensitivity: Internal & Restricted
The information contained in this electronic message and any
attachments to this message are intended for the exclusive use of
the
addressee(s) and may contain proprietary, confidential or
privileged information. If you are not the intended recipient, you
should not disseminate, distribute or copy this e-mail. Please
notify the sender immediately and destroy all copies of this
message and any attachments. WARNING: Computer viruses can be transmitted via email.
The recipient should check this email and any attachments for the
presence of viruses. The company accepts no liability for any
damage caused by any virus transmitted by this email.
www.wipro.com
-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#816):
https://lists.fd.io/g/honeycomb-dev/message/816
Mute This Topic: https://lists.fd.io/mt/25070762/675181
Group Owner: honeycomb-dev+owner@...
Unsubscribe: https://lists.fd.io/g/honeycomb-dev/unsub
[margradz@...]
-=-=-=-=-=-=-=-=-=-=-=-
attachments to this message are intended for the exclusive use of
the addressee(s) and may contain proprietary, confidential or
privileged information. If you are not the intended recipient, you
should not disseminate, distribute or copy this e-mail. Please
notify the sender immediately and destroy all copies of this message
and any attachments. WARNING: Computer viruses can be transmitted
via email. The recipient should check this email and any attachments
for the presence of viruses. The company accepts no liability for
any damage caused by any virus transmitted by this email.
www.wipro.com
1. Get-config should be reading data from internal honeycomb datastore (configuration datastore), that is why the translation classes are not called. Only Get actually reads data from the device and calls the translation classes (operational datastore).
2. Yes there are several options to edit the configuration of the device:
a) config/data.json can be used for this, but its primary function is to store configured data in the event of failures and honeycomb restart.
b) Configuring the device via netconf is common way of configuring devices, you can send the configuration and it will be stored in internal configuration datastore in honeycomb, you should be then able to get this configuration data using get-config as you mentioned earlier
c) Configuration using Restconf, is often easy and very fast way to write or read data from device. It is very simple and if you take a look at HC2VPP project (honeycomb agent for VPP) there are a lot of postman collections that you can use to test how this is done (https://gerrit.fd.io/r/#/admin/projects/hc2vpp). There are some demos and other examples in hc2vpp/examples, even for netconf using ncclient.
There is also a developer guide in our documentation for HC2VPP which can clear a lot of questions for you. Take a look here: https://docs.fd.io/hc2vpp/1.18.07/hc2vpp-parent/release-notes-aggregator/release_notes.html#_devel_guide There is a section about developing sample plugin for HC2vpp to write and read simple configuration based on a simple yang model for a VPP device.
I think you are working on a very similar agent to HC2VPP just for other type of device, so you should find a lot of stuff that you need there.
Michal Cmarada
Engineer - Software
mcmarada@...
Tel:
Cisco Systems, Inc.
Slovakia
cisco.com
Think before you print.
This email may contain confidential and privileged material for the sole use of the intended recipient. Any review, use, distribution or disclosure by others is strictly prohibited. If you are not the intended recipient (or authorized to receive for the recipient), please contact the sender by reply email and delete all copies of this message.
http://www.cisco.com/c/en/us/about/legal/terms-sale-software-license-agreement/company-registration-information.html
From: honeycomb-dev@... <honeycomb-dev@...> On Behalf Of saravanan.a75@...
Sent: Thursday, November 8, 2018 1:51 PM
To: Marek Grądzki <margradz@...>; honeycomb-dev@...
Subject: Re: [honeycomb-dev] <module>-impl project code file generation
Hello Team,
I could implement honeycomb agent and test basic operations.
However I have few pending tasks/issues.
1. When I run get-config command, the control is not coming to any of the implemented classes. Only for 'get' command, the control is coming to implemented classes. Is it possible to get control for get-config operation?
2. If I want to edit the device configuration from backend, how to do it? I am seeing 2 options:
a) I modified the config/data.json file and tried reloading it. Is this doable and better way? Is there any sample/example implementation available?
For e.g., as per https://wiki.fd.io/view/Honeycomb/Persistence link, it says "It is necessary to store the configuration in human readable format to enable users to perform manual edits e.g. XML or JSON.". After the config data tree file is edited, how to restore it in honeycomb agent without restarting agent.
b) Another way is that I can send the device configuration through netconf session and commit. Can I do this from the honeycomb agent itself? Is there any sample/example implementation available?
If you can point me on how to proceed, it will be great help.
Regards,
Saran
Sensitivity: Internal & Restricted
-----Original Message-----
From: Marek Grądzki [mailto:margradz@...]
Sent: Monday, September 10, 2018 2:43 AM
To: Saravanan A (Communications-Telecom Equipment) <saravanan.a75@...>; honeycomb-dev@...
Subject: Re: [honeycomb-dev] <module>-impl project code file generation
** This mail has been sent from an external source. Treat hyperlinks and attachments in this email with caution**
+ honeycomb-dev@...
niedz., 9 wrz 2018 o 23:12 Marek Grądzki <margradz@...> napisał(a):
The information contained in this electronic message and any attachments to this message are intended for the exclusive use of the addressee(s) and may contain proprietary, confidential or privileged information. If you are not the intended recipient, you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately and destroy all copies of this message and any attachments. WARNING: Computer viruses can be transmitted via email. The recipient should check this email and any attachments for the presence of viruses. The company accepts no liability for any damage caused by any virus transmitted by this email. www.wipro.com
Saran,
the model looks valid.
I don't remember if I ever used top level list.
The ietf models used in hc2vpp have top level container defined.
Not sure if InstanceIdentifier provides methods suitable for your
usecase, but you might try to use KeyedInstanceIdentifier.builder.
InstanceIdentifer and KeyedInstanceIdentifier are concepts from ODL
Yangtools (https://wiki.opendaylight.org/view/YANG_Tools:Main)
Regards,
Marekśr., 5 wrz 2018 o 11:31 saravanan.a75@...
<saravanan.a75@...> napisał(a):
Hello Merek,
I am implementing impl classes for my Yang model.
I have a yang model in which “list fap-service “ is present immediately in “module bbf-tr-196-2-0-3-full”.
module bbf-tr-196-2-0-3-full {
list fap-service {
...
}
}
Hope this is valid yang model, I see a problem in honeycomb implementation for " final class FapServiceCrudService implements CrudService<FapService>".
@Override
public List<FapService> readAll() throws ReadFailedException {
LOG.info("RANSIM FapServiceCrudService readAll called");
// read all data under parent node,in this case {@link ModuleState}
return Collections.singletonList(
readSpecific(InstanceIdentifier.create(FapServices.class).child(FapService.class, new FapServiceKey("FapNode1"))));
}
}
What I should specify in the parent node class? If I have a top level container with name " fap-services " than, above code works. If we don't have such container what I should give as parent class?
Is honeycomb expect top level container always like below?
module bbf-tr-196-2-0-3-full {
container fap-services {
list fap-service {
...
}
}
}
Regards,
Saran
Sensitivity: Internal & Restricted
-----Original Message-----
From: Marek Grądzki [mailto:margradz@...]
Sent: Friday, August 31, 2018 11:55 AM
To: Saravanan A (Communications-Telecom Equipment)
<saravanan.a75@...>
Cc: honeycomb-dev@...
Subject: Re: [honeycomb-dev] <module>-impl project code file
generation
** This mail has been sent from an external source. Treat hyperlinks
and attachments in this email with caution**
Hello Saran,
generating netconf agent based on custom model is not supported.
But feel free to create jira ticket if you are interested in the feature.
Contributions to design/implementation are welcomed!
Currently Honeycomb plugin archetype generates maven project structure, code and documentation only for the sample model (parametrized by root artifact id):
https://git.fd.io/honeycomb/tree/tools/archetype/src/main/resources/
archetype-resources/__rootArtifactId__-api/src/main/yang/__rootArtif
actId__.yang
Here is relevant patch where you can find more info:
https://gerrit.fd.io/r/#/c/2429/
You can find more examples in:
https://docs.fd.io/honeycomb/1.18.10-SNAPSHOT/release-notes-aggregat
or/release_notes.html#_devel_guide
https://git.fd.io/honeycomb/tree/samples
Please also take a look at https://wiki.fd.io/view/Hc2vpp which is Honeycomb agent for VPP.
Regards,
Marek
śr., 29 sie 2018 o 05:16 saravanan.a75@... <saravanan.a75@...> napisał(a):The information contained in this electronic message and any
Hello Team,
I am using honeycomb 18.07 version. Trying to bring up Netconf server for my own yang model file.
I modified the “honeycomb/enodebsim/enodebsim-api/src/main/yang/enodebsim.yang” file with my yang content.
Then I did the following:
$cd honeycomb/
$ rm enodebsim/pom.xml enodebsim/enodebsim-api/pom.xml
$ vi pom.xml #removed the enodebsim from Module list
$ mvn -X archetype:generate
-DarchetypeGroupId=io.fd.honeycomb.tools
-DarchetypeArtifactId=honeycomb-plugin-archetype
-DarchetypeVersion=1.18.10-SNAPSHOT -DinteractiveMode=false
-DgroupId=org.onap.ransim -DartifactId=enodebsim
-Dversion=1.0.0-SNAPSHOT -Dpackage=org.onap.ransim
$cd honeycomb/enodebsim/
$mvn clean install
This generated the java files for my new yang model. However the code generated in “honeycomb/enodebsim/enodebsim-impl” is not referring my new yang model. It still uses the old sample yang model.
Will the generate netconf agent automatically includes new yang model into capabilities?
Pls let me know if I missed any steps. If you can share the link/doc explaining what needs to be done for custom yang model simulation?
Regards,
Saran
Sensitivity: Internal & Restricted
The information contained in this electronic message and any
attachments to this message are intended for the exclusive use of
the
addressee(s) and may contain proprietary, confidential or
privileged information. If you are not the intended recipient, you
should not disseminate, distribute or copy this e-mail. Please
notify the sender immediately and destroy all copies of this
message and any attachments. WARNING: Computer viruses can be transmitted via email.
The recipient should check this email and any attachments for the
presence of viruses. The company accepts no liability for any
damage caused by any virus transmitted by this email.
www.wipro.com
-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#816):
https://lists.fd.io/g/honeycomb-dev/message/816
Mute This Topic: https://lists.fd.io/mt/25070762/675181
Group Owner: honeycomb-dev+owner@...
Unsubscribe: https://lists.fd.io/g/honeycomb-dev/unsub
[margradz@...]
-=-=-=-=-=-=-=-=-=-=-=-
attachments to this message are intended for the exclusive use of
the addressee(s) and may contain proprietary, confidential or
privileged information. If you are not the intended recipient, you
should not disseminate, distribute or copy this e-mail. Please
notify the sender immediately and destroy all copies of this message
and any attachments. WARNING: Computer viruses can be transmitted
via email. The recipient should check this email and any attachments
for the presence of viruses. The company accepts no liability for
any damage caused by any virus transmitted by this email.
www.wipro.com
Thanks for your support so far.
I have developed the honeycomb agent. I am interested only in netconf ssh and I want to run multiple instances in same server.
So I changed netconf ssh port to 50001, 50002 , and so on. I have separate folder structure for each instance like hc_50001/, hc_50002/, etc.
When I start 5 instances, 2 of them are starting immediately. The other 3 instances are waiting for 5 or sometimes 10 minutes to come up fully.
When I checked the log, they are stuck after printing following log lines. Can you pls let me know how to resolve this issue? If kernel or honeycomb settings need to be tweaked, pls guide me.
~/Netconf-HC-Agents$ tail -f hc_50003/var/log/honeycomb/honeycomb.log
2018-11-26 14:07:16.001 UTC [main] INFO i.f.h.binding.init.ProviderTrait - Providing: io.fd.honeycomb.northbound.netconf.HoneycombNotification2NetconfProvider@29f38091
2018-11-26 14:07:16.015 UTC [main] INFO i.f.h.n.n.HoneycombNotification2NetconfProvider - Exposing HONEYCOMB_NETCONF notification stream: honeycomb
2018-11-26 14:07:16.015 UTC [pool-10-thread-3] INFO o.o.r.NbrListChangeNotifnSender - Starting notification stream for interfaces
2018-11-26 14:07:16.016 UTC [main] INFO i.f.h.binding.init.ProviderTrait - Providing: io.fd.honeycomb.northbound.netconf.NettyThreadGroupProvider@106b014e
2018-11-26 14:07:16.318 UTC [main] INFO i.f.h.binding.init.ProviderTrait - Providing: io.fd.honeycomb.northbound.netconf.NetconfServerDispatcherProvider@79eeff87
2018-11-26 14:07:16.378 UTC [main] INFO i.f.h.binding.init.ProviderTrait - Providing: io.fd.honeycomb.northbound.netconf.NetconfTcpServerProvider@2668c286
2018-11-26 14:07:16.379 UTC [main] INFO i.f.h.binding.init.ProviderTrait - Providing: io.fd.honeycomb.northbound.netconf.NetconfSshServerProvider@2abc8034
2018-11-26 14:07:16.379 UTC [main] INFO i.f.h.n.n.NetconfSshServerProvider - Starting NETCONF SSH
2018-11-26 14:07:17.276 UTC [main] WARN io.netty.bootstrap.ServerBootstrap - Unknown channel option 'SO_BACKLOG' for channel '[id: 0x5be1dfe9]'
2018-11-26 14:07:18.620 UTC [main] INFO o.a.s.c.u.s.b.BouncyCastleSecurityProviderRegistrar - getOrCreateProvider(BC) created instance of org.bouncycastle.jce.provider.BouncyCastleProvider
I am using below Ubuntu version:
$ uname -a
Linux sb4-honeycomb-sim 4.4.0-139-generic #165-Ubuntu SMP Wed Oct 24 10:58:50 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
Regards,
Saran
Sensitivity: Internal & Restricted
From: Michal Cmarada -X (mcmarada - PANTHEON TECHNOLOGIES at Cisco) [mailto:mcmarada@...]
Sent: Thursday, November 8, 2018 9:06 PM
To: Saravanan A (TECH) <saravanan.a75@...>; Marek Grądzki <margradz@...>; honeycomb-dev@...
Subject: RE: [honeycomb-dev] <module>-impl project code file generation
** This mail has been sent from an external source **
Hi,
1. Get-config should be reading data from internal honeycomb datastore (configuration datastore), that is why the translation classes are not called. Only Get actually reads data from the device and calls the translation classes (operational datastore).
2. Yes there are several options to edit the configuration of the device:
a) config/data.json can be used for this, but its primary function is to store configured data in the event of failures and honeycomb restart.
b) Configuring the device via netconf is common way of configuring devices, you can send the configuration and it will be stored in internal configuration datastore in honeycomb, you should be then able to get this configuration data using get-config as you mentioned earlier
c) Configuration using Restconf, is often easy and very fast way to write or read data from device. It is very simple and if you take a look at HC2VPP project (honeycomb agent for VPP) there are a lot of postman collections that you can use to test how this is done (https://gerrit.fd.io/r/#/admin/projects/hc2vpp). There are some demos and other examples in hc2vpp/examples, even for netconf using ncclient.
There is also a developer guide in our documentation for HC2VPP which can clear a lot of questions for you. Take a look here: https://docs.fd.io/hc2vpp/1.18.07/hc2vpp-parent/release-notes-aggregator/release_notes.html#_devel_guide There is a section about developing sample plugin for HC2vpp to write and read simple configuration based on a simple yang model for a VPP device.
I think you are working on a very similar agent to HC2VPP just for other type of device, so you should find a lot of stuff that you need there.
Michal Cmarada
Engineer - Software
mcmarada@...
Tel:
Cisco Systems, Inc.
Slovakia
cisco.com
Think before you print.
This email may contain confidential and privileged material for the sole use of the intended recipient. Any review, use, distribution or disclosure by others is strictly prohibited. If you are not the intended recipient (or authorized to receive for the recipient), please contact the sender by reply email and delete all copies of this message.
http://www.cisco.com/c/en/us/about/legal/terms-sale-software-license-agreement/company-registration-information.html
-----Original Message-----
From: honeycomb-dev@... <honeycomb-dev@...> On Behalf Of saravanan.a75@...
Sent: Thursday, November 8, 2018 1:51 PM
To: Marek Grądzki <margradz@...>; honeycomb-dev@...
Subject: Re: [honeycomb-dev] <module>-impl project code file generation
Hello Team,
I could implement honeycomb agent and test basic operations.
However I have few pending tasks/issues.
1. When I run get-config command, the control is not coming to any of the implemented classes. Only for 'get' command, the control is coming to implemented classes. Is it possible to get control for get-config operation?
2. If I want to edit the device configuration from backend, how to do it? I am seeing 2 options:
a) I modified the config/data.json file and tried reloading it. Is this doable and better way? Is there any sample/example implementation available?
For e.g., as per https://wiki.fd.io/view/Honeycomb/Persistence link, it says "It is necessary to store the configuration in human readable format to enable users to perform manual edits e.g. XML or JSON.". After the config data tree file is edited, how to restore it in honeycomb agent without restarting agent.
b) Another way is that I can send the device configuration through netconf session and commit. Can I do this from the honeycomb agent itself? Is there any sample/example implementation available?
If you can point me on how to proceed, it will be great help.
Regards,
Saran
Sensitivity: Internal & Restricted
-----Original Message-----
From: Marek Grądzki [mailto:margradz@...]
Sent: Monday, September 10, 2018 2:43 AM
To: Saravanan A (Communications-Telecom Equipment) <saravanan.a75@...>; honeycomb-dev@...
Subject: Re: [honeycomb-dev] <module>-impl project code file generation
** This mail has been sent from an external source. Treat hyperlinks and attachments in this email with caution**
+ honeycomb-dev@...
niedz., 9 wrz 2018 o 23:12 Marek Grądzki <margradz@...> napisał(a):
The information contained in this electronic message and any attachments to this message are intended for the exclusive use of the addressee(s) and may contain proprietary, confidential or privileged information. If you are not the intended recipient, you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately and destroy all copies of this message and any attachments. WARNING: Computer viruses can be transmitted via email. The recipient should check this email and any attachments for the presence of viruses. The company accepts no liability for any damage caused by any virus transmitted by this email. www.wipro.com
Saran,
the model looks valid.
I don't remember if I ever used top level list.
The ietf models used in hc2vpp have top level container defined.
Not sure if InstanceIdentifier provides methods suitable for your
usecase, but you might try to use KeyedInstanceIdentifier.builder.
InstanceIdentifer and KeyedInstanceIdentifier are concepts from ODL
Yangtools (https://wiki.opendaylight.org/view/YANG_Tools:Main)
Regards,
Marekśr., 5 wrz 2018 o 11:31 saravanan.a75@...
<saravanan.a75@...> napisał(a):
Hello Merek,
I am implementing impl classes for my Yang model.
I have a yang model in which “list fap-service “ is present immediately in “module bbf-tr-196-2-0-3-full”.
module bbf-tr-196-2-0-3-full {
list fap-service {
...
}
}
Hope this is valid yang model, I see a problem in honeycomb implementation for " final class FapServiceCrudService implements CrudService<FapService>".
@Override
public List<FapService> readAll() throws ReadFailedException {
LOG.info("RANSIM FapServiceCrudService readAll called");
// read all data under parent node,in this case {@link ModuleState}
return Collections.singletonList(
readSpecific(InstanceIdentifier.create(FapServices.class).child(FapService.class, new FapServiceKey("FapNode1"))));
}
}
What I should specify in the parent node class? If I have a top level container with name " fap-services " than, above code works. If we don't have such container what I should give as parent class?
Is honeycomb expect top level container always like below?
module bbf-tr-196-2-0-3-full {
container fap-services {
list fap-service {
...
}
}
}
Regards,
Saran
Sensitivity: Internal & Restricted
-----Original Message-----
From: Marek Grądzki [mailto:margradz@...]
Sent: Friday, August 31, 2018 11:55 AM
To: Saravanan A (Communications-Telecom Equipment)
<saravanan.a75@...>
Cc: honeycomb-dev@...
Subject: Re: [honeycomb-dev] <module>-impl project code file
generation
** This mail has been sent from an external source. Treat hyperlinks
and attachments in this email with caution**
Hello Saran,
generating netconf agent based on custom model is not supported.
But feel free to create jira ticket if you are interested in the feature.
Contributions to design/implementation are welcomed!
Currently Honeycomb plugin archetype generates maven project structure, code and documentation only for the sample model (parametrized by root artifact id):
https://git.fd.io/honeycomb/tree/tools/archetype/src/main/resources/
archetype-resources/__rootArtifactId__-api/src/main/yang/__rootArtif
actId__.yang
Here is relevant patch where you can find more info:
https://gerrit.fd.io/r/#/c/2429/
You can find more examples in:
https://docs.fd.io/honeycomb/1.18.10-SNAPSHOT/release-notes-aggregat
or/release_notes.html#_devel_guide
https://git.fd.io/honeycomb/tree/samples
Please also take a look at https://wiki.fd.io/view/Hc2vpp which is Honeycomb agent for VPP.
Regards,
Marek
śr., 29 sie 2018 o 05:16 saravanan.a75@... <saravanan.a75@...> napisał(a):The information contained in this electronic message and any
Hello Team,
I am using honeycomb 18.07 version. Trying to bring up Netconf server for my own yang model file.
I modified the “honeycomb/enodebsim/enodebsim-api/src/main/yang/enodebsim.yang” file with my yang content.
Then I did the following:
$cd honeycomb/
$ rm enodebsim/pom.xml enodebsim/enodebsim-api/pom.xml
$ vi pom.xml #removed the enodebsim from Module list
$ mvn -X archetype:generate
-DarchetypeGroupId=io.fd.honeycomb.tools
-DarchetypeArtifactId=honeycomb-plugin-archetype
-DarchetypeVersion=1.18.10-SNAPSHOT -DinteractiveMode=false
-DgroupId=org.onap.ransim -DartifactId=enodebsim
-Dversion=1.0.0-SNAPSHOT -Dpackage=org.onap.ransim
$cd honeycomb/enodebsim/
$mvn clean install
This generated the java files for my new yang model. However the code generated in “honeycomb/enodebsim/enodebsim-impl” is not referring my new yang model. It still uses the old sample yang model.
Will the generate netconf agent automatically includes new yang model into capabilities?
Pls let me know if I missed any steps. If you can share the link/doc explaining what needs to be done for custom yang model simulation?
Regards,
Saran
Sensitivity: Internal & Restricted
The information contained in this electronic message and any
attachments to this message are intended for the exclusive use of
the
addressee(s) and may contain proprietary, confidential or
privileged information. If you are not the intended recipient, you
should not disseminate, distribute or copy this e-mail. Please
notify the sender immediately and destroy all copies of this
message and any attachments. WARNING: Computer viruses can be transmitted via email.
The recipient should check this email and any attachments for the
presence of viruses. The company accepts no liability for any
damage caused by any virus transmitted by this email.
www.wipro.com
-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#816):
https://lists.fd.io/g/honeycomb-dev/message/816
Mute This Topic: https://lists.fd.io/mt/25070762/675181
Group Owner: honeycomb-dev+owner@...
Unsubscribe: https://lists.fd.io/g/honeycomb-dev/unsub
[margradz@...]
-=-=-=-=-=-=-=-=-=-=-=-
attachments to this message are intended for the exclusive use of
the addressee(s) and may contain proprietary, confidential or
privileged information. If you are not the intended recipient, you
should not disseminate, distribute or copy this e-mail. Please
notify the sender immediately and destroy all copies of this message
and any attachments. WARNING: Computer viruses can be transmitted
via email. The recipient should check this email and any attachments
for the presence of viruses. The company accepts no liability for
any damage caused by any virus transmitted by this email.
www.wipro.com
The information contained in this electronic message and any attachments to this message are intended for the exclusive use of the addressee(s) and may contain proprietary, confidential or privileged information. If you are not the intended recipient, you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately and destroy all copies of this message and any attachments. WARNING: Computer viruses can be transmitted via email. The recipient should check this email and any attachments for the presence of viruses. The company accepts no liability for any damage caused by any virus transmitted by this email. www.wipro.com
I have increased log level, I could see below lines and after that server instances hangs:
2018-11-27 09:43:59.673 UTC [main] INFO i.f.h.n.n.NetconfSshServerProvider - Starting NETCONF SSH
2018-11-27 09:43:59.744 UTC [netconf-netty-0] INFO i.f.h.n.n.NetconfTcpServerProvider - Netconf TCP endpoint started successfully at /127.0.0.1:60001
2018-11-27 09:43:59.752 UTC [main] WARN io.netty.bootstrap.ServerBootstrap - Unknown channel option 'SO_BACKLOG' for channel '[id: 0xa55a593b]'
2018-11-27 09:43:59.839 UTC [main] DEBUG o.o.p.framework.AbstractDispatcher - Initiated server AbstractBootstrap$PendingRegistrationPromise@16134476(incomplete) at local:50001.
2018-11-27 09:44:01.611 UTC [main] INFO o.a.s.c.u.s.b.BouncyCastleSecurityProviderRegistrar - getOrCreateProvider(BC) created instance of org.bouncycastle.jce.provider.BouncyCastleProvider
2018-11-27 09:44:01.615 UTC [main] DEBUG o.a.s.c.util.security.SecurityUtils - register(EdDSA) not registered - enabled=true, supported=false
I see the same behavior even if I run the honeycomb in multiple docker containers.
Can you pls let me know how to resolve this issue? If kernel or honeycomb settings need to be tweaked, pls guide me.
Regards,
Saran
From: Saravanan A (TECH)
Sent: Monday, November 26, 2018 8:38 PM
To: 'Michal Cmarada -X (mcmarada - PANTHEON TECHNOLOGIES at Cisco)' <mcmarada@...>; Marek Grądzki <margradz@...>; honeycomb-dev@...
Subject: RE: [honeycomb-dev] <module>-impl project code file generation
Hello Team,
Thanks for your support so far.
I have developed the honeycomb agent. I am interested only in netconf ssh and I want to run multiple instances in same server.
So I changed netconf ssh port to 50001, 50002 , and so on. I have separate folder structure for each instance like hc_50001/, hc_50002/, etc.
When I start 5 instances, 2 of them are starting immediately. The other 3 instances are waiting for 5 or sometimes 10 minutes to come up fully.
When I checked the log, they are stuck after printing following log lines. Can you pls let me know how to resolve this issue? If kernel or honeycomb settings need to be tweaked, pls guide me.
~/Netconf-HC-Agents$ tail -f hc_50003/var/log/honeycomb/honeycomb.log
2018-11-26 14:07:16.001 UTC [main] INFO i.f.h.binding.init.ProviderTrait - Providing: io.fd.honeycomb.northbound.netconf.HoneycombNotification2NetconfProvider@29f38091
2018-11-26 14:07:16.015 UTC [main] INFO i.f.h.n.n.HoneycombNotification2NetconfProvider - Exposing HONEYCOMB_NETCONF notification stream: honeycomb
2018-11-26 14:07:16.015 UTC [pool-10-thread-3] INFO o.o.r.NbrListChangeNotifnSender - Starting notification stream for interfaces
2018-11-26 14:07:16.016 UTC [main] INFO i.f.h.binding.init.ProviderTrait - Providing: io.fd.honeycomb.northbound.netconf.NettyThreadGroupProvider@106b014e
2018-11-26 14:07:16.318 UTC [main] INFO i.f.h.binding.init.ProviderTrait - Providing: io.fd.honeycomb.northbound.netconf.NetconfServerDispatcherProvider@79eeff87
2018-11-26 14:07:16.378 UTC [main] INFO i.f.h.binding.init.ProviderTrait - Providing: io.fd.honeycomb.northbound.netconf.NetconfTcpServerProvider@2668c286
2018-11-26 14:07:16.379 UTC [main] INFO i.f.h.binding.init.ProviderTrait - Providing: io.fd.honeycomb.northbound.netconf.NetconfSshServerProvider@2abc8034
2018-11-26 14:07:16.379 UTC [main] INFO i.f.h.n.n.NetconfSshServerProvider - Starting NETCONF SSH
2018-11-26 14:07:17.276 UTC [main] WARN io.netty.bootstrap.ServerBootstrap - Unknown channel option 'SO_BACKLOG' for channel '[id: 0x5be1dfe9]'
2018-11-26 14:07:18.620 UTC [main] INFO o.a.s.c.u.s.b.BouncyCastleSecurityProviderRegistrar - getOrCreateProvider(BC) created instance of org.bouncycastle.jce.provider.BouncyCastleProvider
I am using below Ubuntu version:
$ uname -a
Linux sb4-honeycomb-sim 4.4.0-139-generic #165-Ubuntu SMP Wed Oct 24 10:58:50 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
Regards,
Saran
Sensitivity: Internal & Restricted
-----Original Message-----
From: Michal Cmarada -X (mcmarada - PANTHEON TECHNOLOGIES at Cisco) [mailto:mcmarada@...]
Sent: Thursday, November 8, 2018 9:06 PM
To: Saravanan A (TECH) <saravanan.a75@...>; Marek Grądzki <margradz@...>; honeycomb-dev@...
Subject: RE: [honeycomb-dev] <module>-impl project code file generation
** This mail has been sent from an external source **
Hi,
1. Get-config should be reading data from internal honeycomb datastore (configuration datastore), that is why the translation classes are not called. Only Get actually reads data from the device and calls the translation classes (operational datastore).
2. Yes there are several options to edit the configuration of the device:
a) config/data.json can be used for this, but its primary function is to store configured data in the event of failures and honeycomb restart.
b) Configuring the device via netconf is common way of configuring devices, you can send the configuration and it will be stored in internal configuration datastore in honeycomb, you should be then able to get this configuration data using get-config as you mentioned earlier
c) Configuration using Restconf, is often easy and very fast way to write or read data from device. It is very simple and if you take a look at HC2VPP project (honeycomb agent for VPP) there are a lot of postman collections that you can use to test how this is done (https://gerrit.fd.io/r/#/admin/projects/hc2vpp). There are some demos and other examples in hc2vpp/examples, even for netconf using ncclient.
There is also a developer guide in our documentation for HC2VPP which can clear a lot of questions for you. Take a look here: https://docs.fd.io/hc2vpp/1.18.07/hc2vpp-parent/release-notes-aggregator/release_notes.html#_devel_guide There is a section about developing sample plugin for HC2vpp to write and read simple configuration based on a simple yang model for a VPP device.
I think you are working on a very similar agent to HC2VPP just for other type of device, so you should find a lot of stuff that you need there.
Michal Cmarada
Engineer - Software
mcmarada@...
Tel:
Cisco Systems, Inc.
Slovakia
cisco.com
Think before you print.
This email may contain confidential and privileged material for the sole use of the intended recipient. Any review, use, distribution or disclosure by others is strictly prohibited. If you are not the intended recipient (or authorized to receive for the recipient), please contact the sender by reply email and delete all copies of this message.
http://www.cisco.com/c/en/us/about/legal/terms-sale-software-license-agreement/company-registration-information.html
-----Original Message-----
From: honeycomb-dev@... <honeycomb-dev@...> On Behalf Of saravanan.a75@...
Sent: Thursday, November 8, 2018 1:51 PM
To: Marek Grądzki <margradz@...>; honeycomb-dev@...
Subject: Re: [honeycomb-dev] <module>-impl project code file generation
Hello Team,
I could implement honeycomb agent and test basic operations.
However I have few pending tasks/issues.
1. When I run get-config command, the control is not coming to any of the implemented classes. Only for 'get' command, the control is coming to implemented classes. Is it possible to get control for get-config operation?
2. If I want to edit the device configuration from backend, how to do it? I am seeing 2 options:
a) I modified the config/data.json file and tried reloading it. Is this doable and better way? Is there any sample/example implementation available?
For e.g., as per https://wiki.fd.io/view/Honeycomb/Persistence link, it says "It is necessary to store the configuration in human readable format to enable users to perform manual edits e.g. XML or JSON.". After the config data tree file is edited, how to restore it in honeycomb agent without restarting agent.
b) Another way is that I can send the device configuration through netconf session and commit. Can I do this from the honeycomb agent itself? Is there any sample/example implementation available?
If you can point me on how to proceed, it will be great help.
Regards,
Saran
Sensitivity: Internal & Restricted
-----Original Message-----
From: Marek Grądzki [mailto:margradz@...]
Sent: Monday, September 10, 2018 2:43 AM
To: Saravanan A (Communications-Telecom Equipment) <saravanan.a75@...>; honeycomb-dev@...
Subject: Re: [honeycomb-dev] <module>-impl project code file generation
** This mail has been sent from an external source. Treat hyperlinks and attachments in this email with caution**
+ honeycomb-dev@...
niedz., 9 wrz 2018 o 23:12 Marek Grądzki <margradz@...> napisał(a):
The information contained in this electronic message and any attachments to this message are intended for the exclusive use of the addressee(s) and may contain proprietary, confidential or privileged information. If you are not the intended recipient, you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately and destroy all copies of this message and any attachments. WARNING: Computer viruses can be transmitted via email. The recipient should check this email and any attachments for the presence of viruses. The company accepts no liability for any damage caused by any virus transmitted by this email. www.wipro.com
Saran,
the model looks valid.
I don't remember if I ever used top level list.
The ietf models used in hc2vpp have top level container defined.
Not sure if InstanceIdentifier provides methods suitable for your
usecase, but you might try to use KeyedInstanceIdentifier.builder.
InstanceIdentifer and KeyedInstanceIdentifier are concepts from ODL
Yangtools (https://wiki.opendaylight.org/view/YANG_Tools:Main)
Regards,
Marekśr., 5 wrz 2018 o 11:31 saravanan.a75@...
<saravanan.a75@...> napisał(a):
Hello Merek,
I am implementing impl classes for my Yang model.
I have a yang model in which “list fap-service “ is present immediately in “module bbf-tr-196-2-0-3-full”.
module bbf-tr-196-2-0-3-full {
list fap-service {
...
}
}
Hope this is valid yang model, I see a problem in honeycomb implementation for " final class FapServiceCrudService implements CrudService<FapService>".
@Override
public List<FapService> readAll() throws ReadFailedException {
LOG.info("RANSIM FapServiceCrudService readAll called");
// read all data under parent node,in this case {@link ModuleState}
return Collections.singletonList(
readSpecific(InstanceIdentifier.create(FapServices.class).child(FapService.class, new FapServiceKey("FapNode1"))));
}
}
What I should specify in the parent node class? If I have a top level container with name " fap-services " than, above code works. If we don't have such container what I should give as parent class?
Is honeycomb expect top level container always like below?
module bbf-tr-196-2-0-3-full {
container fap-services {
list fap-service {
...
}
}
}
Regards,
Saran
Sensitivity: Internal & Restricted
-----Original Message-----
From: Marek Grądzki [mailto:margradz@...]
Sent: Friday, August 31, 2018 11:55 AM
To: Saravanan A (Communications-Telecom Equipment)
<saravanan.a75@...>
Cc: honeycomb-dev@...
Subject: Re: [honeycomb-dev] <module>-impl project code file
generation
** This mail has been sent from an external source. Treat hyperlinks
and attachments in this email with caution**
Hello Saran,
generating netconf agent based on custom model is not supported.
But feel free to create jira ticket if you are interested in the feature.
Contributions to design/implementation are welcomed!
Currently Honeycomb plugin archetype generates maven project structure, code and documentation only for the sample model (parametrized by root artifact id):
https://git.fd.io/honeycomb/tree/tools/archetype/src/main/resources/
archetype-resources/__rootArtifactId__-api/src/main/yang/__rootArtif
actId__.yang
Here is relevant patch where you can find more info:
https://gerrit.fd.io/r/#/c/2429/
You can find more examples in:
https://docs.fd.io/honeycomb/1.18.10-SNAPSHOT/release-notes-aggregat
or/release_notes.html#_devel_guide
https://git.fd.io/honeycomb/tree/samples
Please also take a look at https://wiki.fd.io/view/Hc2vpp which is Honeycomb agent for VPP.
Regards,
Marek
śr., 29 sie 2018 o 05:16 saravanan.a75@... <saravanan.a75@...> napisał(a):The information contained in this electronic message and any
Hello Team,
I am using honeycomb 18.07 version. Trying to bring up Netconf server for my own yang model file.
I modified the “honeycomb/enodebsim/enodebsim-api/src/main/yang/enodebsim.yang” file with my yang content.
Then I did the following:
$cd honeycomb/
$ rm enodebsim/pom.xml enodebsim/enodebsim-api/pom.xml
$ vi pom.xml #removed the enodebsim from Module list
$ mvn -X archetype:generate
-DarchetypeGroupId=io.fd.honeycomb.tools
-DarchetypeArtifactId=honeycomb-plugin-archetype
-DarchetypeVersion=1.18.10-SNAPSHOT -DinteractiveMode=false
-DgroupId=org.onap.ransim -DartifactId=enodebsim
-Dversion=1.0.0-SNAPSHOT -Dpackage=org.onap.ransim
$cd honeycomb/enodebsim/
$mvn clean install
This generated the java files for my new yang model. However the code generated in “honeycomb/enodebsim/enodebsim-impl” is not referring my new yang model. It still uses the old sample yang model.
Will the generate netconf agent automatically includes new yang model into capabilities?
Pls let me know if I missed any steps. If you can share the link/doc explaining what needs to be done for custom yang model simulation?
Regards,
Saran
Sensitivity: Internal & Restricted
The information contained in this electronic message and any
attachments to this message are intended for the exclusive use of
the
addressee(s) and may contain proprietary, confidential or
privileged information. If you are not the intended recipient, you
should not disseminate, distribute or copy this e-mail. Please
notify the sender immediately and destroy all copies of this
message and any attachments. WARNING: Computer viruses can be transmitted via email.
The recipient should check this email and any attachments for the
presence of viruses. The company accepts no liability for any
damage caused by any virus transmitted by this email.
www.wipro.com
-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#816):
https://lists.fd.io/g/honeycomb-dev/message/816
Mute This Topic: https://lists.fd.io/mt/25070762/675181
Group Owner: honeycomb-dev+owner@...
Unsubscribe: https://lists.fd.io/g/honeycomb-dev/unsub
[margradz@...]
-=-=-=-=-=-=-=-=-=-=-=-
attachments to this message are intended for the exclusive use of
the addressee(s) and may contain proprietary, confidential or
privileged information. If you are not the intended recipient, you
should not disseminate, distribute or copy this e-mail. Please
notify the sender immediately and destroy all copies of this message
and any attachments. WARNING: Computer viruses can be transmitted
via email. The recipient should check this email and any attachments
for the presence of viruses. The company accepts no liability for
any damage caused by any virus transmitted by this email.
www.wipro.com
The information contained in this electronic message and any attachments to this message are intended for the exclusive use of the addressee(s) and may contain proprietary, confidential or privileged information. If you are not the intended recipient, you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately and destroy all copies of this message and any attachments. WARNING: Computer viruses can be transmitted via email. The recipient should check this email and any attachments for the presence of viruses. The company accepts no liability for any damage caused by any virus transmitted by this email. www.wipro.com
From the logs I can see that TCP ports seem to work so it's just a problem with SSH. Not sure what exact configuration is in config/netconf.json, but for each HC instance you should change both TCP,SSH ports and notification name. You can also adjust the number of netty-threads to increase performance. See https://wiki.fd.io/view/CSIT/Honeycomb/HC_performance. Also verify if ports are not being blocked or used by other apps. I will try to test something similar but it might take a while.
The other option is to download netconf source code (https://git.opendaylight.org/gerrit/#/admin/projects/netconf) and try to debug it. You should be able to run honeycomb in debug mode (honeycomb-debug, port: 5005) and connect remote debugger in your IDE. Good place to start should be NetconfSSHProvider.java or NetconfNorthboundSshServer.java
It might be useful to enable trace logs on org.opendaylight.netconf. Try to avoid using trace on org.opendaylight, there will be too much logs to process.
If you find a bug in HC, report back or feel free to propose patch to honeycomb, any help is greatly appreciated.
Michal Cmarada
Engineer - Software
mcmarada@...
Tel:
Cisco Systems, Inc.
Slovakia
cisco.com
Think before you print.
This email may contain confidential and privileged material for the sole use of the intended recipient. Any review, use, distribution or disclosure by others is strictly prohibited. If you are not the intended recipient (or authorized to receive for the recipient), please contact the sender by reply email and delete all copies of this message.
http://www.cisco.com/c/en/us/about/legal/terms-sale-software-license-agreement/company-registration-information.html
From: saravanan.a75@... <saravanan.a75@...>
Sent: Tuesday, November 27, 2018 2:48 PM
To: Michal Cmarada -X (mcmarada - PANTHEON TECHNOLOGIES at Cisco) <mcmarada@...>; Marek Grądzki <margradz@...>; honeycomb-dev@...
Subject: RE: [honeycomb-dev] <module>-impl project code file generation
Team,
I have increased log level, I could see below lines and after that server instances hangs:
2018-11-27 09:43:59.673 UTC [main] INFO i.f.h.n.n.NetconfSshServerProvider - Starting NETCONF SSH
2018-11-27 09:43:59.744 UTC [netconf-netty-0] INFO i.f.h.n.n.NetconfTcpServerProvider - Netconf TCP endpoint started successfully at /127.0.0.1:60001
2018-11-27 09:43:59.752 UTC [main] WARN io.netty.bootstrap.ServerBootstrap - Unknown channel option 'SO_BACKLOG' for channel '[id: 0xa55a593b]'
2018-11-27 09:43:59.839 UTC [main] DEBUG o.o.p.framework.AbstractDispatcher - Initiated server AbstractBootstrap$PendingRegistrationPromise@16134476(incomplete) at local:50001.
2018-11-27 09:44:01.611 UTC [main] INFO o.a.s.c.u.s.b.BouncyCastleSecurityProviderRegistrar - getOrCreateProvider(BC) created instance of org.bouncycastle.jce.provider.BouncyCastleProvider
2018-11-27 09:44:01.615 UTC [main] DEBUG o.a.s.c.util.security.SecurityUtils - register(EdDSA) not registered - enabled=true, supported=false
I see the same behavior even if I run the honeycomb in multiple docker containers.
Can you pls let me know how to resolve this issue? If kernel or honeycomb settings need to be tweaked, pls guide me.
Regards,
Saran
-----Original Message-----
From: Saravanan A (TECH)
Sent: Monday, November 26, 2018 8:38 PM
To: 'Michal Cmarada -X (mcmarada - PANTHEON TECHNOLOGIES at Cisco)' <mcmarada@...>; Marek Grądzki <margradz@...>; honeycomb-dev@...
Subject: RE: [honeycomb-dev] <module>-impl project code file generation
Hello Team,
Thanks for your support so far.
I have developed the honeycomb agent. I am interested only in netconf ssh and I want to run multiple instances in same server.
So I changed netconf ssh port to 50001, 50002 , and so on. I have separate folder structure for each instance like hc_50001/, hc_50002/, etc.
When I start 5 instances, 2 of them are starting immediately. The other 3 instances are waiting for 5 or sometimes 10 minutes to come up fully.
When I checked the log, they are stuck after printing following log lines. Can you pls let me know how to resolve this issue? If kernel or honeycomb settings need to be tweaked, pls guide me.
~/Netconf-HC-Agents$ tail -f hc_50003/var/log/honeycomb/honeycomb.log
2018-11-26 14:07:16.001 UTC [main] INFO i.f.h.binding.init.ProviderTrait - Providing: io.fd.honeycomb.northbound.netconf.HoneycombNotification2NetconfProvider@29f38091
2018-11-26 14:07:16.015 UTC [main] INFO i.f.h.n.n.HoneycombNotification2NetconfProvider - Exposing HONEYCOMB_NETCONF notification stream: honeycomb
2018-11-26 14:07:16.015 UTC [pool-10-thread-3] INFO o.o.r.NbrListChangeNotifnSender - Starting notification stream for interfaces
2018-11-26 14:07:16.016 UTC [main] INFO i.f.h.binding.init.ProviderTrait - Providing: io.fd.honeycomb.northbound.netconf.NettyThreadGroupProvider@106b014e
2018-11-26 14:07:16.318 UTC [main] INFO i.f.h.binding.init.ProviderTrait - Providing: io.fd.honeycomb.northbound.netconf.NetconfServerDispatcherProvider@79eeff87
2018-11-26 14:07:16.378 UTC [main] INFO i.f.h.binding.init.ProviderTrait - Providing: io.fd.honeycomb.northbound.netconf.NetconfTcpServerProvider@2668c286
2018-11-26 14:07:16.379 UTC [main] INFO i.f.h.binding.init.ProviderTrait - Providing: io.fd.honeycomb.northbound.netconf.NetconfSshServerProvider@2abc8034
2018-11-26 14:07:16.379 UTC [main] INFO i.f.h.n.n.NetconfSshServerProvider - Starting NETCONF SSH
2018-11-26 14:07:17.276 UTC [main] WARN io.netty.bootstrap.ServerBootstrap - Unknown channel option 'SO_BACKLOG' for channel '[id: 0x5be1dfe9]'
2018-11-26 14:07:18.620 UTC [main] INFO o.a.s.c.u.s.b.BouncyCastleSecurityProviderRegistrar - getOrCreateProvider(BC) created instance of org.bouncycastle.jce.provider.BouncyCastleProvider
I am using below Ubuntu version:
$ uname -a
Linux sb4-honeycomb-sim 4.4.0-139-generic #165-Ubuntu SMP Wed Oct 24 10:58:50 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
Regards,
Saran
Sensitivity: Internal & Restricted
-----Original Message-----
From: Michal Cmarada -X (mcmarada - PANTHEON TECHNOLOGIES at Cisco) [mailto:mcmarada@...]
Sent: Thursday, November 8, 2018 9:06 PM
To: Saravanan A (TECH) <saravanan.a75@...>; Marek Grądzki <margradz@...>; honeycomb-dev@...
Subject: RE: [honeycomb-dev] <module>-impl project code file generation
** This mail has been sent from an external source **
Hi,
1. Get-config should be reading data from internal honeycomb datastore (configuration datastore), that is why the translation classes are not called. Only Get actually reads data from the device and calls the translation classes (operational datastore).
2. Yes there are several options to edit the configuration of the device:
a) config/data.json can be used for this, but its primary function is to store configured data in the event of failures and honeycomb restart.
b) Configuring the device via netconf is common way of configuring devices, you can send the configuration and it will be stored in internal configuration datastore in honeycomb, you should be then able to get this configuration data using get-config as you mentioned earlier
c) Configuration using Restconf, is often easy and very fast way to write or read data from device. It is very simple and if you take a look at HC2VPP project (honeycomb agent for VPP) there are a lot of postman collections that you can use to test how this is done (https://gerrit.fd.io/r/#/admin/projects/hc2vpp). There are some demos and other examples in hc2vpp/examples, even for netconf using ncclient.
There is also a developer guide in our documentation for HC2VPP which can clear a lot of questions for you. Take a look here: https://docs.fd.io/hc2vpp/1.18.07/hc2vpp-parent/release-notes-aggregator/release_notes.html#_devel_guide There is a section about developing sample plugin for HC2vpp to write and read simple configuration based on a simple yang model for a VPP device.
I think you are working on a very similar agent to HC2VPP just for other type of device, so you should find a lot of stuff that you need there.
Michal Cmarada
Engineer - Software
mcmarada@...
Tel:
Cisco Systems, Inc.
Slovakia
cisco.com
Think before you print.
This email may contain confidential and privileged material for the sole use of the intended recipient. Any review, use, distribution or disclosure by others is strictly prohibited. If you are not the intended recipient (or authorized to receive for the recipient), please contact the sender by reply email and delete all copies of this message.
http://www.cisco.com/c/en/us/about/legal/terms-sale-software-license-agreement/company-registration-information.html
-----Original Message-----
From: honeycomb-dev@... <honeycomb-dev@...> On Behalf Of saravanan.a75@...
Sent: Thursday, November 8, 2018 1:51 PM
To: Marek Grądzki <margradz@...>; honeycomb-dev@...
Subject: Re: [honeycomb-dev] <module>-impl project code file generation
Hello Team,
I could implement honeycomb agent and test basic operations.
However I have few pending tasks/issues.
1. When I run get-config command, the control is not coming to any of the implemented classes. Only for 'get' command, the control is coming to implemented classes. Is it possible to get control for get-config operation?
2. If I want to edit the device configuration from backend, how to do it? I am seeing 2 options:
a) I modified the config/data.json file and tried reloading it. Is this doable and better way? Is there any sample/example implementation available?
For e.g., as per https://wiki.fd.io/view/Honeycomb/Persistence link, it says "It is necessary to store the configuration in human readable format to enable users to perform manual edits e.g. XML or JSON.". After the config data tree file is edited, how to restore it in honeycomb agent without restarting agent.
b) Another way is that I can send the device configuration through netconf session and commit. Can I do this from the honeycomb agent itself? Is there any sample/example implementation available?
If you can point me on how to proceed, it will be great help.
Regards,
Saran
Sensitivity: Internal & Restricted
-----Original Message-----
From: Marek Grądzki [mailto:margradz@...]
Sent: Monday, September 10, 2018 2:43 AM
To: Saravanan A (Communications-Telecom Equipment) <saravanan.a75@...>; honeycomb-dev@...
Subject: Re: [honeycomb-dev] <module>-impl project code file generation
** This mail has been sent from an external source. Treat hyperlinks and attachments in this email with caution**
+ honeycomb-dev@...
niedz., 9 wrz 2018 o 23:12 Marek Grądzki <margradz@...> napisał(a):
The information contained in this electronic message and any attachments to this message are intended for the exclusive use of the addressee(s) and may contain proprietary, confidential or privileged information. If you are not the intended recipient, you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately and destroy all copies of this message and any attachments. WARNING: Computer viruses can be transmitted via email. The recipient should check this email and any attachments for the presence of viruses. The company accepts no liability for any damage caused by any virus transmitted by this email. www.wipro.com The information contained in this electronic message and any attachments to this message are intended for the exclusive use of the addressee(s) and may contain proprietary, confidential or privileged information. If you are not the intended recipient, you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately and destroy all copies of this message and any attachments. WARNING: Computer viruses can be transmitted via email. The recipient should check this email and any attachments for the presence of viruses. The company accepts no liability for any damage caused by any virus transmitted by this email. www.wipro.com
Saran,
the model looks valid.
I don't remember if I ever used top level list.
The ietf models used in hc2vpp have top level container defined.
Not sure if InstanceIdentifier provides methods suitable for your
usecase, but you might try to use KeyedInstanceIdentifier.builder.
InstanceIdentifer and KeyedInstanceIdentifier are concepts from ODL
Yangtools (https://wiki.opendaylight.org/view/YANG_Tools:Main)
Regards,
Marekśr., 5 wrz 2018 o 11:31 saravanan.a75@...
<saravanan.a75@...> napisał(a):
Hello Merek,
I am implementing impl classes for my Yang model.
I have a yang model in which “list fap-service “ is present immediately in “module bbf-tr-196-2-0-3-full”.
module bbf-tr-196-2-0-3-full {
list fap-service {
...
}
}
Hope this is valid yang model, I see a problem in honeycomb implementation for " final class FapServiceCrudService implements CrudService<FapService>".
@Override
public List<FapService> readAll() throws ReadFailedException {
LOG.info("RANSIM FapServiceCrudService readAll called");
// read all data under parent node,in this case {@link ModuleState}
return Collections.singletonList(
readSpecific(InstanceIdentifier.create(FapServices.class).child(FapService.class, new FapServiceKey("FapNode1"))));
}
}
What I should specify in the parent node class? If I have a top level container with name " fap-services " than, above code works. If we don't have such container what I should give as parent class?
Is honeycomb expect top level container always like below?
module bbf-tr-196-2-0-3-full {
container fap-services {
list fap-service {
...
}
}
}
Regards,
Saran
Sensitivity: Internal & Restricted
-----Original Message-----
From: Marek Grądzki [mailto:margradz@...]
Sent: Friday, August 31, 2018 11:55 AM
To: Saravanan A (Communications-Telecom Equipment)
<saravanan.a75@...>
Cc: honeycomb-dev@...
Subject: Re: [honeycomb-dev] <module>-impl project code file
generation
** This mail has been sent from an external source. Treat hyperlinks
and attachments in this email with caution**
Hello Saran,
generating netconf agent based on custom model is not supported.
But feel free to create jira ticket if you are interested in the feature.
Contributions to design/implementation are welcomed!
Currently Honeycomb plugin archetype generates maven project structure, code and documentation only for the sample model (parametrized by root artifact id):
https://git.fd.io/honeycomb/tree/tools/archetype/src/main/resources/
archetype-resources/__rootArtifactId__-api/src/main/yang/__rootArtif
actId__.yang
Here is relevant patch where you can find more info:
https://gerrit.fd.io/r/#/c/2429/
You can find more examples in:
https://docs.fd.io/honeycomb/1.18.10-SNAPSHOT/release-notes-aggregat
or/release_notes.html#_devel_guide
https://git.fd.io/honeycomb/tree/samples
Please also take a look at https://wiki.fd.io/view/Hc2vpp which is Honeycomb agent for VPP.
Regards,
Marek
śr., 29 sie 2018 o 05:16 saravanan.a75@... <saravanan.a75@...> napisał(a):The information contained in this electronic message and any
Hello Team,
I am using honeycomb 18.07 version. Trying to bring up Netconf server for my own yang model file.
I modified the “honeycomb/enodebsim/enodebsim-api/src/main/yang/enodebsim.yang” file with my yang content.
Then I did the following:
$cd honeycomb/
$ rm enodebsim/pom.xml enodebsim/enodebsim-api/pom.xml
$ vi pom.xml #removed the enodebsim from Module list
$ mvn -X archetype:generate
-DarchetypeGroupId=io.fd.honeycomb.tools
-DarchetypeArtifactId=honeycomb-plugin-archetype
-DarchetypeVersion=1.18.10-SNAPSHOT -DinteractiveMode=false
-DgroupId=org.onap.ransim -DartifactId=enodebsim
-Dversion=1.0.0-SNAPSHOT -Dpackage=org.onap.ransim
$cd honeycomb/enodebsim/
$mvn clean install
This generated the java files for my new yang model. However the code generated in “honeycomb/enodebsim/enodebsim-impl” is not referring my new yang model. It still uses the old sample yang model.
Will the generate netconf agent automatically includes new yang model into capabilities?
Pls let me know if I missed any steps. If you can share the link/doc explaining what needs to be done for custom yang model simulation?
Regards,
Saran
Sensitivity: Internal & Restricted
The information contained in this electronic message and any
attachments to this message are intended for the exclusive use of
the
addressee(s) and may contain proprietary, confidential or
privileged information. If you are not the intended recipient, you
should not disseminate, distribute or copy this e-mail. Please
notify the sender immediately and destroy all copies of this
message and any attachments. WARNING: Computer viruses can be transmitted via email.
The recipient should check this email and any attachments for the
presence of viruses. The company accepts no liability for any
damage caused by any virus transmitted by this email.
www.wipro.com
-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#816):
https://lists.fd.io/g/honeycomb-dev/message/816
Mute This Topic: https://lists.fd.io/mt/25070762/675181
Group Owner: honeycomb-dev+owner@...
Unsubscribe: https://lists.fd.io/g/honeycomb-dev/unsub
[margradz@...]
-=-=-=-=-=-=-=-=-=-=-=-
attachments to this message are intended for the exclusive use of
the addressee(s) and may contain proprietary, confidential or
privileged information. If you are not the intended recipient, you
should not disseminate, distribute or copy this e-mail. Please
notify the sender immediately and destroy all copies of this message
and any attachments. WARNING: Computer viruses can be transmitted
via email. The recipient should check this email and any attachments
for the presence of viruses. The company accepts no liability for
any damage caused by any virus transmitted by this email.
www.wipro.com
I have developed a simulator using honeycomb 08_10 version and testing it with opendaylight controller.
Honeycomb agent is sending "urn:ietf:params:netconf:capability:exi:1.0" as part of initial <hello> message.
So opendaylight start sending binary request data as described in https://tools.ietf.org/id/draft-varga-netconf-exi-capability-00.html#W3C.REC-exi-20110310 to honeycomb agent and I am getting deserialization exception in Honeycomb while reading this binary request data.
I have following questions:
1. I would like to remove this "urn:ietf:params:netconf:capability:exi:1.0" capability from the <hello> message. Where in honeycomb code this capability is mentioned?
2. Is this W3C.REC-exi-20110310 EXI feature really supported in honeycomb? If so, why I am getting deserialization exception?
Regards,
Saran
Sensitivity: Internal & Restricted
From: Marek Grądzki [mailto:margradz@...]
Sent: Friday, August 31, 2018 11:55 AM
To: Saravanan A (Communications-Telecom Equipment) <saravanan.a75@...>
Cc: honeycomb-dev@...
Subject: Re: [honeycomb-dev] <module>-impl project code file generation
** This mail has been sent from an external source. Treat hyperlinks and attachments in this email with caution**
Hello Saran,
generating netconf agent based on custom model is not supported.
But feel free to create jira ticket if you are interested in the feature.
Contributions to design/implementation are welcomed!
Currently Honeycomb plugin archetype generates maven project structure, code and documentation only for the sample model (parametrized by root artifact id):
https://git.fd.io/honeycomb/tree/tools/archetype/src/main/resources/archetype-resources/__rootArtifactId__-api/src/main/yang/__rootArtifactId__.yang
Here is relevant patch where you can find more info:
https://gerrit.fd.io/r/#/c/2429/
You can find more examples in:
https://docs.fd.io/honeycomb/1.18.10-SNAPSHOT/release-notes-aggregator/release_notes.html#_devel_guide
https://git.fd.io/honeycomb/tree/samples
Please also take a look at https://wiki.fd.io/view/Hc2vpp which is Honeycomb agent for VPP.
Regards,
Marek
śr., 29 sie 2018 o 05:16 saravanan.a75@... <saravanan.a75@...> napisał(a):
The information contained in this electronic message and any attachments to this message are intended for the exclusive use of the addressee(s) and may contain proprietary, confidential or privileged information. If you are not the intended recipient, you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately and destroy all copies of this message and any attachments. WARNING: Computer viruses can be transmitted via email. The recipient should check this email and any attachments for the presence of viruses. The company accepts no liability for any damage caused by any virus transmitted by this email. www.wipro.com
Hello Team,
I am using honeycomb 18.07 version. Trying to bring up Netconf server for my own yang model file.
I modified the “honeycomb/enodebsim/enodebsim-api/src/main/yang/enodebsim.yang” file with my yang content.
Then I did the following:
$cd honeycomb/
$ rm enodebsim/pom.xml enodebsim/enodebsim-api/pom.xml
$ vi pom.xml #removed the enodebsim from Module list
$ mvn -X archetype:generate
-DarchetypeGroupId=io.fd.honeycomb.tools
-DarchetypeArtifactId=honeycomb-plugin-archetype
-DarchetypeVersion=1.18.10-SNAPSHOT -DinteractiveMode=false
-DgroupId=org.onap.ransim -DartifactId=enodebsim
-Dversion=1.0.0-SNAPSHOT -Dpackage=org.onap.ransim
$cd honeycomb/enodebsim/
$mvn clean install
This generated the java files for my new yang model. However the code generated in “honeycomb/enodebsim/enodebsim-impl” is not referring my new yang model. It still uses the old sample yang model.
Will the generate netconf agent automatically includes new yang model into capabilities?
Pls let me know if I missed any steps. If you can share the link/doc explaining what needs to be done for custom yang model simulation?
Regards,
Saran
Sensitivity: Internal & Restricted
The information contained in this electronic message and any
attachments to this message are intended for the exclusive use of the
addressee(s) and may contain proprietary, confidential or privileged
information. If you are not the intended recipient, you should not
disseminate, distribute or copy this e-mail. Please notify the sender
immediately and destroy all copies of this message and any
attachments. WARNING: Computer viruses can be transmitted via email.
The recipient should check this email and any attachments for the
presence of viruses. The company accepts no liability for any damage
caused by any virus transmitted by this email. www.wipro.com
-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#816):
https://lists.fd.io/g/honeycomb-dev/message/816
Mute This Topic: https://lists.fd.io/mt/25070762/675181
Group Owner: honeycomb-dev+owner@...
Unsubscribe: https://lists.fd.io/g/honeycomb-dev/unsub
[margradz@...]
-=-=-=-=-=-=-=-=-=-=-=-
We use implementation of Netconf from Opendaylight. This feature is loaded from original implementation of netconf. You can take a look at https://git.opendaylight.org/gerrit/gitweb?p=netconf.git;a=tree;f=netconf/netconf-netty-util/src/main/java/org/opendaylight/netconf/nettyutil/handler/exi;h=bad12569de87e7ba9c666d5b21ed4bceffec5220;hb=refs/heads/master
What you can do first is modify the default capabilities that our netconf implementation is being started with. To do this you need to change the DEFAULT_BASE_CAPABILITIES
Original implementation from odl netconf:
public static final Set<String> DEFAULT_BASE_CAPABILITIES = ImmutableSet.of("urn:ietf:params:netconf:base:1.0", "urn:ietf:params:netconf:base:1.1", "urn:ietf:params:netconf:capability:exi:1.0");
to a custom set without exi:1.0
public static final Set<String> DEFAULT_ CAPABILITIES = ImmutableSet.of("urn:ietf:params:netconf:base:1.0", "urn:ietf:params:netconf:base:1.1");
You can find this in NetconfServerDispatcherProvider class. Located in honeycomb/infra/northbound/netconf/src/main/java/io/fd/honeycomb/northbound/netconf/NetconfServerDispatcherProvider.java
This should be enough and honeycomb shouldn't report this capability anymore. Since this hasn't been used in honeycomb it shouldn't be a problem if the feature is removed. However I haven`t tested this so I am not sure what this will cause. And if netconf has some internal dependencies on this feature you may run into other errors. You would need to test this by yourself.
Hopefully this will work. But if it doesnt the other options would be to create a dummy handler for this feature in honeycomb (or try to do a propper full implementation). Next option is to modify the Netconf implementation in honeycomb to remove this feature (not sure if this is possible and how hard it can be). Or you can build your own version of netconf without the exi support and built honeycomb on top of it.
Michal
From: Marek Grądzki <margradz@...>
Sent: Thursday, June 27, 2019 12:45 PM
To: saravanan.a75@...; Michal Cmarada -X (mcmarada - PANTHEON TECHNOLOGIES at Cisco) <mcmarada@...>
Cc: honeycomb-dev@...
Subject: Re: [honeycomb-dev] <module>-impl project code file generation
Hello Saran,
I am no longer actively involved in the project.
Adding Michal Cmarada, current PTL, to CC.
Regards,
Marek
czw., 27 cze 2019 o 10:53 saravanan.a75@... <saravanan.a75@...> napisał(a):
Hello Team,
Any update on this query?
Regards,
Saran
-----Original Message-----
From: Saravanan A (TECH)
Sent: Tuesday, June 25, 2019 7:00 PM
To: Marek Grądzki <margradz@...>; honeycomb-dev@...
Subject: RE: [honeycomb-dev] <module>-impl project code file
generation
Hello Team/ Marek,
I have developed a simulator using honeycomb 08_10 version and testing it with opendaylight controller.
Honeycomb agent is sending "urn:ietf:params:netconf:capability:exi:1.0" as part of initial <hello> message.
So opendaylight start sending binary request data as described in https://tools.ietf.org/id/draft-varga-netconf-exi-capability-00.html#W3C.REC-exi-20110310 to honeycomb agent and I am getting deserialization exception in Honeycomb while reading this binary request data.
I have following questions:
1. I would like to remove this "urn:ietf:params:netconf:capability:exi:1.0" capability from the <hello> message. Where in honeycomb code this capability is mentioned?
2. Is this W3C.REC-exi-20110310 EXI feature really supported in honeycomb? If so, why I am getting deserialization exception?
Regards,
Saran
Sensitivity: Internal & Restricted
-----Original Message-----
From: Marek Grądzki [mailto:margradz@...]
Sent: Friday, August 31, 2018 11:55 AM
To: Saravanan A (Communications-Telecom Equipment)
<saravanan.a75@...>
Cc: honeycomb-dev@...
Subject: Re: [honeycomb-dev] <module>-impl project code file
generation
** This mail has been sent from an external source. Treat hyperlinks
and attachments in this email with caution**
Hello Saran,
generating netconf agent based on custom model is not supported.
But feel free to create jira ticket if you are interested in the feature.
Contributions to design/implementation are welcomed!
Currently Honeycomb plugin archetype generates maven project structure, code and documentation only for the sample model (parametrized by root artifact id):
https://git.fd.io/honeycomb/tree/tools/archetype/src/main/resources/ar
chetype-resources/__rootArtifactId__-api/src/main/yang/__rootArtifactI
d__.yang
Here is relevant patch where you can find more info:
https://gerrit.fd.io/r/#/c/2429/
You can find more examples in:
https://docs.fd.io/honeycomb/1.18.10-SNAPSHOT/release-notes-aggregator
/release_notes.html#_devel_guide
https://git.fd.io/honeycomb/tree/samples
Please also take a look at https://wiki.fd.io/view/Hc2vpp which is Honeycomb agent for VPP.
Regards,
Marek
śr., 29 sie 2018 o 05:16 saravanan.a75@... <saravanan.a75@...> napisał(a):The information contained in this electronic message and any
Hello Team,
I am using honeycomb 18.07 version. Trying to bring up Netconf server for my own yang model file.
I modified the “honeycomb/enodebsim/enodebsim-api/src/main/yang/enodebsim.yang” file with my yang content.
Then I did the following:
$cd honeycomb/
$ rm enodebsim/pom.xml enodebsim/enodebsim-api/pom.xml
$ vi pom.xml #removed the enodebsim from Module list
$ mvn -X archetype:generate
-DarchetypeGroupId=io.fd.honeycomb.tools
-DarchetypeArtifactId=honeycomb-plugin-archetype
-DarchetypeVersion=1.18.10-SNAPSHOT -DinteractiveMode=false
-DgroupId=org.onap.ransim -DartifactId=enodebsim
-Dversion=1.0.0-SNAPSHOT -Dpackage=org.onap.ransim
$cd honeycomb/enodebsim/
$mvn clean install
This generated the java files for my new yang model. However the code generated in “honeycomb/enodebsim/enodebsim-impl” is not referring my new yang model. It still uses the old sample yang model.
Will the generate netconf agent automatically includes new yang model into capabilities?
Pls let me know if I missed any steps. If you can share the link/doc explaining what needs to be done for custom yang model simulation?
Regards,
Saran
Sensitivity: Internal & Restricted
The information contained in this electronic message and any
attachments to this message are intended for the exclusive use of
the
addressee(s) and may contain proprietary, confidential or privileged
information. If you are not the intended recipient, you should not
disseminate, distribute or copy this e-mail. Please notify the
sender immediately and destroy all copies of this message and any
attachments. WARNING: Computer viruses can be transmitted via email.
The recipient should check this email and any attachments for the
presence of viruses. The company accepts no liability for any damage
caused by any virus transmitted by this email. www.wipro.com
-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#816):
https://lists.fd.io/g/honeycomb-dev/message/816
Mute This Topic: https://lists.fd.io/mt/25070762/675181
Group Owner: honeycomb-dev+owner@...
Unsubscribe: https://lists.fd.io/g/honeycomb-dev/unsub
[margradz@...]
-=-=-=-=-=-=-=-=-=-=-=-
attachments to this message are intended for the exclusive use of the
addressee(s) and may contain proprietary, confidential or privileged
information. If you are not the intended recipient, you should not
disseminate, distribute or copy this e-mail. Please notify the sender
immediately and destroy all copies of this message and any
attachments. WARNING: Computer viruses can be transmitted via email.
The recipient should check this email and any attachments for the
presence of viruses. The company accepts no liability for any damage
caused by any virus transmitted by this email. www.wipro.com
Any update on this query?
Regards,
Saran
From: Saravanan A (TECH)
Sent: Tuesday, June 25, 2019 7:00 PM
To: Marek Grądzki <margradz@...>; honeycomb-dev@...
Subject: RE: [honeycomb-dev] <module>-impl project code file generation
Hello Team/ Marek,
I have developed a simulator using honeycomb 08_10 version and testing it with opendaylight controller.
Honeycomb agent is sending "urn:ietf:params:netconf:capability:exi:1.0" as part of initial <hello> message.
So opendaylight start sending binary request data as described in https://tools.ietf.org/id/draft-varga-netconf-exi-capability-00.html#W3C.REC-exi-20110310 to honeycomb agent and I am getting deserialization exception in Honeycomb while reading this binary request data.
I have following questions:
1. I would like to remove this "urn:ietf:params:netconf:capability:exi:1.0" capability from the <hello> message. Where in honeycomb code this capability is mentioned?
2. Is this W3C.REC-exi-20110310 EXI feature really supported in honeycomb? If so, why I am getting deserialization exception?
Regards,
Saran
Sensitivity: Internal & Restricted
-----Original Message-----
From: Marek Grądzki [mailto:margradz@...]
Sent: Friday, August 31, 2018 11:55 AM
To: Saravanan A (Communications-Telecom Equipment) <saravanan.a75@...>
Cc: honeycomb-dev@...
Subject: Re: [honeycomb-dev] <module>-impl project code file generation
** This mail has been sent from an external source. Treat hyperlinks and attachments in this email with caution**
Hello Saran,
generating netconf agent based on custom model is not supported.
But feel free to create jira ticket if you are interested in the feature.
Contributions to design/implementation are welcomed!
Currently Honeycomb plugin archetype generates maven project structure, code and documentation only for the sample model (parametrized by root artifact id):
https://git.fd.io/honeycomb/tree/tools/archetype/src/main/resources/archetype-resources/__rootArtifactId__-api/src/main/yang/__rootArtifactId__.yang
Here is relevant patch where you can find more info:
https://gerrit.fd.io/r/#/c/2429/
You can find more examples in:
https://docs.fd.io/honeycomb/1.18.10-SNAPSHOT/release-notes-aggregator/release_notes.html#_devel_guide
https://git.fd.io/honeycomb/tree/samples
Please also take a look at https://wiki.fd.io/view/Hc2vpp which is Honeycomb agent for VPP.
Regards,
Marek
śr., 29 sie 2018 o 05:16 saravanan.a75@... <saravanan.a75@...> napisał(a):
The information contained in this electronic message and any attachments to this message are intended for the exclusive use of the addressee(s) and may contain proprietary, confidential or privileged information. If you are not the intended recipient, you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately and destroy all copies of this message and any attachments. WARNING: Computer viruses can be transmitted via email. The recipient should check this email and any attachments for the presence of viruses. The company accepts no liability for any damage caused by any virus transmitted by this email. www.wipro.com
Hello Team,
I am using honeycomb 18.07 version. Trying to bring up Netconf server for my own yang model file.
I modified the “honeycomb/enodebsim/enodebsim-api/src/main/yang/enodebsim.yang” file with my yang content.
Then I did the following:
$cd honeycomb/
$ rm enodebsim/pom.xml enodebsim/enodebsim-api/pom.xml
$ vi pom.xml #removed the enodebsim from Module list
$ mvn -X archetype:generate
-DarchetypeGroupId=io.fd.honeycomb.tools
-DarchetypeArtifactId=honeycomb-plugin-archetype
-DarchetypeVersion=1.18.10-SNAPSHOT -DinteractiveMode=false
-DgroupId=org.onap.ransim -DartifactId=enodebsim
-Dversion=1.0.0-SNAPSHOT -Dpackage=org.onap.ransim
$cd honeycomb/enodebsim/
$mvn clean install
This generated the java files for my new yang model. However the code generated in “honeycomb/enodebsim/enodebsim-impl” is not referring my new yang model. It still uses the old sample yang model.
Will the generate netconf agent automatically includes new yang model into capabilities?
Pls let me know if I missed any steps. If you can share the link/doc explaining what needs to be done for custom yang model simulation?
Regards,
Saran
Sensitivity: Internal & Restricted
The information contained in this electronic message and any
attachments to this message are intended for the exclusive use of the
addressee(s) and may contain proprietary, confidential or privileged
information. If you are not the intended recipient, you should not
disseminate, distribute or copy this e-mail. Please notify the sender
immediately and destroy all copies of this message and any
attachments. WARNING: Computer viruses can be transmitted via email.
The recipient should check this email and any attachments for the
presence of viruses. The company accepts no liability for any damage
caused by any virus transmitted by this email. www.wipro.com
-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#816):
https://lists.fd.io/g/honeycomb-dev/message/816
Mute This Topic: https://lists.fd.io/mt/25070762/675181
Group Owner: honeycomb-dev+owner@...
Unsubscribe: https://lists.fd.io/g/honeycomb-dev/unsub
[margradz@...]
-=-=-=-=-=-=-=-=-=-=-=-
I am no longer actively involved in the project.
Adding Michal Cmarada, current PTL, to CC.
Regards,
Marek
czw., 27 cze 2019 o 10:53 saravanan.a75@...
<saravanan.a75@...> napisał(a):
Hello Team,
Any update on this query?
Regards,
Saran
-----Original Message-----
From: Saravanan A (TECH)
Sent: Tuesday, June 25, 2019 7:00 PM
To: Marek Grądzki <margradz@...>; honeycomb-dev@...
Subject: RE: [honeycomb-dev] <module>-impl project code file generation
Hello Team/ Marek,
I have developed a simulator using honeycomb 08_10 version and testing it with opendaylight controller.
Honeycomb agent is sending "urn:ietf:params:netconf:capability:exi:1.0" as part of initial <hello> message.
So opendaylight start sending binary request data as described in https://tools.ietf.org/id/draft-varga-netconf-exi-capability-00.html#W3C.REC-exi-20110310 to honeycomb agent and I am getting deserialization exception in Honeycomb while reading this binary request data.
I have following questions:
1. I would like to remove this "urn:ietf:params:netconf:capability:exi:1.0" capability from the <hello> message. Where in honeycomb code this capability is mentioned?
2. Is this W3C.REC-exi-20110310 EXI feature really supported in honeycomb? If so, why I am getting deserialization exception?
Regards,
Saran
Sensitivity: Internal & Restricted
-----Original Message-----
From: Marek Grądzki [mailto:margradz@...]
Sent: Friday, August 31, 2018 11:55 AM
To: Saravanan A (Communications-Telecom Equipment) <saravanan.a75@...>
Cc: honeycomb-dev@...
Subject: Re: [honeycomb-dev] <module>-impl project code file generation
** This mail has been sent from an external source. Treat hyperlinks and attachments in this email with caution**
Hello Saran,
generating netconf agent based on custom model is not supported.
But feel free to create jira ticket if you are interested in the feature.
Contributions to design/implementation are welcomed!
Currently Honeycomb plugin archetype generates maven project structure, code and documentation only for the sample model (parametrized by root artifact id):
https://git.fd.io/honeycomb/tree/tools/archetype/src/main/resources/archetype-resources/__rootArtifactId__-api/src/main/yang/__rootArtifactId__.yang
Here is relevant patch where you can find more info:
https://gerrit.fd.io/r/#/c/2429/
You can find more examples in:
https://docs.fd.io/honeycomb/1.18.10-SNAPSHOT/release-notes-aggregator/release_notes.html#_devel_guide
https://git.fd.io/honeycomb/tree/samples
Please also take a look at https://wiki.fd.io/view/Hc2vpp which is Honeycomb agent for VPP.
Regards,
Marek
śr., 29 sie 2018 o 05:16 saravanan.a75@... <saravanan.a75@...> napisał(a):The information contained in this electronic message and any attachments to this message are intended for the exclusive use of the addressee(s) and may contain proprietary, confidential or privileged information. If you are not the intended recipient, you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately and destroy all copies of this message and any attachments. WARNING: Computer viruses can be transmitted via email. The recipient should check this email and any attachments for the presence of viruses. The company accepts no liability for any damage caused by any virus transmitted by this email. www.wipro.com
Hello Team,
I am using honeycomb 18.07 version. Trying to bring up Netconf server for my own yang model file.
I modified the “honeycomb/enodebsim/enodebsim-api/src/main/yang/enodebsim.yang” file with my yang content.
Then I did the following:
$cd honeycomb/
$ rm enodebsim/pom.xml enodebsim/enodebsim-api/pom.xml
$ vi pom.xml #removed the enodebsim from Module list
$ mvn -X archetype:generate
-DarchetypeGroupId=io.fd.honeycomb.tools
-DarchetypeArtifactId=honeycomb-plugin-archetype
-DarchetypeVersion=1.18.10-SNAPSHOT -DinteractiveMode=false
-DgroupId=org.onap.ransim -DartifactId=enodebsim
-Dversion=1.0.0-SNAPSHOT -Dpackage=org.onap.ransim
$cd honeycomb/enodebsim/
$mvn clean install
This generated the java files for my new yang model. However the code generated in “honeycomb/enodebsim/enodebsim-impl” is not referring my new yang model. It still uses the old sample yang model.
Will the generate netconf agent automatically includes new yang model into capabilities?
Pls let me know if I missed any steps. If you can share the link/doc explaining what needs to be done for custom yang model simulation?
Regards,
Saran
Sensitivity: Internal & Restricted
The information contained in this electronic message and any
attachments to this message are intended for the exclusive use of the
addressee(s) and may contain proprietary, confidential or privileged
information. If you are not the intended recipient, you should not
disseminate, distribute or copy this e-mail. Please notify the sender
immediately and destroy all copies of this message and any
attachments. WARNING: Computer viruses can be transmitted via email.
The recipient should check this email and any attachments for the
presence of viruses. The company accepts no liability for any damage
caused by any virus transmitted by this email. www.wipro.com
-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#816):
https://lists.fd.io/g/honeycomb-dev/message/816
Mute This Topic: https://lists.fd.io/mt/25070762/675181
Group Owner: honeycomb-dev+owner@...
Unsubscribe: https://lists.fd.io/g/honeycomb-dev/unsub
[margradz@...]
-=-=-=-=-=-=-=-=-=-=-=-
Thanks a lot for your answer and support.
Your solution to change the basic capabilities in NetconfServerDispatcherProvider.java solved my problem.
Now I am able to mount honeycomb server into ODL.
Regards,
Saran
Sensitivity: Internal & Restricted
From: Michal Čmarada [mailto:michal.cmarada@...]
Sent: Monday, July 1, 2019 1:14 PM
To: Saravanan A (TECH) <saravanan.a75@...>
Cc: honeycomb-dev@...; Peter Lapoš <peter.lapos@...>
Subject: RE: [honeycomb-dev] <module>-impl project code file generation
** This mail has been sent from an external source. Treat hyperlinks and attachments in this email with caution**
Hi Saran,
We use implementation of Netconf from Opendaylight. This feature is loaded from original implementation of netconf. You can take a look at https://clicktime.symantec.com/3Y2c7TnDKfb2FK447jzCEhB7Vc?u=https%3A%2F%2Fgit.opendaylight.org%2Fgerrit%2Fgitweb%3Fp%3Dnetconf.git%3Ba%3Dtree%3Bf%3Dnetconf%2Fnetconf-netty-util%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fnetconf%2Fnettyutil%2Fhandler%2Fexi%3Bh%3Dbad12569de87e7ba9c666d5b21ed4bceffec5220%3Bhb%3Drefs%2Fheads%2Fmaster
What you can do first is modify the default capabilities that our netconf implementation is being started with. To do this you need to change the DEFAULT_BASE_CAPABILITIES Original implementation from odl netconf:
public static final Set<String> DEFAULT_BASE_CAPABILITIES = ImmutableSet.of("urn:ietf:params:netconf:base:1.0", "urn:ietf:params:netconf:base:1.1", "urn:ietf:params:netconf:capability:exi:1.0");
to a custom set without exi:1.0
public static final Set<String> DEFAULT_ CAPABILITIES = ImmutableSet.of("urn:ietf:params:netconf:base:1.0", "urn:ietf:params:netconf:base:1.1");
You can find this in NetconfServerDispatcherProvider class. Located in honeycomb/infra/northbound/netconf/src/main/java/io/fd/honeycomb/northbound/netconf/NetconfServerDispatcherProvider.java
This should be enough and honeycomb shouldn't report this capability anymore. Since this hasn't been used in honeycomb it shouldn't be a problem if the feature is removed. However I haven`t tested this so I am not sure what this will cause. And if netconf has some internal dependencies on this feature you may run into other errors. You would need to test this by yourself.
Hopefully this will work. But if it doesnt the other options would be to create a dummy handler for this feature in honeycomb (or try to do a propper full implementation). Next option is to modify the Netconf implementation in honeycomb to remove this feature (not sure if this is possible and how hard it can be). Or you can build your own version of netconf without the exi support and built honeycomb on top of it.
Michal
From: Marek Grądzki <margradz@...>
Sent: Thursday, June 27, 2019 12:45 PM
To: saravanan.a75@...; Michal Cmarada -X (mcmarada - PANTHEON TECHNOLOGIES at Cisco) <mcmarada@...>
Cc: honeycomb-dev@...
Subject: Re: [honeycomb-dev] <module>-impl project code file generation
Hello Saran,
I am no longer actively involved in the project.
Adding Michal Cmarada, current PTL, to CC.
Regards,
Marek
czw., 27 cze 2019 o 10:53 saravanan.a75@... <saravanan.a75@...> napisał(a):
The information contained in this electronic message and any attachments to this message are intended for the exclusive use of the addressee(s) and may contain proprietary, confidential or privileged information. If you are not the intended recipient, you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately and destroy all copies of this message and any attachments. WARNING: Computer viruses can be transmitted via email. The recipient should check this email and any attachments for the presence of viruses. The company accepts no liability for any damage caused by any virus transmitted by this email. www.wipro.com
Hello Team,
Any update on this query?
Regards,
Saran
-----Original Message-----
From: Saravanan A (TECH)
Sent: Tuesday, June 25, 2019 7:00 PM
To: Marek Grądzki <margradz@...>; honeycomb-dev@...
Subject: RE: [honeycomb-dev] <module>-impl project code file
generation
Hello Team/ Marek,
I have developed a simulator using honeycomb 08_10 version and testing it with opendaylight controller.
Honeycomb agent is sending "urn:ietf:params:netconf:capability:exi:1.0" as part of initial <hello> message.
So opendaylight start sending binary request data as described in https://clicktime.symantec.com/3DWmpigZygsWXTdQEQrgG6Z7Vc?u=https%3A%2F%2Ftools.ietf.org%2Fid%2Fdraft-varga-netconf-exi-capability-00.html%23W3C.REC-exi-20110310 to honeycomb agent and I am getting deserialization exception in Honeycomb while reading this binary request data.
I have following questions:
1. I would like to remove this "urn:ietf:params:netconf:capability:exi:1.0" capability from the <hello> message. Where in honeycomb code this capability is mentioned?
2. Is this W3C.REC-exi-20110310 EXI feature really supported in honeycomb? If so, why I am getting deserialization exception?
Regards,
Saran
Sensitivity: Internal & Restricted
-----Original Message-----
From: Marek Grądzki [mailto:margradz@...]
Sent: Friday, August 31, 2018 11:55 AM
To: Saravanan A (Communications-Telecom Equipment)
<saravanan.a75@...>
Cc: honeycomb-dev@...
Subject: Re: [honeycomb-dev] <module>-impl project code file
generation
** This mail has been sent from an external source. Treat hyperlinks
and attachments in this email with caution**
Hello Saran,
generating netconf agent based on custom model is not supported.
But feel free to create jira ticket if you are interested in the feature.
Contributions to design/implementation are welcomed!
Currently Honeycomb plugin archetype generates maven project structure, code and documentation only for the sample model (parametrized by root artifact id):
https://clicktime.symantec.com/37CEjWJgYbmpnNUpRvjUNPA7Vc?u=https%3A%2
F%2Fgit.fd.io%2Fhoneycomb%2Ftree%2Ftools%2Farchetype%2Fsrc%2Fmain%2Fre
sources%2Far
chetype-resources/__rootArtifactId__-api/src/main/yang/__rootArtifactI
d__.yang
Here is relevant patch where you can find more info:
https://clicktime.symantec.com/3XiMvybPV57vdgoqBshFYtd7Vc?u=https%3A%2
F%2Fgerrit.fd.io%2Fr%2F%23%2Fc%2F2429%2F
You can find more examples in:
https://clicktime.symantec.com/3Cw91tvzguNH9xJHuiA4wnQ7Vc?u=https%3A%2
F%2Fdocs.fd.io%2Fhoneycomb%2F1.18.10-SNAPSHOT%2Frelease-notes-aggregat
or
/release_notes.html#_devel_guide
https://clicktime.symantec.com/3Wquvr7n5EQJAG75DKgSKm37Vc?u=https%3A%2
F%2Fgit.fd.io%2Fhoneycomb%2Ftree%2Fsamples
Please also take a look at https://clicktime.symantec.com/3JmsWLQWoXrwQrJ8nLvVpMc7Vc?u=https%3A%2F%2Fwiki.fd.io%2Fview%2FHc2vpp which is Honeycomb agent for VPP.
Regards,
Marek
śr., 29 sie 2018 o 05:16 saravanan.a75@... <saravanan.a75@...> napisał(a):The information contained in this electronic message and any
Hello Team,
I am using honeycomb 18.07 version. Trying to bring up Netconf server for my own yang model file.
I modified the “honeycomb/enodebsim/enodebsim-api/src/main/yang/enodebsim.yang” file with my yang content.
Then I did the following:
$cd honeycomb/
$ rm enodebsim/pom.xml enodebsim/enodebsim-api/pom.xml
$ vi pom.xml #removed the enodebsim from Module list
$ mvn -X archetype:generate
-DarchetypeGroupId=io.fd.honeycomb.tools
-DarchetypeArtifactId=honeycomb-plugin-archetype
-DarchetypeVersion=1.18.10-SNAPSHOT -DinteractiveMode=false
-DgroupId=org.onap.ransim -DartifactId=enodebsim
-Dversion=1.0.0-SNAPSHOT -Dpackage=org.onap.ransim
$cd honeycomb/enodebsim/
$mvn clean install
This generated the java files for my new yang model. However the code generated in “honeycomb/enodebsim/enodebsim-impl” is not referring my new yang model. It still uses the old sample yang model.
Will the generate netconf agent automatically includes new yang model into capabilities?
Pls let me know if I missed any steps. If you can share the link/doc explaining what needs to be done for custom yang model simulation?
Regards,
Saran
Sensitivity: Internal & Restricted
The information contained in this electronic message and any
attachments to this message are intended for the exclusive use of
the
addressee(s) and may contain proprietary, confidential or privileged
information. If you are not the intended recipient, you should not
disseminate, distribute or copy this e-mail. Please notify the
sender immediately and destroy all copies of this message and any
attachments. WARNING: Computer viruses can be transmitted via email.
The recipient should check this email and any attachments for the
presence of viruses. The company accepts no liability for any damage
caused by any virus transmitted by this email.
https://clicktime.symantec.com/3LHWiJpF3JyaLm7PsYhEnAt7Vc?u=www.wipr
o.com
-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#816):
https://clicktime.symantec.com/34cdidSm8tEP2DpNMjyZbau7Vc?u=https%3A
%2F%2Flists.fd.io%2Fg%2Fhoneycomb-dev%2Fmessage%2F816
Mute This Topic:
https://clicktime.symantec.com/33pfbLXCFawi25CcVEfKseV7Vc?u=https%3A
%2F%2Flists.fd.io%2Fmt%2F25070762%2F675181
Group Owner: honeycomb-dev+owner@...
Unsubscribe:
https://clicktime.symantec.com/3SmoByB9kTv6p7PwM85RwUX7Vc?u=https%3A
%2F%2Flists.fd.io%2Fg%2Fhoneycomb-dev%2Funsub
[margradz@...]
-=-=-=-=-=-=-=-=-=-=-=-
attachments to this message are intended for the exclusive use of the
addressee(s) and may contain proprietary, confidential or privileged
information. If you are not the intended recipient, you should not
disseminate, distribute or copy this e-mail. Please notify the sender
immediately and destroy all copies of this message and any
attachments. WARNING: Computer viruses can be transmitted via email.
The recipient should check this email and any attachments for the
presence of viruses. The company accepts no liability for any damage
caused by any virus transmitted by this email.
https://clicktime.symantec.com/3LHWiJpF3JyaLm7PsYhEnAt7Vc?u=www.wipro.
com
Hello Michal,
I have one more related question.
Honeycomb is sending lot of yang capabilities. Where is this list maintained? Can I remove some unused capabilities and keep only my yang capability?
How to do this?
Regards,
Saran
<hello xmlns="urn:ietf:params:xml:ns:netconf:base:1.0">
<capabilities>
<capability>org:onap:ccsdk:features:sdnr:northbound:oofpcipoc?module=oofpcipoc&revision=2019-03-08</capability>
<capability>urn:ietf:params:xml:ns:yang:iana-if-type?module=iana-if-type&revision=2014-05-08</capability>
<capability>urn:ietf:params:xml:ns:yang:ietf-interfaces?module=ietf-interfaces&revision=2014-05-08</capability>
<capability>urn:opendaylight:params:xml:ns:yang:controller:md:sal:binding:impl?module=opendaylight-sal-binding-broker-impl&revision=2013-10-28</capability>
<capability>urn:ietf:params:xml:ns:yang:ietf-netconf-monitoring?module=ietf-netconf-monitoring&revision=2010-10-04</capability>
<capability>http://openconfig.net/yang/bgp?module=openconfig-bgp&revision=2015-10-09</capability>
<capability>urn:opendaylight:params:xml:ns:yang:bgp-message?module=bgp-message&revision=2017-12-07</capability>
<capability>urn:opendaylight:params:xml:ns:yang:controller:config:legacy-entity-ownership-service-provider?module=opendaylight-legacy-entity-ownership-service-provider&revision=2016-02-26</capability>
<capability>http://openconfig.net/yang/bgp-multiprotocol?module=openconfig-bgp-multiprotocol&revision=2015-10-09</capability>
<capability>http://openconfig.net/yang/openconfig-ext?module=openconfig-extensions&revision=2015-10-09</capability>
<capability>http://openconfig.net/yang/bgp-types?module=openconfig-bgp-types&revision=2015-10-09</capability>
<capability>urn:opendaylight:params:xml:ns:yang:controller:md:sal:binding?module=opendaylight-md-sal-binding&revision=2013-10-28</capability>
<capability>urn:opendaylight:params:xml:ns:yang:bmp-message?module=bmp-message&revision=2017-12-07</capability>
<capability>urn:opendaylight:params:xml:ns:yang:controller:md:sal:binding:v1:codec?module=opendaylight-md-sal-binding-v1-codec&revision=2016-07-14</capability>
<capability>urn:opendaylight:params:xml:ns:yang:aaa?module=aaa&revision=2016-12-14</capability>
<capability>urn:opendaylight:params:xml:ns:yang:controller:md:sal:core:general-entity?module=general-entity&revision=2015-08-20</capability>
<capability>urn:opendaylight:params:xml:ns:yang:controller:md:sal:dom?module=opendaylight-md-sal-dom&revision=2013-10-28</capability>
<capability>urn:opendaylight:params:xml:ns:yang:bgp-evpn?module=odl-bgp-evpn&revision=2017-12-13</capability>
<capability>urn:opendaylight:params:xml:ns:yang:controller:md:sal:remote?module=sal-remote&revision=2014-01-14</capability>
<capability>http://openconfig.net/yang/policy-types?module=openconfig-policy-types&revision=2015-10-09</capability>
<capability>urn:opendaylight:params:xml:ns:yang:bgp-vpn-ipv6?module=bgp-vpn-ipv6&revision=2017-12-07</capability>
<capability>urn:opendaylight:params:xml:ns:yang:md:sal:config:impl:cluster-singleton-service?module=cluster-singleton-service-impl&revision=2016-07-18</capability>
<capability>urn:opendaylight:yang:extension:yang-ext?module=yang-ext&revision=2013-07-09</capability>
<capability>http://openconfig.net/yang/openconfig-types?module=openconfig-types&revision=2015-10-09</capability>
<capability>urn:ietf:params:xml:ns:yang:rpc-context?module=rpc-context&revision=2013-06-17</capability>
<capability>urn:opendaylight:params:xml:ns:yang:bgp-peer-rpc?module=bgp-peer-rpc&revision=2017-12-07</capability>
<capability>urn:opendaylight:params:xml:ns:yang:pmsi-tunnel?module=pmsi-tunnel&revision=2016-08-12</capability>
<capability>urn:ietf:params:xml:ns:yang:ietf-netconf-notifications?module=ietf-netconf-notifications&revision=2012-02-06</capability>
<capability>http://openconfig.net/yang/local-routing?module=openconfig-local-routing&revision=2015-10-09</capability>
<capability>urn:opendaylight:params:xml:ns:yang:controller:md:sal:core:spi:operational-dom-store?module=opendaylight-operational-dom-datastore&revision=2014-06-17</capability>
<capability>urn:opendaylight:params:xml:ns:yang:bgp-multiprotocol?module=bgp-multiprotocol&revision=2017-12-07</capability>
<capability>urn:ietf:params:xml:ns:netconf:base:1.0?module=ietf-netconf&revision=2011-06-01</capability>
<capability>urn:opendaylight:params:xml:ns:yang:controller:rfc2385:cfg?module=rfc2385&revision=2016-03-24</capability>
<capability>http://openconfig.net/yang/interfaces?module=openconfig-interfaces&revision=2016-04-12</capability>
<capability>urn:ietf:params:xml:ns:yang:ietf-restconf-monitoring?module=ietf-restconf-monitoring&revision=2017-01-26</capability>
<capability>http://openconfig.net/yang/network-instance-types?module=openconfig-network-instance-types&revision=2015-10-18</capability>
<capability>urn:TBD:params:xml:ns:yang:network-topology?module=network-topology&revision=2013-10-21</capability>
<capability>urn:opendaylight:params:xml:ns:yang:bmp-monitor?module=bmp-monitor&revision=2017-12-07</capability>
<capability>urn:ietf:params:xml:ns:yang:ietf-yang-types?module=ietf-yang-types&revision=2013-07-15</capability>
<capability>urn:opendaylight:params:xml:ns:yang:bgp-linkstate?module=bgp-linkstate&revision=2017-12-07</capability>
<capability>urn:opendaylight:params:xml:ns:yang:ieee754?module=ieee754&revision=2013-08-19</capability>
<capability>urn:TBD:params:xml:ns:yang:network-topology?module=network-topology&revision=2013-07-12</capability>
<capability>http://openconfig.net/yang/routing-policy?module=openconfig-routing-policy&revision=2015-10-09</capability>
<capability>urn:ietf:params:netconf:capability:candidate:1.0</capability>
<capability>urn:ietf:params:xml:ns:yang:ietf-restconf?module=ietf-restconf&revision=2013-10-19</capability>
<capability>urn:opendaylight:params:xml:ns:yang:controller:bgp:linkstate-app-config?module=bgp-linkstate-app-config&revision=2016-06-14</capability>
<capability>urn:opendaylight:params:xml:ns:yang:controller:md:sal:core:spi:entity-ownership-service?module=opendaylight-entity-ownership-service&revision=2015-08-10</capability>
<capability>urn:sal:restconf:event:subscription?module=sal-remote-augment&revision=2014-07-08</capability>
<capability>instance:identifier:patch:module?module=instance-identifier-patch-module&revision=2015-11-21</capability>
<capability>subscribe:to:notification?module=subscribe-to-notification&revision=2016-10-28</capability>
<capability>urn:opendaylight:params:xml:ns:yang:bgp-segment-routing-ext?module=bgp-segment-routing&revision=2015-10-14</capability>
<capability>urn:opendaylight:params:xml:ns:yang:bgp-rib?module=bgp-rib&revision=2017-12-07</capability>
<capability>urn:ietf:params:xml:ns:yang:ietf-restconf?module=ietf-restconf&revision=2017-01-26</capability>
<capability>config:aaa:authn:encrypt:service:config?module=aaa-encrypt-service-config&revision=2016-09-15</capability>
<capability>urn:opendaylight:params:xml:ns:yang:md:sal:config:spi:cluster-singleton-service?module=cluster-singleton-service-spi&revision=2016-07-18</capability>
<capability>urn:opendaylight:params:xml:ns:yang:bgp-labeled-unicast?module=bgp-labeled-unicast&revision=2017-12-07</capability>
<capability>urn:opendaylight:params:xml:ns:yang:bgp-epe?module=bgp-epe&revision=2015-06-22</capability>
<capability>http://openconfig.net/yang/bgp-policy?module=openconfig-bgp-policy&revision=2015-10-09</capability>
<capability>urn:opendaylight:params:xml:ns:yang:controller:md:sal:common?module=opendaylight-md-sal-common&revision=2013-10-28</capability>
<capability>urn:opendaylight:params:xml:ns:yang:footprint?module=footprint&revision=2017-08-30</capability>
<capability>urn:opendaylight:params:xml:ns:yang:controller:inmemory-datastore-provider?module=opendaylight-inmemory-datastore-provider&revision=2014-06-17</capability>
<capability>urn:opendaylight:params:xml:ns:yang:bmp-monitor-config?module=odl-bmp-monitor-config&revision=2017-12-07</capability>
<capability>urn:opendaylight:params:xml:ns:yang:network:concepts?module=network-concepts&revision=2013-11-25</capability>
<capability>urn:opendaylight:params:xml:ns:yang:iana?module=iana&revision=2013-08-16</capability>
<capability>urn:opendaylight:params:xml:ns:yang:bgp-vpn?module=bgp-vpn&revision=2017-12-07</capability>
<capability>urn:opendaylight:params:xml:ns:yang:controller:config?module=config&revision=2013-04-05</capability>
<capability>urn:opendaylight:params:xml:ns:yang:bgp-inet?module=bgp-inet&revision=2017-12-07</capability>
<capability>urn:opendaylight:params:xml:ns:yang:controller:netty:timer?module=netty-timer&revision=2013-11-19</capability>
<capability>urn:ietf:params:xml:ns:netconf:notification:1.0?module=notifications&revision=2008-07-14</capability>
<capability>urn:opendaylight:params:xml:ns:yang:bgp-vpn-ipv4?module=bgp-vpn-ipv4&revision=2017-12-07</capability>
<capability>urn:ietf:params:xml:ns:netmod:notification?module=nc-notifications&revision=2008-07-14</capability>
<capability>urn:opendaylight:params:xml:ns:yang:bgp-types?module=bgp-types&revision=2013-09-19</capability>
<capability>urn:ietf:params:xml:ns:yang:ietf-netconf-monitoring-extension?module=ietf-netconf-monitoring-extension&revision=2013-12-10</capability>
<capability>urn:opendaylight:params:xml:ns:yang:rsvp?module=rsvp&revision=2015-08-20</capability>
<capability>urn:opendaylight:aaa:app:config?module=aaa-app-config&revision=2017-06-19</capability>
<capability>urn:opendaylight:params:xml:ns:yang:mdsal:core:general-entity?module=odl-general-entity&revision=2015-09-30</capability>
<capability>urn:ietf:params:netconf:base:1.1</capability>
<capability>urn:ietf:params:netconf:base:1.0</capability>
<capability>http://openconfig.net/yang/network-instance?module=openconfig-network-instance&revision=2015-10-18</capability>
<capability>urn:opendaylight:params:xml:ns:yang:controller:md:sal:core:spi:config-dom-store?module=opendaylight-config-dom-datastore&revision=2014-06-17</capability>
<capability>urn:opendaylight:params:xml:ns:yang:bgp:openconfig-extensions?module=bgp-openconfig-extensions&revision=2017-12-07</capability>
<capability>http://openconfig.net/yang/bgp-operational?module=openconfig-bgp-operational&revision=2015-10-09</capability>
<capability>urn:opendaylight:params:xml:ns:yang:controller:netty?module=netty&revision=2013-11-19</capability>
<capability>urn:ietf:params:xml:ns:yang:ietf-yang-library?module=ietf-yang-library&revision=2016-06-21</capability>
<capability>urn:ietf:params:xml:ns:yang:ietf-inet-types?module=ietf-inet-types&revision=2013-07-15</capability>
</capabilities>
<session-id>1</session-id>
</hello>
From: Saravanan A (TECH)
Sent: Thursday, July 4, 2019 11:06 AM
To: Michal Čmarada <michal.cmarada@...>
Cc: honeycomb-dev@...; Peter Lapoš <peter.lapos@...>
Subject: RE: [honeycomb-dev] <module>-impl project code file generation
Hello Michal,
Thanks a lot for your answer and support.
Your solution to change the basic capabilities in NetconfServerDispatcherProvider.java solved my problem.
Now I am able to mount honeycomb server into ODL.
Regards,
Saran
Sensitivity: Internal & Restricted
-----Original Message-----
From: Michal Čmarada [mailto:michal.cmarada@...]
Sent: Monday, July 1, 2019 1:14 PM
To: Saravanan A (TECH) <saravanan.a75@...>
Cc: honeycomb-dev@...; Peter Lapoš <peter.lapos@...>
Subject: RE: [honeycomb-dev] <module>-impl project code file generation
** This mail has been sent from an external source. Treat hyperlinks and attachments in this email with caution**
Hi Saran,
We use implementation of Netconf from Opendaylight. This feature is loaded from original implementation of netconf. You can take a look at https://clicktime.symantec.com/3Y2c7TnDKfb2FK447jzCEhB7Vc?u=https%3A%2F%2Fgit.opendaylight.org%2Fgerrit%2Fgitweb%3Fp%3Dnetconf.git%3Ba%3Dtree%3Bf%3Dnetconf%2Fnetconf-netty-util%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fnetconf%2Fnettyutil%2Fhandler%2Fexi%3Bh%3Dbad12569de87e7ba9c666d5b21ed4bceffec5220%3Bhb%3Drefs%2Fheads%2Fmaster
What you can do first is modify the default capabilities that our netconf implementation is being started with. To do this you need to change the DEFAULT_BASE_CAPABILITIES Original implementation from odl netconf:
public static final Set<String> DEFAULT_BASE_CAPABILITIES = ImmutableSet.of("urn:ietf:params:netconf:base:1.0", "urn:ietf:params:netconf:base:1.1", "urn:ietf:params:netconf:capability:exi:1.0");
to a custom set without exi:1.0
public static final Set<String> DEFAULT_ CAPABILITIES = ImmutableSet.of("urn:ietf:params:netconf:base:1.0", "urn:ietf:params:netconf:base:1.1");
You can find this in NetconfServerDispatcherProvider class. Located in honeycomb/infra/northbound/netconf/src/main/java/io/fd/honeycomb/northbound/netconf/NetconfServerDispatcherProvider.java
This should be enough and honeycomb shouldn't report this capability anymore. Since this hasn't been used in honeycomb it shouldn't be a problem if the feature is removed. However I haven`t tested this so I am not sure what this will cause. And if netconf has some internal dependencies on this feature you may run into other errors. You would need to test this by yourself.
Hopefully this will work. But if it doesnt the other options would be to create a dummy handler for this feature in honeycomb (or try to do a propper full implementation). Next option is to modify the Netconf implementation in honeycomb to remove this feature (not sure if this is possible and how hard it can be). Or you can build your own version of netconf without the exi support and built honeycomb on top of it.
Michal
From: Marek Grądzki <margradz@...>
Sent: Thursday, June 27, 2019 12:45 PM
To: saravanan.a75@...; Michal Cmarada -X (mcmarada - PANTHEON TECHNOLOGIES at Cisco) <mcmarada@...>
Subject: Re: [honeycomb-dev] <module>-impl project code file generation
Hello Saran,
I am no longer actively involved in the project.
Adding Michal Cmarada, current PTL, to CC.
Regards,
Marek
czw., 27 cze 2019 o 10:53 saravanan.a75@... <saravanan.a75@...> napisał(a):
>
> Hello Team,
>
> Any update on this query?
>
> Regards,
> Saran
>
>
>
> -----Original Message-----
> From: Saravanan A (TECH)
> Sent: Tuesday, June 25, 2019 7:00 PM
> To: Marek Grądzki <margradz@...>; honeycomb-dev@...
> Subject: RE: [honeycomb-dev] <module>-impl project code file
> generation
>
> Hello Team/ Marek,
>
> I have developed a simulator using honeycomb 08_10 version and testing it with opendaylight controller.
>
> Honeycomb agent is sending "urn:ietf:params:netconf:capability:exi:1.0" as part of initial <hello> message.
> So opendaylight start sending binary request data as described in https://clicktime.symantec.com/3DWmpigZygsWXTdQEQrgG6Z7Vc?u=https%3A%2F%2Ftools.ietf.org%2Fid%2Fdraft-varga-netconf-exi-capability-00.html%23W3C.REC-exi-20110310 to honeycomb agent and I am getting deserialization exception in Honeycomb while reading this binary request data.
>
> I have following questions:
> 1. I would like to remove this "urn:ietf:params:netconf:capability:exi:1.0" capability from the <hello> message. Where in honeycomb code this capability is mentioned?
> 2. Is this W3C.REC-exi-20110310 EXI feature really supported in honeycomb? If so, why I am getting deserialization exception?
>
> Regards,
> Saran
>
>
>
> Sensitivity: Internal & Restricted
>
> -----Original Message-----
> From: Marek Grądzki [mailto:margradz@...]
> Sent: Friday, August 31, 2018 11:55 AM
> To: Saravanan A (Communications-Telecom Equipment)
> Cc: honeycomb-dev@...
> Subject: Re: [honeycomb-dev] <module>-impl project code file
> generation
>
> ** This mail has been sent from an external source. Treat hyperlinks
> and attachments in this email with caution**
>
> Hello Saran,
>
> generating netconf agent based on custom model is not supported.
>
> But feel free to create jira ticket if you are interested in the feature.
> Contributions to design/implementation are welcomed!
>
> Currently Honeycomb plugin archetype generates maven project structure, code and documentation only for the sample model (parametrized by root artifact id):
> https://clicktime.symantec.com/37CEjWJgYbmpnNUpRvjUNPA7Vc?u=https%3A%2
> F%2Fgit.fd.io%2Fhoneycomb%2Ftree%2Ftools%2Farchetype%2Fsrc%2Fmain%2Fre
> sources%2Far
> chetype-resources/__rootArtifactId__-api/src/main/yang/__rootArtifactI
> d__.yang
>
> Here is relevant patch where you can find more info:
> https://clicktime.symantec.com/3XiMvybPV57vdgoqBshFYtd7Vc?u=https%3A%2
> F%2Fgerrit.fd.io%2Fr%2F%23%2Fc%2F2429%2F
>
> You can find more examples in:
> https://clicktime.symantec.com/3Cw91tvzguNH9xJHuiA4wnQ7Vc?u=https%3A%2
> F%2Fdocs.fd.io%2Fhoneycomb%2F1.18.10-SNAPSHOT%2Frelease-notes-aggregat
> or
> /release_notes.html#_devel_guide
> https://clicktime.symantec.com/3Wquvr7n5EQJAG75DKgSKm37Vc?u=https%3A%2
> F%2Fgit.fd.io%2Fhoneycomb%2Ftree%2Fsamples
>
> Please also take a look at https://clicktime.symantec.com/3JmsWLQWoXrwQrJ8nLvVpMc7Vc?u=https%3A%2F%2Fwiki.fd.io%2Fview%2FHc2vpp which is Honeycomb agent for VPP.
>
> Regards,
> Marek
>
> śr., 29 sie 2018 o 05:16 saravanan.a75@... <saravanan.a75@...> napisał(a):
> >
> > Hello Team,
> >
> >
> >
> > I am using honeycomb 18.07 version. Trying to bring up Netconf server for my own yang model file.
> >
> >
> >
> > I modified the “honeycomb/enodebsim/enodebsim-api/src/main/yang/enodebsim.yang” file with my yang content.
> >
> > Then I did the following:
> >
> > $cd honeycomb/
> >
> > $ rm enodebsim/pom.xml enodebsim/enodebsim-api/pom.xml
> >
> > $ vi pom.xml #removed the enodebsim from Module list
> >
> > $ mvn -X archetype:generate
> > -DarchetypeGroupId=io.fd.honeycomb.tools
> > -DarchetypeArtifactId=honeycomb-plugin-archetype
> > -DarchetypeVersion=1.18.10-SNAPSHOT -DinteractiveMode=false
> > -DgroupId=org.onap.ransim -DartifactId=enodebsim
> > -Dversion=1.0.0-SNAPSHOT -Dpackage=org.onap.ransim
> >
> > $cd honeycomb/enodebsim/
> >
> > $mvn clean install
> >
> >
> >
> > This generated the java files for my new yang model. However the code generated in “honeycomb/enodebsim/enodebsim-impl” is not referring my new yang model. It still uses the old sample yang model.
> >
> >
> >
> > Will the generate netconf agent automatically includes new yang model into capabilities?
> >
> >
> >
> > Pls let me know if I missed any steps. If you can share the link/doc explaining what needs to be done for custom yang model simulation?
> >
> >
> >
> >
> >
> > Regards,
> > Saran
> >
> >
> >
> >
> >
> > Sensitivity: Internal & Restricted
> >
> > The information contained in this electronic message and any
> > attachments to this message are intended for the exclusive use of
> > the
> > addressee(s) and may contain proprietary, confidential or privileged
> > information. If you are not the intended recipient, you should not
> > disseminate, distribute or copy this e-mail. Please notify the
> > sender immediately and destroy all copies of this message and any
> > attachments. WARNING: Computer viruses can be transmitted via email.
> > The recipient should check this email and any attachments for the
> > presence of viruses. The company accepts no liability for any damage
> > caused by any virus transmitted by this email.
> > https://clicktime.symantec.com/3LHWiJpF3JyaLm7PsYhEnAt7Vc?u=www.wipr
> > o.com
> > -=-=-=-=-=-=-=-=-=-=-=-
> > Links: You receive all messages sent to this group.
> >
> > View/Reply Online (#816):
> > https://clicktime.symantec.com/34cdidSm8tEP2DpNMjyZbau7Vc?u=https%3A
> > %2F%2Flists.fd.io%2Fg%2Fhoneycomb-dev%2Fmessage%2F816
> > Mute This Topic:
> > https://clicktime.symantec.com/33pfbLXCFawi25CcVEfKseV7Vc?u=https%3A
> > %2F%2Flists.fd.io%2Fmt%2F25070762%2F675181
> > Group Owner: honeycomb-dev+owner@...
> > Unsubscribe:
> > https://clicktime.symantec.com/3SmoByB9kTv6p7PwM85RwUX7Vc?u=https%3A
> > %2F%2Flists.fd.io%2Fg%2Fhoneycomb-dev%2Funsub
> > [margradz@...]
> > -=-=-=-=-=-=-=-=-=-=-=-
> The information contained in this electronic message and any
> attachments to this message are intended for the exclusive use of the
> addressee(s) and may contain proprietary, confidential or privileged
> information. If you are not the intended recipient, you should not
> disseminate, distribute or copy this e-mail. Please notify the sender
> immediately and destroy all copies of this message and any
> attachments. WARNING: Computer viruses can be transmitted via email.
> The recipient should check this email and any attachments for the
> presence of viruses. The company accepts no liability for any damage
> caused by any virus transmitted by this email.
> https://clicktime.symantec.com/3LHWiJpF3JyaLm7PsYhEnAt7Vc?u=www.wipro.
> com
The information contained in this electronic message and any attachments to this message are intended for the exclusive use of the addressee(s) and may contain proprietary, confidential or privileged information. If you are not the intended recipient, you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately and destroy all copies of this message and any attachments. WARNING: Computer viruses can be transmitted via email. The recipient should check this email and any attachments for the presence of viruses. The company accepts no liability for any damage caused by any virus transmitted by this email. www.wipro.comHi
This is all related to BGP so if you are not using BGP capabilities it is best to disable all modules for BGP. Take a look in infra/northbound/pom.xml. It contains northbound modules. You can remove bgp and bgp-extensions.
Also you may need to remove other BGP related stuff. In infra/pom.xml. you can remove modules for BGP too (bgp-translate-api, bgp-translate-impl, bgp-distribution-test). You may need to take a look in other pom.xml files and look for BGP. The advantage of disable for all modules will be faster builds, less code to maintain. Once rebuilt it should not contain any BGP capabilities anymore.
Michal
Sent: Thursday, July 4, 2019 11:52 AM
To: Michal Čmarada <michal.cmarada@...>
Cc: honeycomb-dev@...; Peter Lapoš <peter.lapos@...>
Subject: RE: [honeycomb-dev] <module>-impl project code file generation
Hello Michal,
I have one more related question.
Honeycomb is sending lot of yang capabilities. Where is this list maintained? Can I remove some unused capabilities and keep only my yang capability?
How to do this?
Regards,
Saran
<hello xmlns="urn:ietf:params:xml:ns:netconf:base:1.0">
<capabilities>
<capability>org:onap:ccsdk:features:sdnr:northbound:oofpcipoc?module=oofpcipoc&revision=2019-03-08</capability>
<capability>urn:ietf:params:xml:ns:yang:iana-if-type?module=iana-if-type&revision=2014-05-08</capability>
<capability>urn:ietf:params:xml:ns:yang:ietf-interfaces?module=ietf-interfaces&revision=2014-05-08</capability>
<capability>urn:opendaylight:params:xml:ns:yang:controller:md:sal:binding:impl?module=opendaylight-sal-binding-broker-impl&revision=2013-10-28</capability>
<capability>urn:ietf:params:xml:ns:yang:ietf-netconf-monitoring?module=ietf-netconf-monitoring&revision=2010-10-04</capability>
<capability>http://openconfig.net/yang/bgp?module=openconfig-bgp&revision=2015-10-09</capability>
<capability>urn:opendaylight:params:xml:ns:yang:bgp-message?module=bgp-message&revision=2017-12-07</capability>
<capability>urn:opendaylight:params:xml:ns:yang:controller:config:legacy-entity-ownership-service-provider?module=opendaylight-legacy-entity-ownership-service-provider&revision=2016-02-26</capability>
<capability>http://openconfig.net/yang/bgp-multiprotocol?module=openconfig-bgp-multiprotocol&revision=2015-10-09</capability>
<capability>http://openconfig.net/yang/openconfig-ext?module=openconfig-extensions&revision=2015-10-09</capability>
<capability>http://openconfig.net/yang/bgp-types?module=openconfig-bgp-types&revision=2015-10-09</capability>
<capability>urn:opendaylight:params:xml:ns:yang:controller:md:sal:binding?module=opendaylight-md-sal-binding&revision=2013-10-28</capability>
<capability>urn:opendaylight:params:xml:ns:yang:bmp-message?module=bmp-message&revision=2017-12-07</capability>
<capability>urn:opendaylight:params:xml:ns:yang:controller:md:sal:binding:v1:codec?module=opendaylight-md-sal-binding-v1-codec&revision=2016-07-14</capability>
<capability>urn:opendaylight:params:xml:ns:yang:aaa?module=aaa&revision=2016-12-14</capability>
<capability>urn:opendaylight:params:xml:ns:yang:controller:md:sal:core:general-entity?module=general-entity&revision=2015-08-20</capability>
<capability>urn:opendaylight:params:xml:ns:yang:controller:md:sal:dom?module=opendaylight-md-sal-dom&revision=2013-10-28</capability>
<capability>urn:opendaylight:params:xml:ns:yang:bgp-evpn?module=odl-bgp-evpn&revision=2017-12-13</capability>
<capability>urn:opendaylight:params:xml:ns:yang:controller:md:sal:remote?module=sal-remote&revision=2014-01-14</capability>
<capability>http://openconfig.net/yang/policy-types?module=openconfig-policy-types&revision=2015-10-09</capability>
<capability>urn:opendaylight:params:xml:ns:yang:bgp-vpn-ipv6?module=bgp-vpn-ipv6&revision=2017-12-07</capability>
<capability>urn:opendaylight:params:xml:ns:yang:md:sal:config:impl:cluster-singleton-service?module=cluster-singleton-service-impl&revision=2016-07-18</capability>
<capability>urn:opendaylight:yang:extension:yang-ext?module=yang-ext&revision=2013-07-09</capability>
<capability>http://openconfig.net/yang/openconfig-types?module=openconfig-types&revision=2015-10-09</capability>
<capability>urn:ietf:params:xml:ns:yang:rpc-context?module=rpc-context&revision=2013-06-17</capability>
<capability>urn:opendaylight:params:xml:ns:yang:bgp-peer-rpc?module=bgp-peer-rpc&revision=2017-12-07</capability>
<capability>urn:opendaylight:params:xml:ns:yang:pmsi-tunnel?module=pmsi-tunnel&revision=2016-08-12</capability>
<capability>urn:ietf:params:xml:ns:yang:ietf-netconf-notifications?module=ietf-netconf-notifications&revision=2012-02-06</capability>
<capability>http://openconfig.net/yang/local-routing?module=openconfig-local-routing&revision=2015-10-09</capability>
<capability>urn:opendaylight:params:xml:ns:yang:controller:md:sal:core:spi:operational-dom-store?module=opendaylight-operational-dom-datastore&revision=2014-06-17</capability>
<capability>urn:opendaylight:params:xml:ns:yang:bgp-multiprotocol?module=bgp-multiprotocol&revision=2017-12-07</capability>
<capability>urn:ietf:params:xml:ns:netconf:base:1.0?module=ietf-netconf&revision=2011-06-01</capability>
<capability>urn:opendaylight:params:xml:ns:yang:controller:rfc2385:cfg?module=rfc2385&revision=2016-03-24</capability>
<capability>http://openconfig.net/yang/interfaces?module=openconfig-interfaces&revision=2016-04-12</capability>
<capability>urn:ietf:params:xml:ns:yang:ietf-restconf-monitoring?module=ietf-restconf-monitoring&revision=2017-01-26</capability>
<capability>urn:TBD:params:xml:ns:yang:network-topology?module=network-topology&revision=2013-10-21</capability>
<capability>urn:opendaylight:params:xml:ns:yang:bmp-monitor?module=bmp-monitor&revision=2017-12-07</capability>
<capability>urn:ietf:params:xml:ns:yang:ietf-yang-types?module=ietf-yang-types&revision=2013-07-15</capability>
<capability>urn:opendaylight:params:xml:ns:yang:bgp-linkstate?module=bgp-linkstate&revision=2017-12-07</capability>
<capability>urn:opendaylight:params:xml:ns:yang:ieee754?module=ieee754&revision=2013-08-19</capability>
<capability>urn:TBD:params:xml:ns:yang:network-topology?module=network-topology&revision=2013-07-12</capability>
<capability>http://openconfig.net/yang/routing-policy?module=openconfig-routing-policy&revision=2015-10-09</capability>
<capability>urn:ietf:params:netconf:capability:candidate:1.0</capability>
<capability>urn:ietf:params:xml:ns:yang:ietf-restconf?module=ietf-restconf&revision=2013-10-19</capability>
<capability>urn:opendaylight:params:xml:ns:yang:controller:bgp:linkstate-app-config?module=bgp-linkstate-app-config&revision=2016-06-14</capability>
<capability>urn:opendaylight:params:xml:ns:yang:controller:md:sal:core:spi:entity-ownership-service?module=opendaylight-entity-ownership-service&revision=2015-08-10</capability>
<capability>urn:sal:restconf:event:subscription?module=sal-remote-augment&revision=2014-07-08</capability>
<capability>instance:identifier:patch:module?module=instance-identifier-patch-module&revision=2015-11-21</capability>
<capability>subscribe:to:notification?module=subscribe-to-notification&revision=2016-10-28</capability>
<capability>urn:opendaylight:params:xml:ns:yang:bgp-segment-routing-ext?module=bgp-segment-routing&revision=2015-10-14</capability>
<capability>urn:opendaylight:params:xml:ns:yang:bgp-rib?module=bgp-rib&revision=2017-12-07</capability>
<capability>urn:ietf:params:xml:ns:yang:ietf-restconf?module=ietf-restconf&revision=2017-01-26</capability>
<capability>config:aaa:authn:encrypt:service:config?module=aaa-encrypt-service-config&revision=2016-09-15</capability>
<capability>urn:opendaylight:params:xml:ns:yang:md:sal:config:spi:cluster-singleton-service?module=cluster-singleton-service-spi&revision=2016-07-18</capability>
<capability>urn:opendaylight:params:xml:ns:yang:bgp-labeled-unicast?module=bgp-labeled-unicast&revision=2017-12-07</capability>
<capability>urn:opendaylight:params:xml:ns:yang:bgp-epe?module=bgp-epe&revision=2015-06-22</capability>
<capability>http://openconfig.net/yang/bgp-policy?module=openconfig-bgp-policy&revision=2015-10-09</capability>
<capability>urn:opendaylight:params:xml:ns:yang:controller:md:sal:common?module=opendaylight-md-sal-common&revision=2013-10-28</capability>
<capability>urn:opendaylight:params:xml:ns:yang:footprint?module=footprint&revision=2017-08-30</capability>
<capability>urn:opendaylight:params:xml:ns:yang:controller:inmemory-datastore-provider?module=opendaylight-inmemory-datastore-provider&revision=2014-06-17</capability>
<capability>urn:opendaylight:params:xml:ns:yang:bmp-monitor-config?module=odl-bmp-monitor-config&revision=2017-12-07</capability>
<capability>urn:opendaylight:params:xml:ns:yang:network:concepts?module=network-concepts&revision=2013-11-25</capability>
<capability>urn:opendaylight:params:xml:ns:yang:iana?module=iana&revision=2013-08-16</capability>
<capability>urn:opendaylight:params:xml:ns:yang:bgp-vpn?module=bgp-vpn&revision=2017-12-07</capability>
<capability>urn:opendaylight:params:xml:ns:yang:controller:config?module=config&revision=2013-04-05</capability>
<capability>urn:opendaylight:params:xml:ns:yang:bgp-inet?module=bgp-inet&revision=2017-12-07</capability>
<capability>urn:opendaylight:params:xml:ns:yang:controller:netty:timer?module=netty-timer&revision=2013-11-19</capability>
<capability>urn:ietf:params:xml:ns:netconf:notification:1.0?module=notifications&revision=2008-07-14</capability>
<capability>urn:opendaylight:params:xml:ns:yang:bgp-vpn-ipv4?module=bgp-vpn-ipv4&revision=2017-12-07</capability>
<capability>urn:ietf:params:xml:ns:netmod:notification?module=nc-notifications&revision=2008-07-14</capability>
<capability>urn:opendaylight:params:xml:ns:yang:bgp-types?module=bgp-types&revision=2013-09-19</capability>
<capability>urn:ietf:params:xml:ns:yang:ietf-netconf-monitoring-extension?module=ietf-netconf-monitoring-extension&revision=2013-12-10</capability>
<capability>urn:opendaylight:params:xml:ns:yang:rsvp?module=rsvp&revision=2015-08-20</capability>
<capability>urn:opendaylight:aaa:app:config?module=aaa-app-config&revision=2017-06-19</capability>
<capability>urn:opendaylight:params:xml:ns:yang:mdsal:core:general-entity?module=odl-general-entity&revision=2015-09-30</capability>
<capability>urn:ietf:params:netconf:base:1.1</capability>
<capability>urn:ietf:params:netconf:base:1.0</capability>
<capability>http://openconfig.net/yang/network-instance?module=openconfig-network-instance&revision=2015-10-18</capability>
<capability>urn:opendaylight:params:xml:ns:yang:controller:md:sal:core:spi:config-dom-store?module=opendaylight-config-dom-datastore&revision=2014-06-17</capability>
<capability>urn:opendaylight:params:xml:ns:yang:bgp:openconfig-extensions?module=bgp-openconfig-extensions&revision=2017-12-07</capability>
<capability>http://openconfig.net/yang/bgp-operational?module=openconfig-bgp-operational&revision=2015-10-09</capability>
<capability>urn:opendaylight:params:xml:ns:yang:controller:netty?module=netty&revision=2013-11-19</capability>
<capability>urn:ietf:params:xml:ns:yang:ietf-yang-library?module=ietf-yang-library&revision=2016-06-21</capability>
<capability>urn:ietf:params:xml:ns:yang:ietf-inet-types?module=ietf-inet-types&revision=2013-07-15</capability>
</capabilities>
<session-id>1</session-id>
</hello>
-----Original Message-----
From: Saravanan A (TECH)
Sent: Thursday, July 4, 2019 11:06 AM
To: Michal Čmarada <michal.cmarada@...>
Cc: honeycomb-dev@...; Peter Lapoš <peter.lapos@...>
Subject: RE: [honeycomb-dev] <module>-impl project code file generation
Hello Michal,
Thanks a lot for your answer and support.
Your solution to change the basic capabilities in NetconfServerDispatcherProvider.java solved my problem.
Now I am able to mount honeycomb server into ODL.
Regards,
Saran
Sensitivity: Internal & Restricted
-----Original Message-----
From: Michal Čmarada [mailto:michal.cmarada@...]
Sent: Monday, July 1, 2019 1:14 PM
To: Saravanan A (TECH) <saravanan.a75@...>
Cc: honeycomb-dev@...; Peter Lapoš <peter.lapos@...>
Subject: RE: [honeycomb-dev] <module>-impl project code file generation
** This mail has been sent from an external source. Treat hyperlinks and attachments in this email with caution**
Hi Saran,
We use implementation of Netconf from Opendaylight. This feature is loaded from original implementation of netconf. You can take a look at https://clicktime.symantec.com/3Y2c7TnDKfb2FK447jzCEhB7Vc?u=https%3A%2F%2Fgit.opendaylight.org%2Fgerrit%2Fgitweb%3Fp%3Dnetconf.git%3Ba%3Dtree%3Bf%3Dnetconf%2Fnetconf-netty-util%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fnetconf%2Fnettyutil%2Fhandler%2Fexi%3Bh%3Dbad12569de87e7ba9c666d5b21ed4bceffec5220%3Bhb%3Drefs%2Fheads%2Fmaster
What you can do first is modify the default capabilities that our netconf implementation is being started with. To do this you need to change the DEFAULT_BASE_CAPABILITIES Original implementation from odl netconf:
public static final Set<String> DEFAULT_BASE_CAPABILITIES = ImmutableSet.of("urn:ietf:params:netconf:base:1.0", "urn:ietf:params:netconf:base:1.1", "urn:ietf:params:netconf:capability:exi:1.0");
to a custom set without exi:1.0
public static final Set<String> DEFAULT_ CAPABILITIES = ImmutableSet.of("urn:ietf:params:netconf:base:1.0", "urn:ietf:params:netconf:base:1.1");
You can find this in NetconfServerDispatcherProvider class. Located in honeycomb/infra/northbound/netconf/src/main/java/io/fd/honeycomb/northbound/netconf/NetconfServerDispatcherProvider.java
This should be enough and honeycomb shouldn't report this capability anymore. Since this hasn't been used in honeycomb it shouldn't be a problem if the feature is removed. However I haven`t tested this so I am not sure what this will cause. And if netconf has some internal dependencies on this feature you may run into other errors. You would need to test this by yourself.
Hopefully this will work. But if it doesnt the other options would be to create a dummy handler for this feature in honeycomb (or try to do a propper full implementation). Next option is to modify the Netconf implementation in honeycomb to remove this feature (not sure if this is possible and how hard it can be). Or you can build your own version of netconf without the exi support and built honeycomb on top of it.
Michal
From: Marek Grądzki <margradz@...>
Sent: Thursday, June 27, 2019 12:45 PM
To: saravanan.a75@...; Michal Cmarada -X (mcmarada - PANTHEON TECHNOLOGIES at Cisco) <mcmarada@...>
Subject: Re: [honeycomb-dev] <module>-impl project code file generation
Hello Saran,
I am no longer actively involved in the project.
Adding Michal Cmarada, current PTL, to CC.
Regards,
Marek
czw., 27 cze 2019 o 10:53 saravanan.a75@... <saravanan.a75@...> napisał(a):
>
> Hello Team,
>
> Any update on this query?
>
> Regards,
> Saran
>
>
>
> -----Original Message-----
> From: Saravanan A (TECH)
> Sent: Tuesday, June 25, 2019 7:00 PM
> To: Marek Grądzki <margradz@...>; honeycomb-dev@...
> Subject: RE: [honeycomb-dev] <module>-impl project code file
> generation
>
> Hello Team/ Marek,
>
> I have developed a simulator using honeycomb 08_10 version and testing it with opendaylight controller.
>
> Honeycomb agent is sending "urn:ietf:params:netconf:capability:exi:1.0" as part of initial <hello> message.
> So opendaylight start sending binary request data as described in https://clicktime.symantec.com/3DWmpigZygsWXTdQEQrgG6Z7Vc?u=https%3A%2F%2Ftools.ietf.org%2Fid%2Fdraft-varga-netconf-exi-capability-00.html%23W3C.REC-exi-20110310 to honeycomb agent and I am getting deserialization exception in Honeycomb while reading this binary request data.
>
> I have following questions:
> 1. I would like to remove this "urn:ietf:params:netconf:capability:exi:1.0" capability from the <hello> message. Where in honeycomb code this capability is mentioned?
> 2. Is this W3C.REC-exi-20110310 EXI feature really supported in honeycomb? If so, why I am getting deserialization exception?
>
> Regards,
> Saran
>
>
>
> Sensitivity: Internal & Restricted
>
> -----Original Message-----
> From: Marek Grądzki [mailto:margradz@...]
> Sent: Friday, August 31, 2018 11:55 AM
> To: Saravanan A (Communications-Telecom Equipment)
> Cc: honeycomb-dev@...
> Subject: Re: [honeycomb-dev] <module>-impl project code file
> generation
>
> ** This mail has been sent from an external source. Treat hyperlinks
> and attachments in this email with caution**
>
> Hello Saran,
>
> generating netconf agent based on custom model is not supported.
>
> But feel free to create jira ticket if you are interested in the feature.
> Contributions to design/implementation are welcomed!
>
> Currently Honeycomb plugin archetype generates maven project structure, code and documentation only for the sample model (parametrized by root artifact id):
> https://clicktime.symantec.com/37CEjWJgYbmpnNUpRvjUNPA7Vc?u=https%3A%2
> F%2Fgit.fd.io%2Fhoneycomb%2Ftree%2Ftools%2Farchetype%2Fsrc%2Fmain%2Fre
> sources%2Far
> chetype-resources/__rootArtifactId__-api/src/main/yang/__rootArtifactI
> d__.yang
>
> Here is relevant patch where you can find more info:
> https://clicktime.symantec.com/3XiMvybPV57vdgoqBshFYtd7Vc?u=https%3A%2
> F%2Fgerrit.fd.io%2Fr%2F%23%2Fc%2F2429%2F
>
> You can find more examples in:
> https://clicktime.symantec.com/3Cw91tvzguNH9xJHuiA4wnQ7Vc?u=https%3A%2
> F%2Fdocs.fd.io%2Fhoneycomb%2F1.18.10-SNAPSHOT%2Frelease-notes-aggregat
> or
> /release_notes.html#_devel_guide
> https://clicktime.symantec.com/3Wquvr7n5EQJAG75DKgSKm37Vc?u=https%3A%2
> F%2Fgit.fd.io%2Fhoneycomb%2Ftree%2Fsamples
>
> Please also take a look at https://clicktime.symantec.com/3JmsWLQWoXrwQrJ8nLvVpMc7Vc?u=https%3A%2F%2Fwiki.fd.io%2Fview%2FHc2vpp which is Honeycomb agent for VPP.
>
> Regards,
> Marek
>
> śr., 29 sie 2018 o 05:16 saravanan.a75@... <saravanan.a75@...> napisał(a):
> >
> > Hello Team,
> >
> >
> >
> > I am using honeycomb 18.07 version. Trying to bring up Netconf server for my own yang model file.
> >
> >
> >
> > I modified the “honeycomb/enodebsim/enodebsim-api/src/main/yang/enodebsim.yang” file with my yang content.
> >
> > Then I did the following:
> >
> > $cd honeycomb/
> >
> > $ rm enodebsim/pom.xml enodebsim/enodebsim-api/pom.xml
> >
> > $ vi pom.xml #removed the enodebsim from Module list
> >
> > $ mvn -X archetype:generate
> > -DarchetypeGroupId=io.fd.honeycomb.tools
> > -DarchetypeArtifactId=honeycomb-plugin-archetype
> > -DarchetypeVersion=1.18.10-SNAPSHOT -DinteractiveMode=false
> > -DgroupId=org.onap.ransim -DartifactId=enodebsim
> > -Dversion=1.0.0-SNAPSHOT -Dpackage=org.onap.ransim
> >
> > $cd honeycomb/enodebsim/
> >
> > $mvn clean install
> >
> >
> >
> > This generated the java files for my new yang model. However the code generated in “honeycomb/enodebsim/enodebsim-impl” is not referring my new yang model. It still uses the old sample yang model.
> >
> >
> >
> > Will the generate netconf agent automatically includes new yang model into capabilities?
> >
> >
> >
> > Pls let me know if I missed any steps. If you can share the link/doc explaining what needs to be done for custom yang model simulation?
> >
> >
> >
> >
> >
> > Regards,
> > Saran
> >
> >
> >
> >
> >
> > Sensitivity: Internal & Restricted
> >
> > The information contained in this electronic message and any
> > attachments to this message are intended for the exclusive use of
> > the
> > addressee(s) and may contain proprietary, confidential or privileged
> > information. If you are not the intended recipient, you should not
> > disseminate, distribute or copy this e-mail. Please notify the
> > sender immediately and destroy all copies of this message and any
> > attachments. WARNING: Computer viruses can be transmitted via email.
> > The recipient should check this email and any attachments for the
> > presence of viruses. The company accepts no liability for any damage
> > caused by any virus transmitted by this email.
> > https://clicktime.symantec.com/3LHWiJpF3JyaLm7PsYhEnAt7Vc?u=www.wipr
> > o.com
> > -=-=-=-=-=-=-=-=-=-=-=-
> > Links: You receive all messages sent to this group.
> >
> > View/Reply Online (#816):
> > https://clicktime.symantec.com/34cdidSm8tEP2DpNMjyZbau7Vc?u=https%3A
> > %2F%2Flists.fd.io%2Fg%2Fhoneycomb-dev%2Fmessage%2F816
> > Mute This Topic:
> > https://clicktime.symantec.com/33pfbLXCFawi25CcVEfKseV7Vc?u=https%3A
> > %2F%2Flists.fd.io%2Fmt%2F25070762%2F675181
> > Group Owner: honeycomb-dev+owner@...
> > Unsubscribe:
> > https://clicktime.symantec.com/3SmoByB9kTv6p7PwM85RwUX7Vc?u=https%3A
> > %2F%2Flists.fd.io%2Fg%2Fhoneycomb-dev%2Funsub
> > [margradz@...]
> > -=-=-=-=-=-=-=-=-=-=-=-
> The information contained in this electronic message and any
> attachments to this message are intended for the exclusive use of the
> addressee(s) and may contain proprietary, confidential or privileged
> information. If you are not the intended recipient, you should not
> disseminate, distribute or copy this e-mail. Please notify the sender
> immediately and destroy all copies of this message and any
> attachments. WARNING: Computer viruses can be transmitted via email.
> The recipient should check this email and any attachments for the
> presence of viruses. The company accepts no liability for any damage
> caused by any virus transmitted by this email.
> https://clicktime.symantec.com/3LHWiJpF3JyaLm7PsYhEnAt7Vc?u=www.wipro.
> com
The information contained in this electronic message and any attachments to this message are intended for the exclusive use of the addressee(s) and may contain proprietary, confidential or privileged information. If you are not the intended recipient, you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately and destroy all copies of this message and any attachments. WARNING: Computer viruses can be transmitted via email. The recipient should check this email and any attachments for the presence of viruses. The company accepts no liability for any damage caused by any virus transmitted by this email. www.wipro.com