How to create DMZ for a console

Hello,

​I tried creating a firewall rule for ports 1-65535, but it didn't work and the voice chat still isn't functioning. Is there another way to do this, or am I missing something?

post your /etc/config/firewall file.

something like this?:

config redirect
	option target 'DNAT'
	option src 'wan'
	option dest 'lan'
	option proto 'tcp udp'
	option src_dport '1-65535'
	option dest_ip '192.168.xxx.xxx'    #<<< use specific device IP
	option dest_port '1-65535'
	option name 'DMZ'

Note I am using only tcp and udp so adapt if necessary

use ssh and paste -

uci add firewall redirect
uci set firewall.@redirect[-1].name='PS5-DMZ'
uci set firewall.@redirect[-1].src='wan'
uci add_list firewall.@redirect[-1].proto='all'
uci set firewall.@redirect[-1].dest='lan'
uci set firewall.@redirect[-1].dest_ip='192.168.1.201'
uci commit firewall
/etc/init.d/firewall reload

change your dest ip as per your needs