Hello,
i want to access a pc from other pcs in my local network via SSH. All pcs are connected to the internet router, which blocks probably everything from the internet which is not explicitly allowed. This includes SSH (port 22) also (i do not want any SSH access from outside of my local network).
So i started the ssh service on the host pc:
systemctl start sshd.service
and then tried to access the host from another pc in the local network:
ssh user@192.168.178.10
but i got no reaction (it was probably just waiting for an answer so i stopped the process).
Then i disabled the opensuse firewall via yast on the host, and everything worked fine!
But are not the two following statements true:
- the local network (i thought that is the ip range 192.168..) is handled by the so called “internal zone”
- the internal zone has not restrictions, no blocked ports and so on
I guess this is just a configuration problem, i do not what to open port 22 for any other than the internal zone (i do not want the port open for the external zone, i just want local network ssh).
Can someone help me with this?