Hello, I am
testing a local network with Comcast's Xfinity internet service at home. I am able to access my
Wildfly 8 web server using
http://127.0.0.1:8080. Then I started the sever: [abigail@localhost bin]$ ./standalone.sh -b=10.0.0.17
where 10.0.0.17 is my internal IP assigned by the Xfinity modem. And Now I can access the web server on my OWN machine using
http://10.0.0.17:8080.
However, I can't access this web server from another laptop within the same network at home. The laptop (IP: 10.0.0.7) is connected wireless network.
How can I configure the Wildfly 8 to make other machine in the same local network able to access the server? I don't think it has anything to do with Xfinity modem? It's basically a question of configuring a local network issue in Wildfly.
I looked at this FAQ
https://developer.jboss.org/wiki/JBoss42FAQ and tried start the server with ./standalone.sh -b=0.0.0.0. It still doesn't work.
Any ideas? Thank you.