通过 UPnP 进行 torrent 客户端的端口转发

通过 UPnP 进行 torrent 客户端的端口转发

首先,我目前连接到不在家的邻居的路由器,这就是为什么我无法要求他通过路由器转发端口。我正在尝试转发端口以接受 Ubuntu 上 qBittorrent(启用 UPnP 选项)的传入连接。这在 Windows 上已经有效,其中 qBittorrent 在 Windows 防火墙中被列入白名单,我可以在 qBittorent 中更改端口,然后 canyouseeme.org 显示该端口已打开。

现在,我尝试在 Ubuntu 上完成这项工作,以下是 ufw 的设置方式:

sudo ufw status

Status: active

To                         Action      From
--                         ------      ----
Apache Full                DENY        Anywhere                  
53098                      ALLOW       Anywhere                  
Apache Full (v6)           DENY        Anywhere (v6)             
53098 (v6)                 ALLOW       Anywhere (v6)

netstat -tap | grep LISTEN | grep qbittorrent

tcp    0    0 *:53098      *:*    LISTEN   1703/qbittorrent
tcp6   0    0 [::]:53098   [::]:* LISTEN   1703/qbittorrent

当我在 canyouseeme.org 上检查端口 53098 时,它显示该端口已关闭。我下一步该怎么做才能让它正常工作?

相关内容