我正在使用 link-grammar 服务器将句子转换为语义图。它通过端口提供 API 来执行上述过程。它配置为通过端口工作9000
。我过去使用以下命令localhost
通过客户端连接它。telnet
telnet localhost 9000
我需要从远程计算机连接它。我正在使用pythoanywhere.com。我想从 pythonanywhere.com 的 bash 终端连接到我的本地主机。所以我试过了telnet <my ip> 9000
。没用。它说
telnet: Unable to connect to remote host: Connection timed out
。
我在谷歌上搜索找到了我的 IP 地址。61.245.173.164
我还通过 ifconfig 命令找到了我的 ip 地址ifconfig |grep inet
。10.225.149.159
它们为何不同?我应该使用哪一个?
我应该禁用任何防火墙吗?我试过了sudo ufw disable
。仍然没有结果。希望有人能帮助我。:-) 谢谢。