Bloquear portas no Firefox

2

Existe algum plugin que pode definir o firefox para simular que a porta 8080 está bloqueada?

Eu quero ver como meu site se comporta se certas portas (8080) estiverem bloqueadas.

    
por portoalet 12.08.2010 / 05:15

1 resposta

2

Não consegui encontrar um plug-in que permitisse que você fizesse isso, mas descobri uma alteração no arquivo.

Acesse o arquivo user.js e faça a seguinte alteração:

user_pref("network.security.ports.banned", "8080");

Mozilla allows a user to modify the default port blocking through the addition of preferences containing comma delimited lists of port numbers to either the user.js file (for single users) file in the user's profile directory or the all.js file (for multi-user systems) in the defaults/pref/ sub-directory in the installation directory for Mozilla in order to enable or block ports in Mozilla.

Fonte e outras leituras

    
por 12.08.2010 / 05:20