Using the OMCI-Sim library to respond to OMCI messages

Change-Id: I8a15f9dcb95fe8ce7b5f524d673d7c83882b6401
10 files changed
tree: 37122693cc1474c24e81eb305faa4604f8324ac0
  1. .dockerignore
  2. .gitignore
  3. .gitreview
  4. LICENSE.md
  5. Makefile
  6. README.md
  7. VERSION
  8. api/
  9. build/
  10. cmd/
  11. configs/
  12. deployments/
  13. docs/
  14. examples/
  15. go.mod
  16. go.sum
  17. internal/
  18. test/
README.md

BroadBand Simular (BBSim)

Build

BBSim is managed via a Makefile, plese run the following command to display all the available targets

make help

Usage

Deploy on Kubernets

Once VOLTHA is deployed you can deploy BBsim using the helm chart provided in the repo:

cd deployments/helm-chart
helm install -n bbsim bbsim

OLT Provisioning

Once BBSim is up and running you can provision the OLT in VOLTHA.

When you install the BBSim helm chart you'll notice that the last line of the output prints the service name and port:

NOTES:
BBSim deployed with release name: bbsim

OLT ID: 0
# of NNI Ports: 1
# of PON Ports: 1
# of ONU Ports: 1
Total ONUs: (total: 1)

OLT is listening on: "voltha.svc.bbsim-olt-id-0:50060"

VOLTHA 1.X

Connect to the voltha CLI and execute this commands:

preprovision_olt -t openolt -H voltha.svc.bbsim-olt-id-0:50060
enable

Control API

BBSim comes with a gRPC interface to control the internal state. We plan to provide a bbsimctl at certain point, meanwhile you can use grpcurl:

$ export BBSIM_IP="$(kubectl get svc -n voltha bbsim-olt-id-0 -o go-template='{{.spec.clusterIP}}')"
$ grpcurl -plaintext $BBSIM_IP:50070 bbsim.BBSim/Version
{
  "version": "0.0.1-alpha",
  "buildTime": "”2019.08.09.084157”",
  "commitHash": "9ef7241b07a83c326ef152320428f204f7eff43d"
}


$ grpcurl -plaintext $BBSIM_IP:50070 bbsim.BBSim/GetOlt
{
  "ID": 22,
  "OperState": "up",
  "NNIPorts": [
    {
      "OperState": "down"
    }
  ],
  "PONPorts": [
    {
      "OperState": "down"
    }
  ]
}

This project strucutre is based on golang-standards/project-layout.