windowsからパワーシェルを使ってポート開放がされているか確認する。Test-NetConnectionコマンドレットのエイリアスがTNCなのでこちらのほうが覚えやすいですね。
Test-NetConnection -ComputerName 192.168.3.13 -Port 1521
tnc -ComputerName 192.168.3.13 -Port 1521
実行例
PS D:\> Test-NetConnection -ComputerName 192.168.3.13 -Port 1521
ComputerName : 192.168.3.13
RemoteAddress : 192.168.3.13
RemotePort : 1521
InterfaceAlias : Wi-Fi
SourceAddress : 192.168.3.16
TcpTestSucceeded : True
PS D:\>