Olá a todos,

Desculpem a pergunta meio off topic, mas estou com muita dificuldade de 
encontrar a resposta na documentação do ubuntu.

Instalei uma nova instancia zope num servidor que administro, e não consigo 
fazer com que ela responda em nenhuma porta exeto a 8080 (que já esta em uso 
por outra instancia zope)
Contactei meu host e ele disse que não existe nenhuma restrição por parte do 
roteador deles.
Eu nunca mexi nas configurações de firewall do ubuntu, alias meus conhecimentos 
de linux são bem reduzidos.

Alguem sabe como verifico se existe alguma limitação nas outras portas?

Listo abaixo algumas informações que acho que podem ajudar...

Desde já agradeço,

André.

obs. Se acharem que a questão é muito off, podem me responder em pvt.




A mesma instancia configurada pra atender na 8080 e depois na 8181 tem 
respostas bem diferentes com o comando netstat -an|grep 8080 e 8181

$ netstat -an|grep 8181
tcp        0      0 0.0.0.0:8181            0.0.0.0:*               LISTEN

$ netstat -an|grep 8080
tcp        0      0 0.0.0.0:8080            0.0.0.0:*               LISTEN    
tcp        0      0 127.0.0.1:8080          127.0.0.1:55800         ESTABLISHED
tcp        0      0 127.0.0.1:8080          127.0.0.1:55799         ESTABLISHED
tcp        0      0 127.0.0.1:55798         127.0.0.1:8080          TIME_WAIT 
tcp        0      0 127.0.0.1:55799         127.0.0.1:8080          ESTABLISHED
tcp        0      0 127.0.0.1:55796         127.0.0.1:8080          TIME_WAIT 
tcp        0      0 127.0.0.1:55797         127.0.0.1:8080          TIME_WAIT 
tcp        0      0 127.0.0.1:55795         127.0.0.1:8080          ESTABLISHED
tcp        0      0 127.0.0.1:55793         127.0.0.1:8080          ESTABLISHED
tcp        0      0 127.0.0.1:55800         127.0.0.1:8080          ESTABLISHED
tcp        0      0 127.0.0.1:8080          127.0.0.1:55795         ESTABLISHED
tcp        0      0 127.0.0.1:8080          127.0.0.1:55793         ESTABLISHED


# iptables -L
Chain INPUT (policy DROP)
target     prot opt source               destination
ACCEPT     0    --  anywhere             anywhere
ACCEPT     tcp  --  anywhere             anywhere            tcp flags:ACK/ACK
ACCEPT     0    --  anywhere             anywhere            state ESTABLISHED
ACCEPT     0    --  anywhere             anywhere            state RELATED
ACCEPT     udp  --  anywhere             anywhere            udp spt:domain 
dpts:1024:65535
ACCEPT     icmp --  anywhere             anywhere            icmp echo-reply
ACCEPT     icmp --  anywhere             anywhere            icmp 
destination-unreachable
ACCEPT     icmp --  anywhere             anywhere            icmp source-quench
ACCEPT     icmp --  anywhere             anywhere            icmp time-exceeded
ACCEPT     icmp --  anywhere             anywhere            icmp 
parameter-problem
ACCEPT     tcp  --  anywhere             anywhere            tcp dpt:ssh
ACCEPT     tcp  --  anywhere             anywhere            tcp dpt:auth
ACCEPT     tcp  --  anywhere             anywhere            tcp dpt:webmin
ACCEPT     tcp  --  anywhere             anywhere            tcp dpt:ftp
ACCEPT     tcp  --  anywhere             anywhere            tcp dpt:smtp
ACCEPT     tcp  --  anywhere             anywhere            tcp dpt:www
ACCEPT     tcp  --  anywhere             anywhere            tcp dpt:pop3
ACCEPT     tcp  --  anywhere             anywhere            tcp dpt:https
ACCEPT     tcp  --  anywhere             anywhere            tcp dpt:domain
ACCEPT     udp  --  anywhere             anywhere            udp dpt:domain
ACCEPT     tcp  --  anywhere             anywhere            tcp dpt:auth
ACCEPT     tcp  --  anywhere             anywhere            tcp multiport 
ports webmin
ACCEPT     tcp  --  anywhere             anywhere            tcp dpt:webcache

Chain FORWARD (policy ACCEPT)
target     prot opt source               destination

Chain OUTPUT (policy ACCEPT)
target     prot opt source               destination

Responder a