0

I have the following (simplified) docker(-compose) setup and would like access the nginx container from the laptop. A ping from the laptop to the docker-compose gateway (fd..2222.0.0.1/80) works fine but to fd..2222.0.0.2/80 doesnt work.

enter image description here

I already tried to advertise a route via radvd (running on the Server):

interface wlp1s0 {
    IgnoreIfMissing on;
    AdvSendAdvert on;
    MaxRtrAdvInterval 600;

    route fddd::2222:0:0:0/80 {
        AdvRouteLifetime 900;
        AdvRoutePreference low;
    };
};

The route gets added to the laptop:

$ ip -6 -br r
...
fddd::2222:0:0:0/80 via fe80::xxxx:xxxx:xxxx:xxxx dev wlan0 proto ra metric 1024 expires 684sec pref low
...

but theres still no ping getting through. Could you help me getting this to work?

$ ip -6 -br a   # Server
lo               UNKNOWN        ::1/128
wlp1s0           UP             ... fddd::2c2:c6ff:febd:862a/64 ...
docker0          DOWN           fddd::1111:0:0:1/80 fe80::xxxx/64 fe80::1/64
br-ae6409628391  UP             fddd::2222:0:0:1/80 fe80::xxxx/64 fe80::1/64

0 Answers0