Last updated:
0 purchases
pythonodlclient 0.0.1
OpenDaylight Client for Python
How To Use
install
pypi package:
pip install python-odlclient
source:
pip install git+https://github.com/yuuichi-fujioka/python-odlclient.git
Run Command
OpenDaylight Host, Port, User and Password are passed via Environment Variable. e.g.:
ODL_HOST=192.168.0.100 odl node list
Environment Vairable Names are:
Name
Description
ODL_HOST
OpenDaylight Hostname(default: localhost)
ODL_PORT
OpenDaylight API Port(default: 8181)
ODL_USER
OpenDaylight API User Name(default admin)
ODL_PASS
OpenDaylight API Password(default: password)
ODL_URL
Default Restconf API Path(default: http://ODLHOST:{ODL_PORT}/restconf/operational/)
List Nodes
odl node list
List Tables
odl table list openflow:1111111111
List Flows
odl flow list openflow:1111111111
List Node Connectors
odl connector list openflow:1111111111
Add Flow
odl flow create openflow:201106209703495 100 29 --dl-src 00:00:00:00:00:00/01:00:00:00:00:00 --instructions output:1,output:2
If you want to know HTTP Request/Response details, you may set –debug and –verbose options. i.e.
odl --deubg --verbose node list
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.