Search code examples
nettyietf-netconf

Does netty.io support netconf protocol?


I am trying to create a netconf client. I am already using netty.io jar in the project. I want to know if netty.io support netconf or is there any plan for that ? Is there any way I can write neconf client using netty.io ?

I wrote simple ssh java program, but it does not connect to netconf on a particular port. So I am thinking to use netty.io library to do this.


Solution

  • It is not included in Netty but you could write your own codec for it. Netty is protocol agnostic, so this should be no problem.