How to use scripts to connect to another device(switch for example) using a snmp?
I just need to get a value from device.
For example disabled conntrack,
:local vals [snmpget -v1 -c public 192.168.1.3 1.3.6.1.4.1.10113.1.4.4.0];
:if ($vals=1000) do={
/ip firewall connection tracking set enabled=no }
but it’s not working.