Page 1 of 1

listening ports

Posted: Mon Apr 23, 2012 9:23 pm
by rimZZai
do anybody know why is qbittorrent listening to that ports 6771, 37962, 39527, etc. ??

it is configured to go through 6881...

sudo netstat -nlp | grep qbittorrent
tcp        0      0 0.0.0.0:6881            0.0.0.0:*              LISTEN      10685/qbittorrent
tcp6      0      0 :::6881                :::*                    LISTEN      10685/qbittorrent
udp        0      0 127.0.0.1:37962        0.0.0.0:*                          10685/qbittorrent
udp        0      0 192.168.1.5:39527      0.0.0.0:*                          10685/qbittorrent
udp        0      0 192.168.1.5:6771      0.0.0.0:*                          10685/qbittorrent
udp        0      0 127.0.0.1:6771          0.0.0.0:*                          10685/qbittorrent
udp        0      0 0.0.0.0:6771            0.0.0.0:*                          10685/qbittorrent
udp        0      0 0.0.0.0:57474          0.0.0.0:*                          10685/qbittorrent
udp        0      0 0.0.0.0:6881            0.0.0.0:*                          10685/qbittorrent

Re: listening ports

Posted: Tue Apr 24, 2012 6:09 pm
by Peter
There is only one incoming port, one port listening... in your list.
The others are outbound connections, connections to peers, to the DHT.

Re: listening ports

Posted: Wed Apr 25, 2012 1:27 pm
by rimZZai
yeah of course...
but netstat -l should only give listening ports...

thx