Moin,
habe soweit die iptables eingerichtet und als Script abgespeichert...
Alle Dienste (web / usw.) gehen ohne probleme.
Nun wollte ich mal einen Left4Dead2 Server einrichten, soweit klappt auch alles.
Nur habe ich Probleme mit der Firewall (iptables), dieser blockt irgendwo die Verbindung.
	
		
			
				|   | Quellcode | 
			
				| 1
2
3
4
5
6
 | ~# netstat -anp | grep srcds
tcp        0      0 217.172.***.***:27015    0.0.0.0:*               LISTEN      1510/srcds_linux
udp        0      0 217.172.***.***:27015    0.0.0.0:*                           1510/srcds_linux
udp        0      0 217.172.***.***:26901    0.0.0.0:*                           1510/srcds_linux
unix  3      [ ]         STREAM     VERBUNDEN     574558   1510/srcds_linux
unix  3      [ ]         STREAM     VERBUNDEN     574557   1510/srcds_linux | 
		
	 
 
	
		
			
				|   | Quellcode | 
			
				| 1
2
3
4
5
6
 | $IPT -A tcp_inbound -p TCP -s 0/0 -d $INET_ADDRESS --destination-port 27015 -j ACCEPT
$IPT -A tcp_outbound -p TCP -s 0/0 -d $INET_ADDRESS --destination-port 27015 -j ACCEPT
$IPT -A udp_inbound -p UDP -s 0/0 -d $INET_ADDRESS --destination-port 27015 -j ACCEPT
$IPT -A udp_outbound -p UDP -s 0/0 -d $INET_ADDRESS --destination-port 27015 -j ACCEPT
$IPT -A udp_inbound -p UDP -s 0/0 -d $INET_ADDRESS --destination-port 26901 -j ACCEPT
$IPT -A udp_outbound -p UDP -s 0/0 -d $INET_ADDRESS --destination-port 26901 -j ACCEPT | 
		
	 
 Wenn ich alle iptables rules lösche geht es einwandfrei.
der Debug Mode von l4d2 zeigt mit auch keine Ergebnisse, die nützlich sein könnten.
danke und Gruß
Gunah