Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - that_kid

#1
Thanks Franco.
#2
just upgraded to 24.1 and I have zabbix agent sync disabled but the settings from FW1 still was sent to FW2.  I've seen this happen on two different HA installations.  I tried enabling and saving the sync settings then disabling them again but everything still syncs.  I have webgui and zabbix agent set to not sync and webgui works correctly but zabbix doesn't.
#3
I'm not sure if I'm going crazy or not so I wanted to post here in hopes someone else can try this and see if it works.  I have an alias and I would like to add a FQDN to the alias via the "alias_util/add" api but whenever I get an error  "status": "not_an_address".  I can add IP's without issues and any FQDN that is not past letter F, so aaa.aaa works, aaa.aaf works but aaa.aag does not.  Looking at the code on GH and it looks like the regex only includes letters A-F 

            if (preg_match("/[^0-9a-f\:\.\/_]/", $address)) {
               return array("status" => "not_an_address");


I just wanted to make sure I was on the correct track before submitting a Github issue.