iptables -A INPUT -p tcp --dport 3306 -s 123.123.123.123 -j ACCEPT
iptables -A INPUT -p tcp --dport 3306 -j DROP
statt-j REJECT --reject-with icmp-port-unreachable
-j Drop
Ah danke. mit "-j REJECT --reject-with icmp-port-unreachable "Wenn die Ablehnung schneller laufen..
It's not quite that simple. The tcp stack on the sender's machine may
wait, then send another syn packet, and possibly repeat several times.
In that case DROP may actually increase the incoming traffic.
In addition to the suggestions from other posters, you can keep
traffic down and minimize your profile by using REJECT with a "host
unreachable" type instead of the default "port unreachable". By doing
that it makes the sender think that either there is no machine there,
or that it is down completely. That of course is not true if you allow
ping through and they use that to test first.
Solltest du die Mysql-Daten über das I-net verteilen, würde ich mir überlegen, ob man für den Mysql-Zugriff nichth einen SSL- oder SSH-Tunnel verwendet.
Na muss ja nicht unbedingt ein Tunnel sein. Mir gings eher darum, dass man sich um ne Verschlüsselung kümmert, aber das hast du ja eh schon getan ;-)Hier habe ich mir vorgestellt einfach mysql ssl "beizubringen".
We use essential cookies to make this site work, and optional cookies to enhance your experience.