You'd add a rule like this:

config rule
	option name 'Allow-port123-iot2lan'
	option src 'iot'
	option dest_port '123'
	option dest 'lan'
	list dest_ip '192.168.88.x'
	option target 'ACCEPT'

You could also allow the lan to reach the iot network in whole or in part with rules or forward stanzas... if in whole:

config forwarding
	option src 'lan'
	option dest 'iot'
1 Like