嗨我正在與Mule Anypoint Studio合作,我正在嘗試實施一個IP列表,但我的程序允許來自所有IP的每個請求,並且它僅適用於每個瀏覽器的一個請求。它是如何工作,我不知道。請詳細說明工作。請不要分享Mule文檔鏈接,因爲他們沒有提供太多的信息。Anypoint企業安全IP篩選器
<?xml version="1.0" encoding="UTF-8"?>
<mule xmlns:tracking="http://www.mulesoft.org/schema/mule/ee/tracking" xmlns:http="http://www.mulesoft.org/schema/mule/http" xmlns:filters="http://www.mulesoft.org/schema/mule/filters" xmlns="http://www.mulesoft.org/schema/mule/core" xmlns:doc="http://www.mulesoft.org/schema/mule/documentation"
\t xmlns:spring="http://www.springframework.org/schema/beans" version="EE-3.5.0"
\t xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
\t xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-current.xsd
http://www.mulesoft.org/schema/mule/core http://www.mulesoft.org/schema/mule/core/current/mule.xsd
http://www.mulesoft.org/schema/mule/http http://www.mulesoft.org/schema/mule/http/current/mule-http.xsd
http://www.mulesoft.org/schema/mule/filters http://www.mulesoft.org/schema/mule/filters/current/mule-filters.xsd
http://www.mulesoft.org/schema/mule/ee/tracking http://www.mulesoft.org/schema/mule/ee/tracking/current/mule-tracking-ee.xsd">
<filters:config name="Filters" doc:name="Filters"/>
<flow name="mule-security-ipFlow1" doc:name="mule-security-ipFlow1">
<http:inbound-endpoint exchange-pattern="request-response" host="196.111.1.1" port="8081" doc:name="HTTP" path="ip"/>
<filters:filter-by-ip config-ref="Filters" regex="196.16.4.1,196.17.7.13" doc:name="Filters"/>
<set-payload value="#['Data Mast']" doc:name="Set Payload"/>
<logger message="#[message.payload]" level="INFO" doc:name="Logger"/>
</flow>
</mule>
哪個版本騾你在用嗎? 在最後一個(3.6.0)中找不到「filter-by-ip」過濾器。 但是,如果移動到3.6,則可以使用http.remote.address入站屬性上的正則表達式過濾器來過濾掉不需要的IP。 HTH,Marcos – MarcosNC 2015-02-12 20:27:59