Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
{
  "devices": {
    "tl1:10.128.14.81:3082netconf:<ip>:<port>": {
      "basictl1": {
        "nameip": "Lumentum"<ip>,
        "driverport": "lumentum-waveready"
      }
    }
  }<port>,
  "apps": {
    "org.onosproject.tl1": {
      "devices"username": [
        {<username>,
          "ippassword": "10.128.14.81",<password>
          "port": 3082},
          "usernamebasic": "test",
  {
        "passworddriver": "test"
 <driver-name>
       }
      ]
    }
  }
}

Drivers

Adding a new device to ONOS requires implementing a set of behaviors. For instance, to discover devices and their ports, implement the DeviceDescriptionDiscovery. If your device supports flow rules, implement the FlowRuleProgrammable. And so on. Go here for more information: Device Driver Subsystem.

...