Posts

Showing posts from August, 2019

Ubuntu UFW app profile for Steam Link Game Streaming

I've recently tried Steam Link to stream game to my Android device but quickly found out it was blocked due to UFW firewall. I've found this GitHub issue and UFW settings: https://github.com/ValveSoftware/steam-for-linux/issues/4803#issue-200408537 To make it convenient, I've created an app profile file to be placed in /etc/ufw/application.d/ folder so that we can easily added or removed from ufw. Here's the steps: 1. Create a text file /etc/ufw/application/steam_link with the following content: [SteamLink] title=Steam Link description=Steam Link Game Streaming ports=27037/tcp|27031/udp|27036 2. After the file is saved, it should now appear in the list with "ufw app list" command. For example: $ sudo ufw app list Available applications:   CUPS   OpenSSH   Postfix   Postfix SMTPS   Postfix Submission   SteamLink 3. To allow the new steam link application rule, I use the following to command to only allow it on my local LAN: $ sudo ufw allow...