Translations:KDEConnect/119/en

From KDE UserBase Wiki
Revision as of 17:35, 31 May 2021 by FuzzyBot (talk | contribs) (Importing a new version from external source)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

If your firewall is iptables, you can open the necessary ports with:

<syntaxhighlight lang="bash"> sudo iptables -I INPUT -i <yourinterface> -p udp --dport 1714:1764 -m state --state NEW,ESTABLISHED -j ACCEPT sudo iptables -I INPUT -i <yourinterface> -p tcp --dport 1714:1764 -m state --state NEW,ESTABLISHED -j ACCEPT