diff --git a/frontend/public/openapi.json b/frontend/public/openapi.json index 7a1c88991..d93045714 100644 --- a/frontend/public/openapi.json +++ b/frontend/public/openapi.json @@ -2878,6 +2878,13 @@ "publicKey": { "type": "string" }, + "routeOutboundTag": { + "type": "string" + }, + "routeThroughXray": { + "description": "RouteThroughXray, when true, is the inbound-wide default: every peer\nTPROXYs into Xray unless it explicitly turns its own RouteThroughXray\noff... except a plain bool can't distinguish \"peer left it unset\" from\n\"peer explicitly opted out\", so in practice this ORs with each peer's\nown flag (see Peer.RouteThroughXray) — turning this on routes every\npeer, turning it off still lets individual peers opt in on their own.\nRouteOutboundTag is the default outbound/balancer tag used when a\nrouted peer didn't set its own; empty means Xray's default routing.", + "type": "boolean" + }, "s1": { "type": "integer" }, diff --git a/frontend/src/generated/examples.ts b/frontend/src/generated/examples.ts index 6807b6146..084b0a387 100644 --- a/frontend/src/generated/examples.ts +++ b/frontend/src/generated/examples.ts @@ -670,6 +670,8 @@ export const EXAMPLES: Record = { "primaryDns": "", "privateKey": "", "publicKey": "", + "routeOutboundTag": "", + "routeThroughXray": false, "s1": 0, "s2": 0, "s3": 0, diff --git a/frontend/src/generated/schemas.ts b/frontend/src/generated/schemas.ts index 05abce170..a7caa22cc 100644 --- a/frontend/src/generated/schemas.ts +++ b/frontend/src/generated/schemas.ts @@ -2852,6 +2852,13 @@ export const SCHEMAS: Record = { "publicKey": { "type": "string" }, + "routeOutboundTag": { + "type": "string" + }, + "routeThroughXray": { + "description": "RouteThroughXray, when true, is the inbound-wide default: every peer\nTPROXYs into Xray unless it explicitly turns its own RouteThroughXray\noff... except a plain bool can't distinguish \"peer left it unset\" from\n\"peer explicitly opted out\", so in practice this ORs with each peer's\nown flag (see Peer.RouteThroughXray) — turning this on routes every\npeer, turning it off still lets individual peers opt in on their own.\nRouteOutboundTag is the default outbound/balancer tag used when a\nrouted peer didn't set its own; empty means Xray's default routing.", + "type": "boolean" + }, "s1": { "type": "integer" }, diff --git a/frontend/src/generated/types.ts b/frontend/src/generated/types.ts index 88a409f46..ff71907f1 100644 --- a/frontend/src/generated/types.ts +++ b/frontend/src/generated/types.ts @@ -653,6 +653,8 @@ export interface ServerSettings { primaryDns?: string; privateKey: string; publicKey: string; + routeOutboundTag?: string; + routeThroughXray?: boolean; s1: number; s2: number; s3: number; diff --git a/frontend/src/generated/zod.ts b/frontend/src/generated/zod.ts index 257e81374..fac01f57c 100644 --- a/frontend/src/generated/zod.ts +++ b/frontend/src/generated/zod.ts @@ -692,6 +692,8 @@ export const ServerSettingsSchema = z.object({ primaryDns: z.string().optional(), privateKey: z.string(), publicKey: z.string(), + routeOutboundTag: z.string().optional(), + routeThroughXray: z.boolean().optional(), s1: z.number().int(), s2: z.number().int(), s3: z.number().int(), diff --git a/frontend/src/lib/xray/inbound-defaults.ts b/frontend/src/lib/xray/inbound-defaults.ts index 0c5fabc0b..e34b72921 100644 --- a/frontend/src/lib/xray/inbound-defaults.ts +++ b/frontend/src/lib/xray/inbound-defaults.ts @@ -298,6 +298,8 @@ export function createDefaultAmneziawgInboundSettings(): AmneziawgInboundSetting ipv6Enabled: false, ipv6Subnet: '', ipv6ExternalInterface: '', + routeThroughXray: false, + routeOutboundTag: '', jc: 5, jmin: 10, jmax: 50, diff --git a/frontend/src/pages/inbounds/form/protocols/amneziawg.tsx b/frontend/src/pages/inbounds/form/protocols/amneziawg.tsx index 76da588e6..b88bf8a0a 100644 --- a/frontend/src/pages/inbounds/form/protocols/amneziawg.tsx +++ b/frontend/src/pages/inbounds/form/protocols/amneziawg.tsx @@ -1,8 +1,10 @@ import { useTranslation } from 'react-i18next'; -import { Button, Form, Input, InputNumber, Space, Switch } from 'antd'; +import { Button, Form, Input, InputNumber, Select, Space, Switch } from 'antd'; import { ReloadOutlined } from '@ant-design/icons'; +import { useFormContext, useWatch } from 'react-hook-form'; import { FormField } from '@/components/form/rhf'; +import { useOutboundTags } from '@/api/queries/useOutboundTags'; interface AmneziawgFieldsProps { awgPubKey: string; @@ -12,6 +14,9 @@ interface AmneziawgFieldsProps { export default function AmneziawgFields({ awgPubKey, regenInboundAwg, regenInboundAwgObfuscation }: AmneziawgFieldsProps) { const { t } = useTranslation(); + const { control } = useFormContext(); + const routeThroughXray = useWatch({ control, name: 'settings.server.routeThroughXray' }) as boolean | undefined; + const { data: outboundTags } = useOutboundTags(); return ( <> @@ -68,6 +73,28 @@ export default function AmneziawgFields({ awgPubKey, regenInboundAwg, regenInbou > + + + + {routeThroughXray && ( + +