.NET 4+、Entity Framework、およびODP.NETを使用して構築されたWindowsサービスを含む、当社の製品を使用するクライアントがあります。 1つの特定のインストールで何らかの理由でWindowsサービスが6200でトラフィックを生成しているように見えます。Oracle Documentationは、これがOracle Notification Servicesが使用するポートであることを示します。当社の製品はONSを利用していないため、これは予期しないことです。私はother Oracle Documentationで、RAC/Fast FailoverもONSを使用していることを示していますが、どの環境でもRACを使用していないことをクライアントが確認し、接続文字列にRACオプションを使用していません。我々はDatabase Change Notificationsを使って(私たちの知る限りでは)、ONSを活用しているように思えるキャッシュデータのキャッシュ/検証も行っていません。ODP.NET +ポート6200(Oracle Notification Services)の予期しないトラフィック
私たちがポート6200トラフィックを生成する理由を説明するのは誰でも助けできます。さらに重要なのは、それを止める方法です。ありがとう!
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
</configSections>
<connectionStrings [Redacted] />
<appSettings [Redacted] />
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
<entityFramework>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
<parameters>
<parameter value="v11.0" />
</parameters>
</defaultConnectionFactory>
<providers>
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
<provider invariantName="Oracle.ManagedDataAccess.Client" type="Oracle.ManagedDataAccess.EntityFramework.EFOracleProviderServices, Oracle.ManagedDataAccess.EntityFramework, Version=6.122.1.0, Culture=neutral, PublicKeyToken=89b483f429c47342" />
</providers>
<contexts>
<context type="[Redacted]" disableDatabaseInitialization="true" />
</contexts>
</entityFramework>
<system.data>
<DbProviderFactories>
<remove invariant="Oracle.ManagedDataAccess.Client" />
<add name="ODP.NET, Managed Driver" invariant="Oracle.ManagedDataAccess.Client" description="Oracle Data Provider for .NET, Managed Driver" type="Oracle.ManagedDataAccess.Client.OracleClientFactory, Oracle.ManagedDataAccess, Version=4.122.1.0, Culture=neutral, PublicKeyToken=89b483f429c47342" />
</DbProviderFactories>
</system.data>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1" />
</runtime>
</configuration>
これは完全な回答ではありませんでしたが、私はスキミングしたドキュメントについて考えました。最終的に構成設定につながるので、賞金はすべてあなたのものです –