Issues with adding IPv6 to Tomcat webserver

89 Views Asked by At

SO community! :)

I currently have a Tomcat server setup which is only reachable via VPN on IPv4.

I now wanted to add IPv6 but no matter what I tried it doesn't want to work.

I really can't think of any reason why it wouldn't work, it's very frustrating as I can't tell my staff to disable IPv6 support on their router.

Here's my original IPv4 setup

<Valve className="org.apache.catalina.valves.RemoteAddrValve" allow="xxx\.119\.xx\.15x"/>

Here's what i tried so far

<Valve className="org.apache.catalina.valves.RemoteAddrValve" allow="xxx\.119\.xx\.15x|2xxx:4xx:xxx:1bd6"/>
<Valve className="org.apache.catalina.valves.RemoteAddrValve" allow="xxx\.119\.xx\.15x|::1|2xxx:4xx:xxx:1bd6"/>
<Valve className="org.apache.catalina.valves.RemoteAddrValve" allow="xxx\.119\.xx\.15x|::1|2xxx:4xx:xxx:1bd6::64"/>

Any ideas? :/

0

There are 0 best solutions below