서버 연결에 텔넷을 연결할 수 없습니다. 거부됨

서버 연결에 텔넷을 연결할 수 없습니다. 거부됨

다음 사양의 서버 두 대가 있습니다.

  1. IP 주소: 192.168.1.94

  2. IP 주소: 192.168.1.221

telnet두 번째에서 첫 번째(포트 5029)로 이동하고 싶지만 다음 오류가 발생합니다.

root@debian:~# telnet 192.168.1.94 5029
Trying 192.168.1.94...
telnet: Unable to connect to remote host: Connection refused

192.168.1.94에서 자체적으로 텔넷을 통해 연결할 수 있습니다. 이는 프로그램이 포트 5029에서 수신 대기 중임을 의미합니다.

[root@myelastix ~]# telnet localhost 5029
Trying 127.0.0.1...
Connected to myelastix.mohaymen.co (127.0.0.1).
Escape character is '^]'.

방화벽이 192.168.1.94 서버의 연결을 차단하고 있다고 생각했는데 방화벽 규칙은 다음과 같습니다.

[root@myelastix ~]# iptables -L
Chain INPUT (policy ACCEPT)
target     prot opt source               destination

Chain FORWARD (policy ACCEPT)
target     prot opt source               destination

Chain OUTPUT (policy ACCEPT)
target     prot opt source               destination

또한 iptables를 중지했지만 아무 일도 일어나지 않았습니다.

[root@myelastix ~]# service iptables stop
Flushing firewall rules:                                   [  OK  ]
Setting chains to policy ACCEPT: filter                    [  OK  ]
Unloading iptables modules:                                [  OK  ]

문제가 무엇입니까?

답변1

당신은 이것을 할 수 있습니까?

[root@myelastix ~]# telnet 192.168.1.94 5029

telnetd그렇지 않은 경우 외부 인터페이스에서 수신하도록 구성되었는지 확인하세요 .

netstat -tulpn | grep :5029

관련 정보