I'm having trouble getting the flow rules to work - I assume I'm doing something wrong, but even the simplest ruleset doesn't seem to be acting as I would expect.
I've not had any luck except with a completely unfiltered network, but for simplicity's sake, I'd like to start with something as simple as 'allow ICMP between nodes'.
With the simple flow rule example below, I can not ping between any devices on my network. If I change the drop to accept, then it works perfectly (so no local firewall issues preventing ICMP traffic), but I don't seem to be able to write any useful rules to filter the traffic between nodes.
To Reproduce
Steps to reproduce the behaviour:
drop;
```
Expected behavior
The ICMP echo and reply traffic should succeed
Desktop (please complete the following information):
Am I doing something wrong there, or should the above basic ruleset allow pinging between ZT nodes? When the restrictive flow rules are not in place, all traffic flows correctly, as does just blindly adding an accept ztsrc (node_1); accept ztsrc (node_2);, but as soon as I attempt to add any kind of filtering in place, traffic no longer flows.
add accept ethertype arp;
I tested this and it seemed to solve it for me. Nodes need to be able to find each other!
6PLANE or RFC4193 addresses should work with icmp6 without arp.
Thanks @laduke, that was it!
Most helpful comment
add
accept ethertype arp;I tested this and it seemed to solve it for me. Nodes need to be able to find each other!
6PLANE or RFC4193 addresses should work with icmp6 without arp.