Adding New Controller
ONES Agent configuration file allows user to add new collector(controller) after the agent installation if required
Overview
If a customer desires to receive the same agent telemetry on a different ONES collector, there's no need to reinstall the agent on the device. Instead, the user can effortlessly add the new collector's IP to the device's agent.conf file after installing ONES on the other server. This action will automatically register and initiate streaming to the new ONES application
Steps to add new Controller-IP
SSH to the device first
Navigate to /etc/sonic/
admin@Spine-2:~$ cd /etc/sonic/ admin@Spine-2:/etc/sonic$
Edit agent.conf file and add collector ip
admin@Spine-2:/etc/sonic$ sudo vi agent.conf # Configuration file for agent gnmi # Any edits require restart of the agent # Mode - can be Tls/NoTls mode = NoTls #restrict_collector_ip = Yes/No #Setting this to yes means that only the IP address mentioned under collectorip #will be allowed to connect to the agent. No sets off this behavior restrict_collector_ip = No #layer of the switch Eg - Superspine/ Leaf/ Spine/ ToR layer = Spine #region of the switch Eg - Denver region = Sj #ip of the switch Eg - 10.4.4.33 agentip = 10.20.2.12 #ip of the collector Eg - 10.1.1.10 collectorip = 10.20.0.16,10.20.0.14 #azid of the switch Eg - 1 azid = 1 #brickid of the switch Eg - 1 brickid = 1 #rackid of the switch Eg - 1
Restart ONES-Agent Docker
admin@Spine-2:/etc/sonic$ docker restart ones-agent
After restarting Docker, it will automatically register with the new ONES-Application