cablespaghetti.dev is a Fediverse instance that uses the ActivityPub protocol. In other words, users at this host can communicate with people that use software like Mastodon, Pleroma, Friendica, etc. all around the world.

This server runs the snac software and there is no automatic sign-up process.

Site description
Cablespaghetti's personal snac instance
Admin email
[email protected]
Admin account
@[email protected]

Search results for tag #ipv6

[?]Chris 🏃 🐧 » 🌐
@[email protected]

Kind reminder that there is this neat tool: Yggdrasil Network.

yggdrasil-network.github.io/

    [?]Jan Wildeboer 😷:krulorange: » 🌐
    @[email protected]

    Finally learning IPv6, a thing I tried to avoid for the longest time. All my servers are reachable via IPv6, I know how to do that, but now I am learning to set up IPv6 in my home(lab) network and wrapping my head around concepts like ULAs (Unique Local Addresses, that don't route to/from the internet), prefixes I get from my ISP and how all of that translates to DNS entries on my BIND9. Mistakes will be made.

    1/4

      [?]Jan Wildeboer 😷:krulorange: » 🌐
      @[email protected]

      For once it seems that having a VDSL connection with Deutsche Telekom is worth it, as their IPv6 setup delegates a /56 to my home. This means I get 255 /64 to play with :)

      2/4

        [?]Jan Wildeboer 😷:krulorange: » 🌐
        @[email protected]

        Enough for today, which I will remember as my personal IPv6 day :) Time for a cuppa and a Madeleine. Uffa.

        4/4

          [?]Jan Wildeboer 😷:krulorange: » 🌐
          @[email protected]

          OK. Step 1 done. My homelab machines get ULAs and I have added AAAA records to my DNS. So this already works :) Ping and ssh via IPv6 with hostname resolution via my own DNS server. Now to add reverse lookup.

          Unfinished brain dump at codeberg.org/jwildeboer/gists/

          Corrections and enhancements welcome! I'm a noob wrt IPv6 ...

          3/4

          cat /var/named/forward.homelab.jhw 
$TTL 3600
@   IN  SOA     inf01.homelab.jhw. root.homelab.jhw. (
        2025082705  ;Serial
        3600        ;Refresh
        1800        ;Retry
        604800      ;Expire
        86400       ;Minimum TTL
)
@       IN  NS          inf01.homelab.jhw.
@       IN  A           192.168.1.10
inf01           IN  A     192.168.1.10
inf01		IN  AAAA  fdda:a4da:69a5:0:2783:8c26:b2f1:a6f7
hl01            IN  A     192.168.1.11
hl01		IN  AAAA  fdda:a4da:69a5:0:6e4b:90ff:fe75:3a73
hl02            IN  A     192.168.1.12
hl02		IN  AAAA  fdda:a4da:69a5:0:6e4b:90ff:fe21:c3f5
hl03            IN  A     192.168.1.13
hl03		IN  AAAA  fdda:a4da:69a5:0:6e4b:90ff:fe21:ca06
ca              IN  CNAME inf01.homelab.jhw.

          Alt...cat /var/named/forward.homelab.jhw $TTL 3600 @ IN SOA inf01.homelab.jhw. root.homelab.jhw. ( 2025082705 ;Serial 3600 ;Refresh 1800 ;Retry 604800 ;Expire 86400 ;Minimum TTL ) @ IN NS inf01.homelab.jhw. @ IN A 192.168.1.10 inf01 IN A 192.168.1.10 inf01 IN AAAA fdda:a4da:69a5:0:2783:8c26:b2f1:a6f7 hl01 IN A 192.168.1.11 hl01 IN AAAA fdda:a4da:69a5:0:6e4b:90ff:fe75:3a73 hl02 IN A 192.168.1.12 hl02 IN AAAA fdda:a4da:69a5:0:6e4b:90ff:fe21:c3f5 hl03 IN A 192.168.1.13 hl03 IN AAAA fdda:a4da:69a5:0:6e4b:90ff:fe21:ca06 ca IN CNAME inf01.homelab.jhw.

          % ping6 -c 2 hl01.homelab.jhw
PING6(56=40+8+8 bytes) fdda:a4da:69a5:0:1c38:385f:940:d721 --> fdda:a4da:69a5:0:6e4b:90ff:fe75:3a73
16 bytes from fdda:a4da:69a5:0:6e4b:90ff:fe75:3a73, icmp_seq=0 hlim=255 time=16.264 ms
16 bytes from fdda:a4da:69a5:0:6e4b:90ff:fe75:3a73, icmp_seq=1 hlim=255 time=9.203 ms

--- hl01.homelab.jhw ping6 statistics ---
2 packets transmitted, 2 packets received, 0.0% packet loss
round-trip min/avg/max/std-dev = 9.203/12.733/16.264/3.531 ms
% ssh -6 root@hl01.homelab.jhw
Web console: https://hl01.homelab.jhw:9090/ or https://192.168.1.11:9090/

Last login: Wed Aug 27 21:20:42 2025 from 217.237.90.172
root@hl01:~# who
root     pts/0        2025-08-27 21:29 (fdda:a4da:69a5:0:1c38:385f:940:d721)
root@hl01:~#

          Alt...% ping6 -c 2 hl01.homelab.jhw PING6(56=40+8+8 bytes) fdda:a4da:69a5:0:1c38:385f:940:d721 --> fdda:a4da:69a5:0:6e4b:90ff:fe75:3a73 16 bytes from fdda:a4da:69a5:0:6e4b:90ff:fe75:3a73, icmp_seq=0 hlim=255 time=16.264 ms 16 bytes from fdda:a4da:69a5:0:6e4b:90ff:fe75:3a73, icmp_seq=1 hlim=255 time=9.203 ms --- hl01.homelab.jhw ping6 statistics --- 2 packets transmitted, 2 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 9.203/12.733/16.264/3.531 ms % ssh -6 [email protected] Web console: https://hl01.homelab.jhw:9090/ or https://192.168.1.11:9090/ Last login: Wed Aug 27 21:20:42 2025 from 217.237.90.172 root@hl01:~# who root pts/0 2025-08-27 21:29 (fdda:a4da:69a5:0:1c38:385f:940:d721) root@hl01:~#

            sam boosted

            [?]Thomas Schäfer » 🌐
            @[email protected]

            AWS Client VPN now supports connectivity to IPv6 resources
            Posted on: Aug 26, 2025
            aws.amazon.com/about-aws/whats

              [?]goetz 🚲 » 🌐
              @[email protected]

              @jwildeboer @luisfcorreia

              Dynamic Prefix is a major hassle for connectivity and especially for the homelabers.
              There are numerous RFC to work around the broken ISPs like the one you mentioned.
              Currently there is an active discussion in the IETF WG how to solve this problem.
              What I learned in this regard, only use ULA as a last resort, as this is not an RFC1918 equivalent.

              Please tag your posts with .

                [?]Klaus Frank » 🌐
                @[email protected]

                @jwildeboer
                Most of it is quite easy.

                The shitty part of is basically:
                * dynamic readdressing caused by dynamic prefix rotation
                * upstream source filtering esp. when dual homed and you don't have a flat internal network
                * cellular source filtering sometimes to a single /128 and a specific TTL
                * Docker and dynamically getting addresses, esp. on notebooks when you don't fully control upstream network (neigh proxy, prefix delegation, ...)
                * multi homing with multiple ISPs (without peering)

                  [?]:runbsdBg: sysop :runbsdBg: » 🌐
                  @[email protected]

                  I wonder how many of you does really have to, or, need to, configure NAT64 routing. Any special scenario you guys have stumbled upon that wanna share with the rest of the class ?

                  bsdrp.net/documentation/exampl

                  #ipv6 #ipv6 #bsd #freebsd

                  Alt...#ipv6 #ipv6 #bsd #freebsd

                    [?]Forst » 🌐
                    @[email protected]

                    @snep If only there was a way for everyone to get all ports! Gosh, too bad we as humanity haven't come up with a solution to this. ( 👀)

                      [?]Marek » 🌐
                      @[email protected]

                      I am now a RIPE NCC Certified IPv6 Security Expert.
                      I am happy that I passed the exam despite technical difficulties with the exam platform.

                      @ripencc

                      You can see a kind of digital pin badge. It is silver around the edge and purple on the inside. It bears the text "RIPE NCC Certified Professionals IPv6 Security Expert".

                      Alt...You can see a kind of digital pin badge. It is silver around the edge and purple on the inside. It bears the text "RIPE NCC Certified Professionals IPv6 Security Expert".

                      A certificate with a purple pattern. The text "RIPE NCC Certified Professionals" is at the top left. "Marek Küthe has completed the RIPE NCC Certified Professionals requirements and is recognised as an IPv6 Security Expert" is in the middle. "Issued on: 25 AUG 2025" "Expires on: 25 AUG 2028" is at the bottom left. "Issued by RIPE NCC" "Verify: https://www.credly.com/go/5hEun2tP" is at the bottom right.

                      Alt...A certificate with a purple pattern. The text "RIPE NCC Certified Professionals" is at the top left. "Marek Küthe has completed the RIPE NCC Certified Professionals requirements and is recognised as an IPv6 Security Expert" is in the middle. "Issued on: 25 AUG 2025" "Expires on: 25 AUG 2028" is at the bottom left. "Issued by RIPE NCC" "Verify: https://www.credly.com/go/5hEun2tP" is at the bottom right.

                        [?]"Musty Bits" McGee » 🌐
                        @[email protected]

                        ooh this'd be a fun thing to implement as a public DNS server dynamically returning TXT for reverse lookups and AAAA for forwards

                        github.com/lstn/ip6words

                          [?]Thomas Schäfer » 🌐
                          @[email protected]

                          [?]Rainer "friendica" Sokoll » 🌐
                          @[email protected]

                          Was ich gar nicht wußte: Bei bekommt man mittlerweile einfach so ein /64, ohne das irgendwo beantragen zu müssen.
                          Und es funktioniert noch dazu, kein Gehampel mit mehr, der macht das sauber inklusive Sonderlocken wie "ignoriere die Nameserver, die Vodafone Dir aufs Auge drücken möchte, nimm den

                          wie es sein soll. Na gut, größer als /64 bekomme ich als Privatkunde wohl nicht, d.h, im Heimnetz gehen dann eben nicht, jedenfalls nicht mit v6.
                          Irgendwas ist ja immer, für jetzt bin ich zufrieden.

                            [?]Stefano Marinelli » 🌐
                            @[email protected]

                            In general, I like netcup. The FediMeteo VPS rocks and they're quite reliable but....their IPv6 implementation is such a mess! Hetzner allows you to route, so each vnet jail can have its own IPv6 address. On netcup, I have never been able to achieve such a result.

                              [?]Jan ☕🎼🎹☁️🏋️‍♂️ » 🌐
                              @[email protected]

                              Does anyone have experience with and ?

                              It works fine as long as there's only an IPV4 range configured, but when I add an IPv6 ULA it breaks. Starting a CT leads to

                              ```
                              DEBUG utils - ../src/lxc/utils.c:run_buffer:560 - Script exec /usr/share/lxc/hooks/lxc-pve-prestart-hook 103 lxc pre-start produced output: org.freedesktop.DBus.Error.ServiceUnknown: The name uk.org.thekelleys.dnsmasq.local was not provided by any .service files
                              ```

                              The forums have no clue.

                                [?]Larvitz :fedora: :redhat: » 🌐
                                @[email protected]

                                Anyone using OVHCloud with IPv6?
                                I have a server at Netcup.de and it seems, there's a nasty routing issue from OVH to the German Nuremberg Datacenter of NetCup.

                                Could someone try reaching out to 2a0a:4cc0:c1:2f90::2 from an OVH network? (Ping, SSH, Traceroute ..)

                                @OVHcloud @netcup

                                  [?]Nico -telmich- Schottelius » 🌐
                                  @[email protected]

                                  @goetz nothing... Not even after nagging for 8 years. Not willing to add knowledge leads to these horrible routing layouts

                                    [?]goetz » 🌐
                                    @[email protected]

                                    @nico
                                    They don't even have an prefix allocated to their AS?
                                    What a shame!

                                      [?]Nico -telmich- Schottelius » 🌐
                                      @[email protected]

                                      Real life Internet routing - this is so broken. Snapshot taken from a provider who did not deploy at all. I personally find it very shameful.

                                        [?]Jason Tubnor 🇦🇺 » 🌐
                                        @[email protected]

                                        Burning it in for 12 hours now. It consumes 17W at idle running #OpenBSD 7.7 without apmd and ramps to 35W during KARL. Firmware was updated to the latest supported for the model and VT-x extensions have been turned off, this is just a firewall.

                                        Thermals are good with the case back together. In 20 degrees ambient, they are reporting:
                                        hw.sensors.cpu0.temp0=39.00 degC
                                        hw.sensors.acpitz0.temp0=27.80 degC (zone temperature)
                                        hw.sensors.nvme0.temp0=40.00 degC, OK

                                        I did clean the heat sink and CPU, then applied new thermal paste. Time to build some ansible playbooks for management and then apply them, ready for production. #firewall #IPv6

                                          [?]Nivex 🐧 📻 » 🌐
                                          @[email protected]

                                          $ host -t AAAA isitfridayyet.net
                                          isitfridayyet.net has no AAAA record

                                            [?]Miyuru Sankalpa » 🌐
                                            @[email protected]

                                            Predict when GitHub will deploy IPv6.

                                            metaculus.com/questions/37128/

                                            Current community prediction is Sep 2030.

                                              [?]Anderson Silva » 🌐
                                              @[email protected]

                                              @apalrd community.ui.com/releases/UniF

                                              Significant progress on the current protocol, on this release (still in RC, as of this moment).

                                                [?]Travis » 🌐
                                                @[email protected]

                                                Someone should tell Newfold they need to modernize. theregister.com/2025/08/20/iet

                                                  [?]Thomas Schäfer » 🌐
                                                  @[email protected]

                                                  [?]Anderson Silva » 🌐
                                                  @[email protected]

                                                  There are dozens of server mirrors of my distro of choice in my country, half of them compliant with actual Internet standards a.k.a. enabled & the ISP I have @ home (AS18881), despite being one of the biggest if not the biggest company around and providing connectivity for decades... due to "internal politics", they won't peer with ANYONE in this stack. The result? To reach the server literally next door, the connection goes to Disney and back

                                                  ipv6.reddit.com/r/InternetBras

                                                  [...]

                                                    [?]Daniel » 🌐
                                                    @[email protected]

                                                    Ah klar die . Das erklärt, warum in Deutschland nichts voran geht ​:kekwait:

                                                      [?]goetz » 🌐
                                                      @[email protected]

                                                      @UnderEu @nivex @forwardingplane

                                                      Interesting that gets also an A, as there whole management interfaces are not enabled and no roadmap.

                                                        [?]Nivex 🐧 📻 » 🌐
                                                        @[email protected]

                                                        @forwardingplane Interesting that Linode has a lower grade than DigitalOcean. Linode's is enabled by default, whereas with DO you still have to opt-in at VM creation time and I'm told it's quite difficult to retroactively do this.

                                                          [?]Sebastian Lohmann » 🌐
                                                          @[email protected]

                                                          @mrblubber … das Problem habe ich auch (nicht mit meinem Gerät, da Telekom, aber mit den anderen in der Familie): über Glasfaser, mobil bei nur - wenn da jemand eine Lösung hat - gerne her damit!

                                                            [?]goetz » 🌐
                                                            @[email protected]

                                                            [?]goetz » 🌐
                                                            @[email protected]

                                                            To extend this to other German ISPs

                                                            Main website reachable over

                                                            OK
                                                            OK
                                                            OK
                                                            OK

                                                            NOK
                                                            NOK
                                                            NOK
                                                            NOK
                                                            NOK

                                                              [?]Anderson Silva » 🌐
                                                              @[email protected]

                                                              🙂

                                                              Badge in Hurricane Electric IPv6 Certification page, informing that I am now certified as "Sage"

                                                              Alt...Badge in Hurricane Electric IPv6 Certification page, informing that I am now certified as "Sage"

                                                                [?]goetz » 🌐
                                                                @[email protected]

                                                                Saturday

                                                                Looking for a new computer on the modern internet?

                                                                It is either , , or

                                                                The usual suspects and mini-pc manufacturers are all not available via

                                                                  [?]goetz » 🌐
                                                                  @[email protected]

                                                                  @UnderEu they provide it mostly on payment is not possible

                                                                    [?]goetz » 🌐
                                                                    @[email protected]

                                                                    and I checked as alternatives to for their ability to work on the modern internet. Non of those 3 are capable off. I opened an issue / feature request with all of them. Please chime in if you are a current user or would like to switch but cannot due to this constrain.

                                                                      [?]Thomas Schäfer » 🌐
                                                                      @[email protected]

                                                                      by komro

                                                                      (in der City)

                                                                      👍👍👎(some MTU issues)

                                                                        Back to top - More...