Questions tagged [opendaylight]

The OpenDaylight Project is a collaborative open source project that aims to accelerate adoption of Software-Defined Networking (SDN) and create a solid foundation for Network Functions Virtualization (NFV) for a more transparent approach that fosters new innovation and reduces risk.

The OpenDaylight Project is a collaborative open source project that aims to accelerate adoption of Software-Defined Networking (SDN) and create a solid foundation for Network Functions Virtualization (NFV) for a more transparent approach that fosters new innovation and reduces risk.

543 questions
0
votes
2 answers

How to configure swagger UI of Restconf in Opendaylight

Recently, I updated ODL project from Boron to Carbon. Before when I open one API in the UI, those details defined in Yang model of each rpc wasn't showed in "Response Class". After the upgrade, all the details are showed up, which takes time to…
HAO
  • 85
  • 8
0
votes
2 answers

Where are the java files of NodeConnectorRef?

I'm working with the bundle of l2switch-release-beryllium-sr3 and I would like to know the methods of some classes like NodeConnectorRef or Node but I don't find these classes. Someone could tell me where to find them? import…
0
votes
1 answer

opendaylight: what is the purpose of InstructionKey?

I am programming an SDN application using opendaylight. I see that an InstructionKey is required to create an instruction but I don't know where it is used. Any idea what it's use is? I am always setting it to new InstructionKey(0) but I am not…
0
votes
1 answer

opendaylight: using external jar file

I am developing an application on opendaylight Carbon (based on Karaf). I need to use a library (specifically dnsjava) in my bundle. How do I go about including this? I tried the following which did not work: In my features/pom.xml, I included a…
0
votes
1 answer

Opendaylight YANG tools search path

I am developing a service for opendaylight (carbon). I want to use ietf-access-control-list@2017-06-16.yang instead of the existing ietf-access-control-list.yang that comes with the ODL Carbon distribution. How can I direct the yangtool to pick up…
0
votes
2 answers

opendaylight: Genius install flow in switch

I am using opendaylight / Carbon and am trying to work with the Genius wrapper. I want to install a flow in a switch based on a MAC address match for an incoming packet. The instruction I want to install is a "GOTO" instruction. I proceed as…
0
votes
2 answers

Opendaylight: how to get MAC address of switch from datapath ID?

I am developing an application for opendaylight Carbon where I need to know the MAC address of the switch. Can I determine this from the DpnId when the switch connects? Thanks.
0
votes
1 answer

OpenDaylight: How to get the Data path ID?

I am attempting to build an SDN app with OpenDaylight. I use the Carbon (latest) release and the OpenFlow plugin. I am trying to use the genius package as it has a lot of support for installing flows and such. I expect multiple switches to connect…
0
votes
1 answer

Opendaylight openflow plugin: multiple notifications on switch

I copied some code from the openflow samples (learning switch) to get notified when a switch connects but now, alas, I get many notifications. Here's my code to register a listener: WakeupOnNode wakeupListener = new WakeupOnNode(s); final…
0
votes
2 answers

OpendayLight: How to specify the destination IP address of the flow table

I'm using OpendayLight(Carbon SR1) to send a flow table to the switch, everything is OK except working with the set-nw-dst-action-case instruction. Once I use this instruction, the flow can not be set to switch correctly(check via…
0
votes
1 answer

opendaylight Openflow plugin create a flow table

I am porting an application from RYU to opendaylight. I am using the opendaylight openflow plugin and working with the Carbon distribution. I am writing an openflow Karaf application (bundle). I need multiple flow tables in my application. I am…
0
votes
1 answer

Karaf OSGI Bundles Closing on Startup

I am having issues with karaf/osgi and when i try to start karaf some of my features loop through starting and closing. Here is a log example: 2017-09-05 15:46:03,344 | INFO | rint Extender: 1 | L3vpnProvider | 224 -…
0
votes
1 answer

OpenDaylight: How to get notified when a switch connects

I am working with opendaylight Carbon. I want to write a DataTreeChangeListener which gets notified when a switch connects. I tried modeling this on the LearningSwitch example of the OpenFlow plugin but I do not see any notification when mininet…
0
votes
1 answer

Opendaylight Dlux how to make flow table?

I downloaded mininet, opendaylight, etc.. and I wanted to add flow table to switches.I used dpctl and sh ovs-ofctl command. but it was too hard to add flow tables to each switches. I want to add flow table on Dlux UI. But I don't know how to fill in…
Jungwon
  • 35
  • 1
  • 6
0
votes
0 answers

What's the different between Config Subsystem(CSS) and Blueprint in Opendaylight?

The current opendaylight project I am working on doesn't use blueprint to do the dependency injection. Instead of that, it seems like a yang model is used to do that, which is defined under that bundle project. After searching around, I realized…
HAO
  • 85
  • 8