DX Unified Infrastructure Management

Expand all | Collapse all

Tech Tip: Changing the Listening Port for NFA 9.1 Harvesters

  • 1.  Tech Tip: Changing the Listening Port for NFA 9.1 Harvesters

    Broadcom Employee
    Posted Jan 29, 2013 12:18 PM

    Title: How to change the listening port for a harvester in NFA 9.1 (Windows and Linux)


    Description:

    The default listening port for a Harvester in NFA is 9995, which in earlier versions could be changed in the registry. Now this setting is in the Harvester Database on the Harvesters.

    Solution:

    Log into the Harvester database on each Harvester you wish to update the listening port on with the command below:

    mysql -P3308 harvester

    Then run the update statement below to change the listening port:

    update parameter_descriptions set defaultvalue=PortNumber where parameter='NetFlowPacketListenPort';

    For example to change to 9996

    update parameter_descriptions set defaultvalue=9996 where parameter='NetFlowPacketListenPort';

    Then recycle the harvester services.

    On Windows you can recycle the "CA NFA Harvester" service in the services console
    On Linux you can recycle the Harvester service by running "service nfa_harvester restart"
    The Harvester should now be listening on the new port.

    **Please note, whenever making changes to your databases, you should perform a backup of your database as a best practice in case you need to revert back**



  • 2.  RE: Tech Tip: Changing the Listening Port for NFA 9.1 Harvesters

    Broadcom Employee
    Posted Jan 29, 2013 01:10 PM
    Good stuff Chris, this should come in handy when customers need to use non standard ports on their networks.


  • 3.  RE: Tech Tip: Changing the Listening Port for NFA 9.1 Harvesters

    Posted Jan 29, 2013 01:12 PM
    I agree


  • 4.  Re: Tech Tip: Changing the Listening Port for NFA 9.1 Harvesters

    Posted Aug 06, 2014 03:51 PM