<div dir="ltr"><div>I am unable to access my modem settings page when writing 192.168.1.100 to check if there is a firewall.</div><div><br></div><div>Below is the web page that I get</div><div><br></div><div><br></div><div>Unable to connect<br><br>Firefox can’t establish a connection to the server at 192.168.1.100.<br><br>    The site could be temporarily unavailable or too busy. Try again in a few moments.<br>    If you are unable to load any pages, check your computer’s network connection.<br>    If your computer or network is protected by a firewall or proxy, make sure that Firefox is permitted to access the Web.</div><div><br></div><div>Any ideas?<br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">Greg Wooledge <<a href="mailto:greg@wooledge.org">greg@wooledge.org</a>>, 21 Eki 2021 Per, 21:32 tarihinde şunu yazdı:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">On Thu, Oct 21, 2021 at 09:07:02PM +0000, Semih Ozlem wrote:<br>
> Yes the error message is<br>
> <br>
> ssh: connect to host (ip address of remote host) port 22: Connection refused<br>
<br>
This message means one of these things:<br>
<br>
1) The sshd process is not running, or is not listening on the default port.<br>
<br>
2) A firewall is preventing your connection.<br>
<br>
<br>
You would normally check the first thing by using "ss" or "netstat" on<br>
the server, and verifying that the process is indeed LISTEN-ing on the<br>
expected interface(s) and port.  For example:<br>
<br>
unicorn:~$ ss -ant | grep :22<br>
LISTEN    0      128              <a href="http://0.0.0.0:22" rel="noreferrer" target="_blank">0.0.0.0:22</a>                     0.0.0.0:*<br>
[...]<br>
<br>
This tells me that something is listning on port 22 on all IPv4 interfaces.<br>
<br>
If you don't see a line like this, then you need to investigate the ssh<br>
service more deeply.  Perhaps start by running "journalctl -u ssh" to<br>
read its logs.<br>
<br>
If you *do* see a line like this, then you need to look at network-level<br>
stuff, like firewalls, routers, and so on.<br>
<br>
</blockquote></div>