Groups | Search | Server Info | Login | Register
Groups > linux.debian.maint.ipv6 > #116
| Path | csiph.com!weretis.net!feeder8.news.weretis.net!news.mixmin.net!aioe.org!feeder1.feed.usenet.farm!feed.usenet.farm!newsfeed.xs4all.nl!newsfeed7.news.xs4all.nl!bofh.it!news.nic.it!robomod |
|---|---|
| From | Nathan Van Ymeren <nathan.vany@gmail.com> |
| Newsgroups | linux.debian.maint.ipv6 |
| Subject | Re: I need help configuring IPv6 |
| Date | Thu, 24 Feb 2022 06:50:02 +0100 |
| Message-ID | <DUfaO-3XtF-3@gated-at.bofh.it> (permalink) |
| References | <DUdsm-3WjH-1@gated-at.bofh.it> <DUdVn-3WIr-5@gated-at.bofh.it> |
| X-Mailbox-Line | From debian-ipv6-request@lists.debian.org Thu Feb 24 05:40:21 2022 |
| Old-Return-Path | <nathan.vany@gmail.com> |
| X-Amavis-Spam-Status | No, score=-7.209 tagged_above=-10000 required=5.3 tests=[BAYES_00=-2, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, FREEMAIL_FROM=0.001, LDO_WHITELIST=-5, RCVD_IN_DNSWL_NONE=-0.0001, T_SCC_BODY_TEXT_LINE=-0.01] autolearn=ham autolearn_force=no |
| X-Policyd-Weight | NOT_IN_SBL_XBL_SPAMHAUS=-1.5 CL_IP_EQ_HELO_IP=-2 (check from: .gmail. - helo: .mail-yw1-x1135.google. - helo-domain: .google.) FROM/MX_MATCHES_HELO(DOMAIN)=-2; rate: -5.5 |
| X-Gm-Message-State | AOAM531xMAsC7JEQSFWH+Nji382kNkLM4/KljT48WRoeLTYeliW9I8hv I6MprvoutPcyKeCGi7eGwpFnFzrjnKKu3urt9MIFCuJZIdU= |
| X-Google-SMTP-Source | ABdhPJxvonnjUhbXmxiYQ/RmUd67wN7EKutZdiDiiXcTSdM6+WEUlkiD7GnWaWB7fCk2idAUaGNyzt4g1pfskm7Ak6w= |
| X-Received | by 2002:a81:340c:0:b0:2d6:884b:2cdb with SMTP id b12-20020a81340c000000b002d6884b2cdbmr898173ywa.471.1645681203339; Wed, 23 Feb 2022 21:40:03 -0800 (PST) |
| MIME-Version | 1.0 |
| Content-Type | text/plain; charset="UTF-8" |
| X-Mailing-List | <debian-ipv6@lists.debian.org> archive/latest/4931 |
| List-ID | <debian-ipv6.lists.debian.org> |
| List-URL | <https://lists.debian.org/debian-ipv6/> |
| List-Archive | https://lists.debian.org/msgid-search/CAEKyVWN69=sr2MxzOKBTWhCHcQwFpu03J=G71=BJbS0oTrD92Q@mail.gmail.com |
| Approved | robomod@news.nic.it |
| Lines | 48 |
| Organization | linux.* mail to news gateway |
| Sender | robomod@news.nic.it |
| X-Original-Date | Wed, 23 Feb 2022 21:39:51 -0800 |
| X-Original-Message-ID | <CAEKyVWN69=sr2MxzOKBTWhCHcQwFpu03J=G71=BJbS0oTrD92Q@mail.gmail.com> |
| X-Original-References | <CAEKyVWOJE=ZOdqX1RUbCWJ=BHQPOjLFoa5FbZB8-w=bsUS60ww@mail.gmail.com> <CANHSFssh+7Ro4e3epK18nnEO0-zz-_67gFcE=vtU5WBXa-DhRA@mail.gmail.com> |
| Xref | csiph.com linux.debian.maint.ipv6:116 |
Show key headers only | View raw
On Wed, Feb 23, 2022 at 8:24 PM Andika Triwidada <andika@gmail.com> wrote: > > > > On Thu, Feb 24, 2022 at 10:58 AM Nathan Van Ymeren <nathan.vany@gmail.com> wrote: >> >> >> The relevant portion of /etc/network/interfaces is: >> >> iface eno1 inet6 static >> address 2604:xxxx:xxxx:xxxx::2/64 >> gateway 2604:xxxx:xxxx:xxxx::1 >> >> As far as I can tell from reading the debian wiki and whatever else, >> it should work like this, but even ping6'ing the gateway gives "ping6: >> connect: Network is unreachable". I can ping the gateway on its >> link-local (fe80) address, but that's all I can do. >> >> Please help! >> > > Hi Nathan, > > I think the first important step is to ensure that the gateway pingable > at its 2604:xxxx:xxxx:xxxx::1 address, both from your computer and from the internet. > > Regards, > Andika > Sigh. It seems that the missing piece of the puzzle was this: You can't just add a default route (apparently). You have to first add the route to a specific interface. It's not clear to me if this is universally true, or just a consequence of something specific to my setup (the server in question has multiple NICs). The tl;dr is that it's necessary for me to do the following in order: # ip -6 route add blah:blah::1 dev eno1 # ip -6 route add default via blah:blah::1 where blah:blah::1/64 is the address my datacenter gave me for the v6 gateway router. I wish this had been more clearly laid out in the umpteen different wikis and tutorials I've tried to follow.
Back to linux.debian.maint.ipv6 | Previous | Next — Previous in thread | Next in thread | Find similar
I need help configuring IPv6 Nathan Van Ymeren <nathan.vany@gmail.com> - 2022-02-24 05:00 +0100
Re: I need help configuring IPv6 Andika Triwidada <andika@gmail.com> - 2022-02-24 05:30 +0100
Re: I need help configuring IPv6 Nathan Van Ymeren <nathan.vany@gmail.com> - 2022-02-24 05:50 +0100
Re: I need help configuring IPv6 Nathan Van Ymeren <nathan.vany@gmail.com> - 2022-02-24 06:50 +0100
Re: I need help configuring IPv6 Kenyon Ralph <kenyon@kenyonralph.com> - 2022-02-24 08:50 +0100
Re: I need help configuring IPv6 Nathan Van Ymeren <nathan.vany@gmail.com> - 2022-02-24 08:50 +0100
Re: I need help configuring IPv6 Pascal Hambourg <pascal@plouf.fr.eu.org> - 2022-02-24 22:10 +0100
Re: I need help configuring IPv6 Nathan Van Ymeren <nathan.vany@gmail.com> - 2022-02-24 22:20 +0100
csiph-web