2 Replies Latest reply on Apr 28, 2012 11:44 AM by ghep

    JBoss AS7 management console only specific IP address

    ghep

      Hi All,

      I'm developing a Web App and I would like that the management console accessible (from http://myipaddress:9990) is reachable only from the ip address of my office ...

       

      Is possible? If yes can you explain me how to do it?

       

      Thanks

        • 1. Re: JBoss AS7 management console only specific IP address
          dlofthouse

          At the moment this would need to be based on firewall rules - however this has been sugested a couple of times so fee free to raise a feature request in jira for a feature along those lines.

          • 2. Re: JBoss AS7 management console only specific IP address
            ghep

            Thanks for your answer ... i'm thinking that i can control the access to management console with standalone.xml:

             

             

            <interfaces>

                    <interface name="management">

                        <any-address/>

                    </interface>

                    <interface name="public">

                        <any-address/>

                    </interface>

                    <interface name="unsecure">

                        <inet-address value="${jboss.bind.address.unsecure:127.0.0.1}"/>

                    </interface>

                </interfaces>

             

             

            I can modify the management section with the specific IP address.

             

             

            Now I have another question ... instead limiting the access by ip-address is possibile mange the authentication with certificates?

             

             

            Thanks