Hello @SuseNewbster ,
I think “Leap” was a good choice. The two main reasons I prefer Leap to other distros are:
A. ROCK SOLID
B. YaST makes it easier to configure things that I rarely look at … such as the firewall!
The most important thing to understand about the firewall is that at any given time, an interface is assigned to ONE zone. In spite of all the zones, you only need to worry about what you actually use.
From your screenshot, I am guessing that you have changed the “default” zone to “home”.
For a quick sanity check, it is easier to describe using the cli (command line interface):
root@orca# firewall-cmd --get-default-zone
home
So I know “home” is the default zone.
root@orca# firewall-cmd --zone=home --list-interfaces
wlan0
root@orca# firewall-cmd --zone=public --list-interfaces
I know my wireless card (wlan0) is attached to “home”.
root@orca# firewall-cmd --zone=home --list-services
dhcpv6-client mdns ssh
root@orca# firewall-cmd --zone=home --list-services
dhcpv6-client mdns ssh
root@orca# firewall-cmd --zone=home --list-ports
This show all the things the firewall will allow. If I had explicitly opened any ports in the yast firewall tool, they would show up below the --list-ports.
You only need “ssh” if you use ssh to remotely login to your box. samba-client will allow you to access smb (usually windows) resources shared by other boxes on your network.
If your interface is set to “home”, you should be ok with that configuration, assuming you actually need “ssh” and “samba-client”.