You should try to gather as much info as possible.
To a certain degree you’re handicapped that your server doesn’t have a User actively logged in when a problem happens, but…
You first need to clearly define for yourself what you mean that the network seems to stop. There is a difference for example if any particular service running on the machine has stopped or if perhaps some external networking issue causes other machines not to be able to connect to your Server.
Some places to start…
If you suspect the network service running on your openSUSE, the following will return all system logs related to the network service during your previous boot…
journalctl -b -1 -u network.service
The following will return any type of error in your current boot
journalctl -p err -b
And, the following will return errors warnings in your current boot
journalctl -p warning -b
If you want to monitor your system log in real time, you can run the following, perhaps remotely using SSH (If monitoring remotely, you may see the last entries before networking stopped)
journalctl -f
Consider that restarting wicked may not actually mean that the problem is local. When you restart networking, your machine re-advertises itself on the network affecting how every other machine might interact with your machine.
From another (or the openSUSE itself), you may want to run tcpdump (if on another machine perhaps in promiscuous mode) to capture network packets for later analysis by a tool like Wireshark (A bit heavier, but Wireshark can do the packet capture, too).
If you’re serving files or providing Network services, you may want to analyze your network security as well (Are you deployed as a Workgroup which can regularly experience periods of downtime due to things like Master Browser elections).
You’ll notice the journalctl commands I recommended,
There are probably other ways to use journalctl to collect data, filtering differently, eg by time windows instead of by boot. You can find documentation and examples on the Web in blogs, in the help file MAN pages and plenty of other places. If you have difficulties running any command, just post details about your attempts and your question.
TSU