1

Jboss 7.0(默认情况下)配置为通过在以下位置定义来限制对本地 ip 的访问standalone.xml

<interfaces>
    <interface name="public">
        <inet-address value="127.0.0.1"/>
    </interface>
</interfaces

我知道我可以通过以下方式更改它以使其对所有 ips 公开可用:

<interfaces>
    <interface name="public">
        <any-address/>
    </interface>
</interfaces

但是我怎样才能将其限制为仅本地 IP,例如所有以 开头的 IP 地址10.x.x.x

4

1 回答 1

5

我认为这可能会有所帮助:https ://docs.jboss.org/author/display/AS71/Interfaces+and+ports

<interface name="default">
   <!-- Match any interface/address on the right subnet -->
   <subnet-match value="192.168.0.0/16"/>
</interface>

通过这种方式,您可以匹配给定子网中的所有地址。

于 2013-04-23T16:07:30.333 回答