PDA

Ver la Versión Completa : Puertos TCP y UDP


tang
21-03-2007, 01:37:26
Recientemente publique una aplicacion web programada con VS 2005 y AJAX.NET, utiliza firebird 2.0. Cuando la accesaba desde otra ciudad sin el basic firewall funcionaba de maravilla, muy rapido y eficiente.
Una vez habilitadl el basic firewall que viene con Win 2003 server no pude accesar mas la aplicaciòn desde internet. Funciona bien dentro de la red lan.

Por ejemplo Habilite los puertos 80, 3050 tcp y udb para el firebird, habilite el ICMP para que trabaje el ping y no-ip.com, etc.

Quien puede decirme cuales son los puertos tcp y udp que debo habilitar para que funcione correctamente el .NET Framework 2.0 o la aplicacion ?

Gracias de antemano

Saludos

egostar
21-03-2007, 02:19:15
Espero que te sirva de algo

If You Use the TCP Channel with .NET Remoting, Consider System.Net.Security.NegotiateStream

In .NET Framework 1.1, remoting applications that use the TCP channel do not by default perform authentication or encryption. In .NET Framework 2.0, the remoting framework uses the new System.Net.Security.NegotiateStream class to encrypt and sign the data transported over the channel and to authenticate callers. To use this feature, you can configure the <channel> element in the Machine.config file, the Web.config file, or the App.config file, depending on whether you want to apply the setting across all applications on your computer or to a specific application.
The following example shows how a server specifies that authentication is required and that the channel should be protected with encryption.
<channel ref="tcp" port="1234"
authenticationMode="IdentifyCallers" secure="true" />



La nota completa aquí (http://msdn2.microsoft.com/en-us/library/aa480477.aspx) la puedes ver.

Salud OS.