Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for IPv6 network/peer configuration #314

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Prev Previous commit
Next Next commit
Rename inherit from groups to automatic, some explanatory text
pulsastrix committed Mar 1, 2024
commit f0d7c95679c5fc7daa78d7dacc9d8e4aac4289d9
7 changes: 5 additions & 2 deletions src/app/(dashboard)/peer/page.tsx
Original file line number Diff line number Diff line change
@@ -271,7 +271,10 @@ function PeerOverview() {
<div>
<Label>IPv6 Support</Label>
<HelpText>
Whether to enable IPv6, disable it, or enable IPv6 if at least one group has it enabled.
Whether to enable IPv6, disable it, or enable IPv6 automatically.
Overrides groupwide setting if set to something else than Automatic. <br />
Automatic enables IPv6 if it is enabled by at least one group or if the peer is used in at least one
IPv6 route.
</HelpText>
<FullTooltip
content={
@@ -295,7 +298,7 @@ function PeerOverview() {
onChange={setIpv6Enabled}
options={[
{label: "Force enabled", value: "enabled"},
{label: "Inherit from Groups", value: "inherit"},
{label: "Automatic", value: "auto"},
{label: "Force disabled", value: "disabled"},
]}
/>