Seems like my screenshot above did not reflect my question, I guess I experimented with something.
Anyway, I have tried that. And it does not work In the windows titled "Firewall - Port Forwards - ssh 1433 to home" it is supposed to say 192.168.11.3, and not any.
Please connect to your OpenWRT device using ssh and copy the output of the following commands and post it here using the "Preformatted text </> " button:
Remember to redact keys, passwords, MAC addresses and any public IP addresses you may have:
ubus call system board
cat /etc/config/network
cat /etc/config/dhcp
cat /etc/config/firewall
ip route show
wg show
OpenWrt uses nftables now. But you don't have to worry about that because fw4 can handle this forward at a higher level.
It is required to specify a destination zone and internal IP for a port forward to work. It is a config redirect not a config rule. I'm not sure what those look like in the GUI.
config rule
option target 'ACCEPT'
option proto 'tcp'
option src 'wan'
option dest '*'
option dest_port '1433'
option name 'Allow 1433 on WAN to FWD'
config redirect
option dest 'home'
option target 'DNAT'
option name 'ssh 1433 to home'
list proto 'tcp'
option src 'wan'
option src_dport '1433'
option dest_port '22'
option family 'ipv4'
option dest_ip '192.168.11.3'