Thanks for the reply - the traffic is from an external IP, so it's not DHCP related. Here is a list of my settings from a config dump:
<nat>
<rule>
<protocol>tcp/udp</protocol>
<external-port>68</external-port>
<target>10.1.2.3</target>
<local-port>68</local-port>
<interface>wan</interface>
<descr>VoIP ATA (1)</descr>
</rule>
<rule>
<protocol>tcp/udp</protocol>
<external-port>5060</external-port>
<target>10.1.2.3</target>
<local-port>5060</local-port>
<interface>wan</interface>
<descr>VoIP ATA (2)</descr>
</rule>
<rule>
<protocol>tcp/udp</protocol>
<external-port>16384-16403</external-port>
<target>10.1.2.3</target>
<local-port>16384</local-port>
<interface>wan</interface>
<descr>VoIP ATA (3)</descr>
</rule>
</nat>
<filter>
<rule>
<type>pass</type>
<interface>wan</interface>
<protocol>tcp</protocol>
<source>
<any/>
<port>443</port>
</source>
<destination>
<any/>
<port>443</port>
</destination>
<descr>Allow remote administration</descr>
</rule>
<rule>
<interface>wan</interface>
<protocol>tcp/udp</protocol>
<source>
<any/>
</source>
<destination>
<address>10.1.2.3</address>
<port>68</port>
</destination>
<descr>NAT VoIP ATA (1)</descr>
</rule>
<rule>
<interface>wan</interface>
<protocol>tcp/udp</protocol>
<source>
<any/>
</source>
<destination>
<address>10.1.2.3</address>
<port>5060</port>
</destination>
<descr>NAT VoIP ATA (2)</descr>
</rule>
<rule>
<interface>wan</interface>
<protocol>tcp/udp</protocol>
<source>
<any/>
</source>
<destination>
<address>10.1.2.3</address>
<port>16384-16403</port>
</destination>
<descr>NAT VoIP ATA (3)</descr>
</rule>
<rule>
<type>pass</type>
<descr>Default LAN -> any</descr>
<interface>lan</interface>
<source>
<network>lan</network>
</source>
<destination>
<any/>
</destination>
</rule>
</filter>
The 10.1.2.3 is the LAN side destination address of the VoIP ATA (it's not the real one, but close enough).
Let me know if any other info would be of use... Thanks!