Tagged by CORD Jenkins version-tag job: 4979, for Gerrit patchset: 19534
Release version 1.0.0

Change-Id: I2ffe5af3f9247cbfb53f7b91b1db139587358a46
3 files changed
tree: d599d8df1ea329421af586345a2da9931ea36401
  1. .gitignore
  2. .gitreview
  3. CODE_OF_CONDUCT.md
  4. LICENSE.txt
  5. README.md
  6. api/
  7. app/
  8. pom.xml
README.md

ONOS MAC Learner Application

MAC Learner is an ONOS application that examines the DISCOVER or REQUEST type DHCP packets and keeps the MAC address temporarily according to the device, port and vlanId information obtained from these packets. If the package has a single tag, VlanVID is used; if it is a double tag, QinqVID is used as vlanId.

Functionalities

  • MAC Learner has REST API and CLI integration. You can access and modify MAC Address map via these.

  • By defining ports to the Igonered Port Map, it can be ensured that DHCP packets from these ports are not taken into account.

###Parameters

  • cacheDurationSec - MAC Mappings are held with a timestamp and scheduled executor running in the background that clears expired mappings(exist more than cacheDuration). The operating frequency of this executor can be set with this parameter. By default, it is 86400(1 day).

  • enableDeviceListener - By enabling this parameter, the relevant mappings can be cleared for DEVICE_REMOVED and PORT_REMOVED device events. By default it is disabled.