WebLogic provides a default connection filter that can perform IP address filtering. The weblogic.security.net.ConnectionFilterImpl filter accepts all incoming network connections and provides static methods that allow the server to obtain the current network connection filter. This filter can be configured using the WebLogic Administration Console, or by editing the domain config.xml file.

To Configure IP Filtering Using the WebLogic Administration Console
To Configure IP Filtering By Editing the config.xml File

The following is an example of a network connection filter rule:

192.168.0.0 127.0.0.1 7001 allow http https t3 t3s  # allow access for 192.168.0.0
    to 127.0.0.1:7001 for http, https, t3 and t3s protocols
192.168.0.0 127.0.0.1 7003 deny                     # deny access for 192.168.0.0
    to 127.0.0.1:7003 for all protocols

For further examples, and additional information, refer to your WebLogic documentation for the ConnectionFilterImpl filter.


Copyright © 1997, 2014 Oracle and/or its affiliates. All rights reserved. Legal Notices