我已经安装了 IRCD-Hybrid,监听配置如下:
/* listen {}: contain information about the ports ircd listens on (OLD P:) */
listen {
/* port: the specific port to listen on. if no host is specified
* before, it will listen on all available IPs.
*
* ports are seperated via a comma, a range may be specified using ".."
*/
/* port: listen on all available IPs, ports 6665 to 6669 */
# host = "127.0.0.1"; # change this!
#port = 6665 .. 6669;
port = 6667;
};
输出结果如下iptables -L
:
ACCEPT tcp -- anywhere anywhere tcp dpt:ircd
我可以通过服务器上的 irssi 连接到 IRC 服务器,但是当我尝试从服务器外部连接时,出现“没有到主机的路由”的错误。
nmap 确认端口未打开。我还能尝试什么?
答案1
做了更多研究:我的 VPS 提供商默认不会打开所有端口。