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
?