Clone this repo:
  1. ee4d826 VOL-5160 - Repo triage build for release branching. by Joey Armstrong · 3 months ago master v0.3.5
  2. aeae2bd Post release: bump version string for development by Joey Armstrong · 10 months ago
  3. 06e564f [VOL-4674] Connecting directly to the BBSim POD instead than to the service as that might round-robin to the old instance before it's gone by Matteo Scandolo · 1 year, 8 months ago v0.3.4
  4. 68c39e6 [VOL-4632] Adding NniDhcpTrapVid to support FTTB usecase by Andrea Campanella · 1 year, 9 months ago v0.3.3
  5. 4523c29 Adding PPPoE and MacLearning to sadis-server by Andrea Campanella · 1 year, 10 months ago

BBSim Sadis Server

This project is designed to aggregate Sadis entries from multiple BBSim instances running on the same kubernetes cluster.

This tool assumes that:

  • The sadis service is exposed on the default port 50074
  • BBSim(s) are deployed with the default label app=bbsim

This component is part of the the VOLTHA project, more informations at: https://docs.voltha.org

Deploy

helm repo add onf https://charts.opencord.org
helm install bbsim-sadis-server onf/bbsim-sadis-server

Configure ONOS to use bbsim-sadis-server

Assuming that bbsim-sadis-server was installed in the default namespace, you can use this configuration to point ONOS to it:

{
  "sadis" : {
    "integration" : {
      "url" : "http://bbsim-sadis-server.default.svc:58080/subscribers/%s",
      "cache" : {
        "enabled" : true,
        "maxsize" : 50,
        "ttl" : "PT1m"
      }
    }
  },
  "bandwidthprofile" : {
    "integration" : {
      "url" : "http://bbsim-sadis-server.default.svc:58080/profiles/%s",
      "cache" : {
        "enabled" : true,
        "maxsize" : 50,
        "ttl" : "PT1m"
      }
    }
  }
}

For more inforation about the sadis application you can refer to: https://github.com/opencord/sadis