Hi there,
This is found with duration test on Monterey 12.0.
We are using appproxy and pipe through all udp traffics including dns requests (udp port 53).
With below script doing only nslookup per second, in a couple of hours, it just fails. No network at all although no error on appproxy level reported. Only way to recover so far is uninstall the system extension.
#!/bin/bash
i=1
while true
do
i=$((i+1))
echo "loop $i"
nslookup www.google.com
sleep 1
done
Tried the latest 12.1 beta, same failure.
This test has no problem with Bigsur including 11.6.
Thanks in advance for any suggestion.
Regards Richard