RHEL 5.9サーバーでポート10000を開く必要があります。ポートを開くことができません10000
は、iptablesサービス停止:私はそれを開くためにやっていること
rootユーザーからもちろん
# service iptable stop
は、このコマンドを実行:
# iptables -I INPUT -p tcp --dport 10000 -j ACCEPT
# iptables-save > /etc/sysconfig/iptables
# service iptables start
確認済みのiptables -Lコマンドを使用して: # iptables -L
Chain INPUT (policy ACCEPT)
target prot opt source destination
ACCEPT tcp -- anywhere anywhere tcp dpt:10000
Chain FORWARD (policy ACCEPT)
target prot opt source destination
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
を、私は私のWindowsサーバー2012年に、このRHELサーバーからそのポートにtelnet接続することですが、私からtelnetで接続することはできませんよWindowsサーバー。
"Linuxサーバー(テストサーバー)"と同じ手順を実行して上記の同じ手順を実行した後にtelnetできるため、WindowsファイアウォールではなくLinuxファイアウォールの問題だと思っていました。
Windowsサーバからtelnet接続時に、私は取得していますエラーは次のとおりです。窓から
: telnet <ip_address_of_targeted_linux_server> 10000
出力: connecting to <ip_address_of_targeted_linux_server> ... could not open connection to the host, on port 10000: connect failed
私は私が与えた情報に基づいて見逃しているものを任意のアイデア?