adding run.sh

Change-Id: I80744b4ac19d51b6f9b7f105f5582b01168b1466
3 files changed
tree: 133e979dcf245bece47d1bc07112c356ba4f3be9
  1. .gitignore
  2. LICENSE
  3. Makefile
  4. README.md
  5. VERSION
  6. config/
  7. docker/
  8. go.mod
  9. go.sum
  10. grpc/
  11. main.go
  12. openflow/
  13. run.sh
  14. settings/
  15. vendor/
README.md

Ofagent-go

Ofagent-go provides an OpenFlow management interface for Voltha. It is a rewrite in Golang of the original ofagent that was written in python / twisted. The main driver behind the work was to introduce true concurrency to the agent for performance/scalability reasons.

Building

  1. Outside $GOPATH

    1. Read-only git clone https://github.com/opencord/ofagent-go.git
    2. To Contribute git clone https://gerrit.opencord.org/ofagent-go
  2. Compile go build -mod=vendor -o ./build/ofagent-go

Running

  • Normal Logging
    • ./build/ofagent-go -ofaddress=localhost openflowPort=6653 -volthaAddress=localhost -volthaPort=50057
  • Debug Logging
    • ./build/ofagent-go -debug -ofaddress=localhost openflowPort=6653 -volthaAddress=localhost -volthaPort=50057