Remoting在多IP多網卡內外網環境下的問題

來源:互聯網
上載者:User

Remoting伺服器端如果伺服器有多塊網卡,多個IP地址的情況下會出現用戶端callback失敗的問題,debug以後發現用戶端會callback到伺服器端另外一個IP地址(例如外網地址,而不是內網地址)。大家知道一般情況下Remoting伺服器端的配置方式如下:

<channel ref="tcp" port="55555">

或者用代碼的方式:

IDictionary props = new Hashtable();
props["port"] = 55555;

IChannel channel = new TcpChannel(props, clientProvider, serverProvider);

該問題有幾種解決方案:

 

1. 將Channel綁定到機器名(使用“machineName”),而非IP。但這樣要求我們不同網段的客戶都能通過同一個DNS名找到這個伺服器。 而且使用此屬性將覆蓋useIpAddress屬性設定。

<channel ref="tcp" port="55555" machineName="firewall.yourdomain.com" />

代碼方式:

IDictionary props = new Hashtable();
props["port"] = 55555;
props["machineName"] = "firewall.yourdomain.com";

IChannel channel = new TcpChannel(props, clientProvider, serverProvider);

有關“machineName”屬性的詳細資料,請查閱MSDN:
http://msdn.microsoft.com/en-us/library/c5zztdc3%28VS.80%29.aspx

 

2.  為伺服器每一個IP都開一個Channel,並使用“bindTo”。

     有關bindTo屬性的詳細定義查看MSDN:specify an IP address of the NIC to bind to when more than one NIC is installed in a machine. This attribute can only be used in the server side.

     配置樣本:

<channel ref="tcp" port="55555" bindTo="197.118.137.8">
 <serverProviders>
   <formatter ref="soap" typeFilterLevel="Full" />
   <formatter ref="binary" typeFilterLevel="Full" />
 </serverProviders>
</channel>

3. 通過伺服器端的Sink取得Client端的IP,並通過手動設定的類似路由表一樣的對應表,通過用戶端的IP來選擇一個正確的伺服器IP。

    我們可以用 TrackingHandler在伺服器端Marshal MarshalByRefObject的時候用一個正確的IP。

    實現方法,參考張逸轉載的這篇文章:http://www.cnblogs.com/wayfarer/articles/69104.html

 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.