110-local-forward-allow-ipv4 221 B

123456
  1. local prefix4 = require('gluon.site').prefix4()
  2. if prefix4 then
  3. rule('LOCAL_FORWARD -p IPv4 --ip-protocol udp --ip-destination-port 67 -j RETURN')
  4. rule('LOCAL_FORWARD -p IPv4 --ip-src ' .. prefix4 .. ' -j RETURN')
  5. end