I have an EdgeRouter Lite, and have never been able to get UPnP working for my games consoles. Decided to give it another crack now that I have PS5 and XBSX, but still no joy.
With UPnP disabled I get type 2 NAT on PS5 and moderate NAT on Xbox (along with the message "UPnP unsuccessful").
But when I enabling it on the router (using the below) doesn't make any difference (where 192.168.1.50 and 192.168.1.51 are the IPs of my consoles, eth1 is the LAN port, and pppoe0 is the Internet):
show service upnp2
acl {
rule 10 {
action allow
description "Allow Xbox UPnP"
external-port 1024-65535
local-port 0-65535
subnet 192.168.1.50/32
}
rule 20 {
action allow
description "Allow PS5 UPnP"
external-port 1024-65535
local-port 0-65535
subnet 192.168.1.51/32
}
rule 1000 {
action deny
description DENY
external-port 0-65535
local-port 0-65535
subnet 0.0.0.0/0
}
}
listen-on eth1
nat-pmp enable
secure-mode enable
wan pppoe0
Where am I going wrong?