- #1
- 970
- 670
Is it possible to configure Gnome Remote Desktop to share the desktop over the Ethernet interface but block connections over WiFi? Where is the config file for this daemon?
~/.config/gnome-remote-desktop
ip link
sudo ufw allow in on eth0
sudo ufw deny in on wlan0
sudo iptables -A INPUT -i eth0 -p tcp --dport 3389 -j ACCEPT
sudo iptables -A INPUT -i wlan0 -p tcp --dport 3389 -j DROP
systemctl --user restart gnome-remote-desktop