telnet: connect to address No route to host
On oracle virtualbox on my laptop, tnsping was not responding. Then I check the telnet, it was not working:
[oracle@primary1 ~]$ telnet primary1 1521
Trying 192.168.1.27...
telnet: connect to address 192.168.1.27: No route to host
Solution: iptables -F ( If you want to flush your firewall chains)
After that my tnsping and telnet started working.
[oracle@primary1 ~]$ telnet primary1 1521
Trying 192.168.1.27...
telnet: connect to address 192.168.1.27: No route to host
Solution: iptables -F ( If you want to flush your firewall chains)
After that my tnsping and telnet started working.
Comments