Replies: 3 comments 12 replies
-
|
Why does your server crash? |
Beta Was this translation helpful? Give feedback.
-
|
I believe those quick connections are reads of Welcome message to determine if your server is capable of RAW audio. Check your logs for Three Jamulus website operators are querying servers to find RAW audio-supported servers. These connections should be harmless on their own but if you're processing all connection types for your bot that may be a problem for you. |
Beta Was this translation helpful? Give feedback.
-
|
I have edit the text add also output blocking and the URL https://jamulusjams.com/block-user-tracking.html for more info. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
On my Blues/Rock Server I had some strange behave. Somebody connect and disconnect again very fast.
Maybe some Ping or somebody is testing something.
Trouble I get from this is that my Server sometimes crash.
So I was searching what I can do with this.
Only option was UFW Firewall but it had no effect. Fast Connection and disconnections still there.
After very much searching how to fix this. Why is it still possible that the Linux Firewall ufw don't block some IP Addresses.
If this is the case, it is possible to block them with a little tweak.
What you need is to edit before.rules from the Firewall.
Command on Raspberry PI
sudo nano /etc/ufw/before.rules
Near the top you find *filter there you add the ip address you like to Drop.
I block the IP tracking user data. More info about this see https://jamulusjams.com/block-user-tracking.html
-A ufw-before-input -s 137.184.43.255 -j DROP
-A ufw-before-forward -s 137.184.43.255 -j DROP
-A ufw-before-output -d 137.184.43.255 -j DROP
After add this and save you have to restart the firewall
sudo ufw disable
And restart
sudo ufw enable
That's it and problem is solved.
My Filter part
Don't delete these required lines, otherwise there will be errors
*filter
:ufw-before-input - [0:0]
:ufw-before-output - [0:0]
:ufw-before-forward - [0:0]
:ufw-not-local - [0:0]
-A ufw-before-input -s 137.184.43.255 -j DROP
-A ufw-before-forward -s 137.184.43.255 -j DROP
-A ufw-before-output -d 137.184.43.255 -j DROP
End required lines
Beta Was this translation helpful? Give feedback.
All reactions