LINUX.ORG.RU

Kdeconnect не видит устройства

 , , , ,


0

1

Kdeconnect 24.08.3-1 на ноутбуке не видит Kdeconnect 1.32.9 на Android и наоборот.

В nftables нужные порты открыты:

tcp dport 1714-1764 accept
udp dport 1714-1764 accept

Соединение через домашний WiFi. При этом Kdeconnect на разных мобильных устройствах увиделись и подружились.

ЧЯДНТ?

★★

Последнее исправление: Grapow (всего исправлений: 3)
Ответ на: комментарий от Dr64h
table inet ports {
        chain input {
                tcp dport 4662 accept
                udp dport 4665 accept
                udp dport 4672 accept
                tcp dport 1714-1764 accept
                udp dport 1714-1764 accept
        }

        chain output {
                type filter hook output priority filter; policy accept;
        }
}
table inet filter {
        chain input {
                type filter hook input priority filter; policy drop;
                ct state invalid drop comment "early drop of invalid connections"
                ct state { established, related } accept comment "allow tracked connections"
                iif "lo" accept comment "allow from loopback"
                ip protocol icmp accept comment "allow icmp"
                meta l4proto ipv6-icmp accept comment "allow icmp v6"
                tcp dport 22 accept comment "allow sshd"
                meta pkttype host limit rate 5/second burst 5 packets counter packets 2 bytes 156 reject with icmpx admin-prohibited
                counter packets 13 bytes 1218
        }

        chain forward {
                type filter hook forward priority filter; policy drop;
        }
}

tcp LISTEN 0 50 *:1716 *:* users:(("kdeconnectd",pid=164761,fd=21))

Grapow ★★
() автор топика

Вот минимальный рабочий конфиг:

#!/sbin/nft -f

flush ruleset

table firewall {
    chain incoming {
        type filter hook input priority 0; policy drop;

        # established/related connections
        ct state established,related accept

        # loopback interface
        iifname lo accept

        # icmp
        icmp type echo-request accept

        # kdeconnectd ports
        tcp dport 1714-1764 accept
        udp dport 1714-1764 accept
    }
}

table ip6 firewall {
    chain incoming {
        type filter hook input priority 0; policy drop;

        # established/related connections
        ct state established,related accept

        # invalid connections
        ct state invalid drop

        # loopback interface
        iifname lo accept

        # icmp
        # routers may also want: mld-listener-query, nd-router-solicit
        icmpv6 type { echo-request, nd-neighbor-solicit } accept
    }
}
Пример взял здесь - https://wiki.nftables.org/wiki-nftables/index.php/Quick_reference-nftables_in...

Dr64h ★★★
()
Последнее исправление: Dr64h (всего исправлений: 1)