1

i had few years ago IpV4 based server, but since they turned my internet to IpV6 configurable only, i wasn't be able to get it working, I can access my XAMPP Domain locally with IpV6 address using http://[2a02:8071:2285:5200:54de:3e11:eff1:5c26]/ which works perfectly for LAN, but I need that it will be accessible from every place.

This is what i have in my system32/../hosts

2a02:8071:2285:5200:54de:3e11:----:---- zaktam.ddns.net

and this is my httpd-vhosts.conf

<VirtualHost *:80>
ServerAdmin [email protected]
DocumentRoot "c:/Apache24/docs/dummy-host.example.com"
ServerName dummy-host.example.com
ServerAlias www.dummy-host.example.com
ErrorLog "logs/dummy-host.example.com-error.log"
CustomLog "logs/dummy-host.example.com-access.log" common
</VirtualHost>

<VirtualHost *:80>
ServerAdmin [email protected]
DocumentRoot "c:/Apache24/docs/dummy-host2.example.com"
ServerName dummy-host2.example.com
ErrorLog "logs/dummy-host2.example.com-error.log"
CustomLog "logs/dummy-host2.example.com-access.log" common
</VirtualHost>

<VirtualHost *:80>
DocumentRoot "H:/Sites/ZAKTAM"
ServerName zaktam.ddns.net
</VirtualHost>

my ipconfig (I deleted It because It showed my private infos)

IpV4 which is detecting by internet sites, IP: 46.5.2.---

And Router settings:

(IpV6 Forwarding, Port Triggers, Firewall)

, ,

now my question, what did i configured bad so it only let's me to connent per LAN ?

I already found answer, It's because of my Internet provider which block this feature for normal people, and allow only Bussiness users do that.

6
  • Forwarding isn’t really what you do with IPv6. What does the “Port Filters” page offer?
    – Daniel B
    Commented Sep 12, 2016 at 13:17
  • Also: You’re using a temporary address (probably made by Privacy Extensions). It’ll expire after a set time. Instead, use the first address (...::5).
    – Daniel B
    Commented Sep 12, 2016 at 13:21
  • Here is what "Port Filters" say link
    – zapole
    Commented Sep 13, 2016 at 18:07
  • Wow, that looks, uh, super helpful. xD Well I guess you better refer to grawity’s answer. I don’t have the regular cable modem, so I don’t have experience with it.
    – Daniel B
    Commented Sep 13, 2016 at 18:41
  • You need a better router. Or at least better router firmware. That thing looks like complete garbage. Commented Sep 13, 2016 at 20:11

1 Answer 1

0

First: You're using a temporary address, which Windows changes every 10 hours. For hosting a server, you should instead use the permanent 2a02:8071:2285:5200:4184:29ad:791d:---- address.

Second: "Port forwarding" only happens when someone tries to connect to router's own IP address (which I'm guessing is 2a02:8071:2200:0:7d10:6245:ac1e:----). But to be honest, port forwarding is a bit useless in IPv6 since you can just use your own address instead.

That's what you tried, actually, but it didn't work for a different reason – it didn't work because your router actually blocks all incoming connections to the LAN; that's the "IPv6 Firewall Protection" option.

2
  • I did all of that, but still I can connect only locally, I just found out that i have DS-lite :/
    – zapole
    Commented Sep 13, 2016 at 20:23
  • @zapole That only affects incoming IPv4 connections. I have IPv6 (Unitymedia) and still can't connect, so... :D
    – Daniel B
    Commented Sep 13, 2016 at 21:04

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .