DMZ-LAN network traffic

Hi,

I have created a network topology.I have created both DMZ and LAN on different network .I am little bit confuse how to configure firewall rules to allow only https traffic from LAN and Vice versa.
as i was playing with the firewall rules but i am confused about

Interzone forwarding and zones .

Thanks.

@danish1900, welcome to the community!

# in /etc/config/firewall

config rule
	option dest_port '443'
	list src 'dmz'
	option name 'https_dmz_to_lan'
	option target 'ACCEPT'
	list dest_remote 'lan'
	option proto 'tcp'

config rule
	option dest_port '443'
	list src 'lan'
	option name 'https_lan_to_dmz'
	option target 'ACCEPT'
	list dest_remote 'dmz'
	option proto 'tcp'