Sounds like Hulu doesn’t like something about your connection (ISP, your IP address, Geolocation) or is detecting an open service on your IP address (or provider)
I have users watching Hulu daily, no problems.
I have no experience with PS4 but i’m guessing it’s lack of PnP related, which no one seems to recommending turning on.
Just wanted to post an update for people of the future.
I found out the issue.
If your firewalls arn’t setup right, these services for some reason straight up refuse to work.
In my case, I disabled ALL my firewall rules during testing, and that was the issue.
Literally just adding an implicit accept followed by an implicit deny fixed it, BUT DON’T ACTUALLY DO THAT IT’S AS UNSECURE AS LEAVING YOUR DOOR UNLOCKED IN DETROIT.
/ip firewall filter
add action=drop chain=input comment=“Drop Invalid” connection-state=invalid
in-interface=YOUR_WAN_ETHER
add action=accept chain=input connection-state=related in-interface=
YOUR_WAN_ETHER
add action=accept chain=input connection-state=established in-interface=
YOUR_WAN_ETHER
add action=drop chain=input comment=“Drop ALL” in-interface=YOUR_WAN_ETHERLiterally just copy the above bit, and paste it in the terminal. Just change YOUR_WAN_ETHER to whatever your WAN ether is (the one where the internet is comming in, ie, if it’s in port 1, by default it’s ether-1)
Interesting but what I want to know is … what do INPUT chain rules have do with Internet being forwarded to LAN and LAN being forwarded to the internet???
I would have thought that is where FW rules may have been an issue.
In other words you have not shed light on what the actual problem is…at least from my brief reading and limited understanding.