Serwer gry Team Speak3 ustawienie iptables
: 27 września 2012, 08:42
				
				Witam.
Mam problem z serwerem gry Team Speak 3, w momencie gdy go uruchomiłem otworzyłem porty potrzebne do jego pełnej funkcjonalności. Nie mogłem się łączyć z serwerem.
Gdy ruch w stronę serwera przepuściłem, bez problemu się połączyłem, żeby było dziwniej, po ponownym wycięciu ruchu przychodzącego dalej mogę się łączyć, ale gdy chcę się połączyć z innego komputera to nie mogę.
Jaka może być tego przyczyna?
			Mam problem z serwerem gry Team Speak 3, w momencie gdy go uruchomiłem otworzyłem porty potrzebne do jego pełnej funkcjonalności. Nie mogłem się łączyć z serwerem.
Gdy ruch w stronę serwera przepuściłem, bez problemu się połączyłem, żeby było dziwniej, po ponownym wycięciu ruchu przychodzącego dalej mogę się łączyć, ale gdy chcę się połączyć z innego komputera to nie mogę.
Jaka może być tego przyczyna?
Kod: Zaznacz cały
netstat -ant | grep LISTEN
tcp        0      0 0.0.0.0:30033           0.0.0.0:*               LISTEN
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN
tcp        0      0 0.0.0.0:10011           0.0.0.0:*               LISTEN
tcp6       0      0 :::22                   :::*                    LISTEN
Kod: Zaznacz cały
netstat -lnp | grep ts3
tcp        0      0 0.0.0.0:30033           0.0.0.0:*               LISTEN      27893/ts3server_lin
tcp        0      0 0.0.0.0:10011           0.0.0.0:*               LISTEN      27893/ts3server_lin
udp        0      0 0.0.0.0:9987            0.0.0.0:*                           27893/ts3server_lin
Kod: Zaznacz cały
iptables -L
Chain INPUT (policy DROP)
target     prot opt source               destination
ACCEPT     all  --  anywhere             anywhere            state RELATED,ESTABLISHED
ACCEPT     udp  --  anywhere             anywhere            udp spt:9987 state NEW
In_RULE_3  tcp  --  anywhere             anywhere            tcp dpt:ssh state NEW
ACCEPT     tcp  --  anywhere             anywhere            tcp spt:27017 state NEW
ACCEPT     udp  --  anywhere             anywhere            udp spt:27017 state NEW
DROP       all  --  anywhere             anywhere
Chain FORWARD (policy DROP)
target     prot opt source               destination
ACCEPT     all  --  anywhere             anywhere            state RELATED,ESTABLISHED
ACCEPT     all  --  anywhere             anywhere            state NEW
DROP       all  --  anywhere             anywhere
Chain OUTPUT (policy DROP)
target     prot opt source               destination
ACCEPT     all  --  anywhere             anywhere            state RELATED,ESTABLISHED
ACCEPT     all  --  anywhere             anywhere            state NEW
Chain In_RULE_3 (1 references)
target     prot opt source               destination
LOG        all  --  anywhere             anywhere            LOG level info prefix `RULE 3 -- ACCEPT '
ACCEPT     all  --  anywhere             anywhereKod: Zaznacz cały
PS
27893 pts/1    Sl     1:47 ./ts3server_linux_amd64
31052 pts/2    S+     0:00 grep ts3