tree: 336ef0894c407d29b410cd9487c93917e8dc00a3 [path history] [tgz]
  1. README.md
  2. __init__.py
  3. adapter_alarms.py
  4. adapter_pm_metrics.py
  5. adtran_device_handler.py
  6. adtran_olt.py
  7. adtran_olt_handler.py
  8. codec/
  9. flow/
  10. net/
  11. nni_port.py
  12. onu.py
  13. pon_port.py
voltha/adapters/adtran_olt/README.md

Adtran OLT Device Adapter

To preprovision an Adtran OLT, you will need to provide the IP Address and the NETCONF/REST credentials for the device. The NETCONF/REST credentials are an extension of the existing preprovision_olt command and these are placed after entering two dashes '--'. The full syntax to use is.

| Short | Long | Default | Notes | :---: + :-----------: + :-----: + ----- | -u | --nc_username | '' | NETCONF username | -p | --nc_password | '' | NETCONF Password | -t | --nc_port | 830 | NETCONF TCP Port | -U | --rc_username | '' | REST USERNAME | -P | --rc_password | '' | REST PASSWORD | -T | --rc_port | 8081 | REST PORT

For example, if your Adtran OLT is address 10.17.174.193 with the default TCP ports and NETCONF credentials of admin/admin and REST credentials of ADMIN/ADMIN, the command line would be

    preprovision_olt -t adtran_olt -i 10.17.174.193 -- -u admin -p admin -U ADMIN -P ADMIN

or

    preprovision_olt -t adtran_olt -i 10.17.174.193 -- --nc_username admin --nc_password admin --rc_username ADMIN --rc_password ADMIN

Currently the Adtran Device Adapter will enable all PON ports on startup and attempt to activate any discovered ONUs. This behaviour will change once PON Management is fully supported.