| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782 |
- <script setup>
- import { computed, ref, watch } from 'vue';
- import { useI18n } from 'vue-i18n';
- import dayjs from 'dayjs';
- import { message } from 'ant-design-vue';
- import { SyncOutlined, PlusOutlined, MinusOutlined, DeleteOutlined } from '@ant-design/icons-vue';
- import {
- HttpUtil,
- RandomUtil,
- NumberFormatter,
- SizeFormatter,
- Wireguard,
- } from '@/utils';
- import {
- Inbound,
- Protocols,
- SSMethods,
- USERS_SECURITY,
- TLS_FLOW_CONTROL,
- SNIFFING_OPTION,
- TLS_VERSION_OPTION,
- TLS_CIPHER_OPTION,
- UTLS_FINGERPRINT,
- ALPN_OPTION,
- USAGE_OPTION,
- DOMAIN_STRATEGY_OPTION,
- TCP_CONGESTION_OPTION,
- MODE_OPTION,
- } from '@/models/inbound.js';
- import { DBInbound } from '@/models/dbinbound.js';
- import FinalMaskForm from '@/components/FinalMaskForm.vue';
- import DateTimePicker from '@/components/DateTimePicker.vue';
- import { useNodeList } from '@/composables/useNodeList.js';
- const { t } = useI18n();
- // Node selector — Phase 1 multi-node deployment. Shows all enabled
- // nodes regardless of online state so the form is usable while a node
- // is briefly offline; the backend's fail-fast path will surface the
- // real error when the user submits.
- const { nodes: availableNodes } = useNodeList();
- const selectableNodes = computed(() => (availableNodes.value || []).filter((n) => n.enable));
- // Phase 5f-iii-b: structured per-protocol/per-transport forms instead
- // of raw JSON textareas. Edits a deeply-reactive Inbound + DBInbound
- // pair so the existing model helpers (.toString(), .canEnableTls(),
- // genAllLinks(), addPeer(), etc.) keep working unchanged. The
- // "Advanced" tab still exposes the full streamSettings JSON for
- // transport variants (KCP/XHTTP/sockopt/finalmask) we don't yet have
- // dedicated UI for.
- const props = defineProps({
- open: { type: Boolean, default: false },
- mode: { type: String, default: 'add', validator: (v) => ['add', 'edit'].includes(v) },
- dbInbound: { type: Object, default: null },
- });
- const emit = defineEmits(['update:open', 'saved']);
- const TRAFFIC_RESETS = ['never', 'hourly', 'daily', 'weekly', 'monthly'];
- const PROTOCOLS = Object.values(Protocols);
- const SECURITY_OPTIONS = Object.values(USERS_SECURITY);
- const FLOW_OPTIONS = Object.values(TLS_FLOW_CONTROL);
- // === Reactive state ================================================
- // Cloned on every open so cancelling the modal doesn't mutate the row.
- const inbound = ref(null);
- const dbForm = ref(null);
- const saving = ref(false);
- const advancedJson = ref({ stream: '', sniffing: '', settings: '' });
- // Cached default cert/key paths from /panel/setting/defaultSettings —
- // powers the "Set default cert" button on the TLS form.
- const defaultCert = ref('');
- const defaultKey = ref('');
- // Lookup tables for the option dropdowns.
- const TLS_VERSIONS = Object.values(TLS_VERSION_OPTION);
- const CIPHER_SUITES = Object.entries(TLS_CIPHER_OPTION); // [label, value]
- const FINGERPRINTS = Object.values(UTLS_FINGERPRINT);
- const ALPNS = Object.values(ALPN_OPTION);
- const USAGES = Object.values(USAGE_OPTION);
- const DOMAIN_STRATEGIES = Object.values(DOMAIN_STRATEGY_OPTION);
- const TCP_CONGESTIONS = Object.values(TCP_CONGESTION_OPTION);
- const MODE_OPTIONS = Object.values(MODE_OPTION);
- // External proxy is a single switch in the UI but a list in the model:
- // flipping it on seeds one row pre-filled with the current host:port.
- const externalProxy = computed({
- get: () => Array.isArray(inbound.value?.stream?.externalProxy)
- && inbound.value.stream.externalProxy.length > 0,
- set: (v) => {
- if (!inbound.value?.stream) return;
- if (v) {
- inbound.value.stream.externalProxy = [{
- forceTls: 'same',
- dest: window.location.hostname,
- port: inbound.value.port,
- remark: '',
- }];
- } else {
- inbound.value.stream.externalProxy = [];
- }
- },
- });
- // Derived helpers — each is a computed off `inbound` so flips of
- // protocol / network / security re-render the right blocks.
- const protocol = computed(() => inbound.value?.protocol);
- const network = computed({
- get: () => inbound.value?.stream?.network,
- set: (v) => onNetworkChange(v),
- });
- const security = computed({
- get: () => inbound.value?.stream?.security,
- set: (v) => { if (inbound.value?.stream) inbound.value.stream.security = v; },
- });
- const isMultiUser = computed(() => {
- if (!inbound.value) return false;
- switch (inbound.value.protocol) {
- case Protocols.VMESS:
- case Protocols.VLESS:
- case Protocols.TROJAN:
- case Protocols.HYSTERIA:
- return true;
- case Protocols.SHADOWSOCKS:
- return !!inbound.value.isSSMultiUser;
- default:
- return false;
- }
- });
- const clientsArray = computed(() => {
- if (!inbound.value) return [];
- switch (inbound.value.protocol) {
- case Protocols.VMESS: return inbound.value.settings.vmesses || [];
- case Protocols.VLESS: return inbound.value.settings.vlesses || [];
- case Protocols.TROJAN: return inbound.value.settings.trojans || [];
- case Protocols.SHADOWSOCKS: return inbound.value.settings.shadowsockses || [];
- case Protocols.HYSTERIA: return inbound.value.settings.hysterias || [];
- default: return [];
- }
- });
- const firstClient = computed(() => clientsArray.value[0] || null);
- const canEnableStream = computed(() => inbound.value?.canEnableStream?.() === true);
- const canEnableTls = computed(() => inbound.value?.canEnableTls?.() === true);
- const canEnableReality = computed(() => inbound.value?.canEnableReality?.() === true);
- const canEnableTlsFlow = computed(() => inbound.value?.canEnableTlsFlow?.() === true);
- // VLESS/Trojan TLS fallbacks — surfaced in the protocol tab when the
- // inbound is on TCP and (for VLESS) using no Xray-side encryption.
- const showFallbacks = computed(() => {
- if (!inbound.value) return false;
- if (inbound.value.stream?.network !== 'tcp') return false;
- if (inbound.value.protocol === Protocols.VLESS) {
- const enc = inbound.value.settings?.encryption;
- return !enc || enc === 'none';
- }
- return inbound.value.protocol === Protocols.TROJAN;
- });
- function addFallback() {
- inbound.value?.settings?.addFallback?.();
- }
- function delFallback(idx) {
- inbound.value?.settings?.delFallback?.(idx);
- }
- // Date / GB bridges (legacy used moment via _expiryTime; we go direct).
- const expiryDate = computed({
- get: () => (dbForm.value?.expiryTime > 0 ? dayjs(dbForm.value.expiryTime) : null),
- set: (next) => { if (dbForm.value) dbForm.value.expiryTime = next ? next.valueOf() : 0; },
- });
- const totalGB = computed({
- get: () => (dbForm.value?.total ? Math.round((dbForm.value.total / SizeFormatter.ONE_GB) * 100) / 100 : 0),
- set: (gb) => { if (dbForm.value) dbForm.value.total = NumberFormatter.toFixed((gb || 0) * SizeFormatter.ONE_GB, 0); },
- });
- // Client total/expiry bridges (only relevant in add mode for new clients)
- const clientExpiryDate = computed({
- get: () => (firstClient.value?.expiryTime > 0 ? dayjs(firstClient.value.expiryTime) : null),
- set: (next) => { if (firstClient.value) firstClient.value.expiryTime = next ? next.valueOf() : 0; },
- });
- const clientTotalGB = computed({
- get: () => firstClient.value?._totalGB ?? 0,
- set: (gb) => { if (firstClient.value) firstClient.value._totalGB = gb || 0; },
- });
- // === Open / state management =======================================
- function loadFromDbInbound(dbIn) {
- // Round-trip through Inbound.fromJson so subsequent edits get the
- // structured class hierarchy (StreamSettings, TLS, Reality, etc.).
- const parsed = Inbound.fromJson(dbIn.toInbound().toJson());
- inbound.value = parsed;
- // DBForm carries the persisted-fields the parsed Inbound doesn't:
- // remark, enable, total, expiryTime, trafficReset, etc.
- dbForm.value = new DBInbound(dbIn);
- primeAdvancedJson();
- }
- function makeFreshInbound(proto) {
- const ib = new Inbound();
- ib.protocol = proto;
- ib.settings = Inbound.Settings.getSettings(proto);
- ib.port = RandomUtil.randomInteger(10000, 60000);
- return ib;
- }
- function freshDbForm() {
- const next = new DBInbound();
- next.enable = true;
- next.remark = '';
- next.total = 0;
- next.expiryTime = 0;
- next.trafficReset = 'never';
- return next;
- }
- function primeAdvancedJson() {
- if (!inbound.value) return;
- try {
- advancedJson.value.stream = JSON.stringify(JSON.parse(inbound.value.stream.toString()), null, 2);
- } catch (_e) { /* keep prior text */ }
- try {
- advancedJson.value.sniffing = JSON.stringify(JSON.parse(inbound.value.sniffing.toString()), null, 2);
- } catch (_e) { /* keep prior text */ }
- try {
- advancedJson.value.settings = JSON.stringify(JSON.parse(inbound.value.settings.toString()), null, 2);
- } catch (_e) { /* keep prior text */ }
- }
- watch(() => props.open, (next) => {
- if (!next) return;
- if (props.mode === 'edit' && props.dbInbound) {
- loadFromDbInbound(props.dbInbound);
- } else {
- inbound.value = makeFreshInbound(Protocols.VLESS);
- dbForm.value = freshDbForm();
- primeAdvancedJson();
- }
- fetchDefaultCertSettings();
- });
- // In add mode, switching protocol restamps settings + re-syncs port.
- function onProtocolChange(next) {
- if (props.mode === 'edit' || !inbound.value) return;
- inbound.value.protocol = next;
- inbound.value.settings = Inbound.Settings.getSettings(next);
- primeAdvancedJson();
- }
- function onNetworkChange(next) {
- if (!inbound.value?.stream) return;
- inbound.value.stream.network = next;
- // Mirror legacy streamNetworkChange: clear flow when TLS/Reality
- // become unavailable; reset finalmask.udp when not KCP.
- if (!inbound.value.canEnableTls()) inbound.value.stream.security = 'none';
- if (!inbound.value.canEnableReality()) inbound.value.reality = false;
- if (
- inbound.value.protocol === Protocols.VLESS
- && !inbound.value.canEnableTlsFlow()
- && Array.isArray(inbound.value.settings.vlesses)
- ) {
- inbound.value.settings.vlesses.forEach((c) => { c.flow = ''; });
- }
- if (next !== 'kcp' && inbound.value.stream.finalmask) {
- inbound.value.stream.finalmask.udp = [];
- }
- }
- // === Random helpers wired to the form's sync icons ==================
- function randomEmail(target) {
- if (target) target.email = RandomUtil.randomLowerAndNum(9);
- }
- function randomUuid(target) {
- if (target) target.id = RandomUtil.randomUUID();
- }
- function randomPasswordSeq(target, len = 10) {
- if (target) target.password = RandomUtil.randomSeq(len);
- }
- function randomSSPassword(target) {
- if (target) target.password = RandomUtil.randomShadowsocksPassword(inbound.value.settings.method);
- }
- function randomAuth(target) {
- if (target) target.auth = RandomUtil.randomSeq(10);
- }
- function randomSubId(target) {
- if (target) target.subId = RandomUtil.randomLowerAndNum(16);
- }
- function regenWgKeypair(target) {
- const kp = Wireguard.generateKeypair();
- target.publicKey = kp.publicKey;
- target.privateKey = kp.privateKey;
- }
- function regenInboundWg() {
- const kp = Wireguard.generateKeypair();
- inbound.value.settings.pubKey = kp.publicKey;
- inbound.value.settings.secretKey = kp.privateKey;
- }
- // === Reality keygen via existing API =================================
- async function genRealityKeypair() {
- saving.value = true;
- try {
- const msg = await HttpUtil.get('/panel/api/server/getNewX25519Cert');
- if (msg?.success) {
- inbound.value.stream.reality.privateKey = msg.obj.privateKey;
- inbound.value.stream.reality.settings.publicKey = msg.obj.publicKey;
- }
- } finally {
- saving.value = false;
- }
- }
- function clearRealityKeypair() {
- if (!inbound.value?.stream?.reality) return;
- inbound.value.stream.reality.privateKey = '';
- inbound.value.stream.reality.settings.publicKey = '';
- }
- async function genMldsa65() {
- saving.value = true;
- try {
- const msg = await HttpUtil.get('/panel/api/server/getNewmldsa65');
- if (msg?.success) {
- inbound.value.stream.reality.mldsa65Seed = msg.obj.seed;
- inbound.value.stream.reality.settings.mldsa65Verify = msg.obj.verify;
- }
- } finally {
- saving.value = false;
- }
- }
- function clearMldsa65() {
- if (!inbound.value?.stream?.reality) return;
- inbound.value.stream.reality.mldsa65Seed = '';
- inbound.value.stream.reality.settings.mldsa65Verify = '';
- }
- // Reality target/SNI randomizer — only available if the helper is loaded
- function randomizeRealityTarget() {
- if (!inbound.value?.stream?.reality) return;
- if (typeof window.getRandomRealityTarget !== 'function') return;
- const t = window.getRandomRealityTarget();
- inbound.value.stream.reality.target = t.target;
- inbound.value.stream.reality.serverNames = t.sni;
- }
- function randomizeShortIds() {
- if (!inbound.value?.stream?.reality) return;
- inbound.value.stream.reality.shortIds = RandomUtil.randomShortIds();
- }
- // === ECH cert helpers ================================================
- async function getNewEchCert() {
- if (!inbound.value?.stream?.tls) return;
- saving.value = true;
- try {
- const msg = await HttpUtil.post('/panel/api/server/getNewEchCert', {
- sni: inbound.value.stream.tls.sni,
- });
- if (msg?.success) {
- inbound.value.stream.tls.echServerKeys = msg.obj.echServerKeys;
- inbound.value.stream.tls.settings.echConfigList = msg.obj.echConfigList;
- }
- } finally {
- saving.value = false;
- }
- }
- function clearEchCert() {
- if (!inbound.value?.stream?.tls) return;
- inbound.value.stream.tls.echServerKeys = '';
- inbound.value.stream.tls.settings.echConfigList = '';
- }
- function setDefaultCertData(idx) {
- if (!inbound.value?.stream?.tls?.certs?.[idx]) return;
- inbound.value.stream.tls.certs[idx].certFile = defaultCert.value;
- inbound.value.stream.tls.certs[idx].keyFile = defaultKey.value;
- }
- async function fetchDefaultCertSettings() {
- try {
- const msg = await HttpUtil.post('/panel/setting/defaultSettings');
- if (msg?.success && msg.obj) {
- defaultCert.value = msg.obj.defaultCert || '';
- defaultKey.value = msg.obj.defaultKey || '';
- }
- } catch (_e) { /* non-fatal — leave Set Default disabled */ }
- }
- // === VLESS encryption helpers =======================================
- // `xray vlessenc` returns both X25519 and ML-KEM-768 variants every
- // call; the user clicks one of two buttons to pick which block goes
- // into decryption/encryption.
- async function getNewVlessEnc(authLabel) {
- if (!authLabel || !inbound.value?.settings) return;
- saving.value = true;
- try {
- const msg = await HttpUtil.get('/panel/api/server/getNewVlessEnc');
- if (!msg?.success) return;
- const block = (msg.obj?.auths || []).find((a) => a.label === authLabel);
- if (!block) return;
- inbound.value.settings.decryption = block.decryption;
- inbound.value.settings.encryption = block.encryption;
- } finally {
- saving.value = false;
- }
- }
- function clearVlessEnc() {
- if (!inbound.value?.settings) return;
- inbound.value.settings.decryption = 'none';
- inbound.value.settings.encryption = 'none';
- }
- // === SS method change tracks legacy semantics =========================
- function onSSMethodChange() {
- inbound.value.settings.password = RandomUtil.randomShadowsocksPassword(inbound.value.settings.method);
- if (inbound.value.isSSMultiUser) {
- if (inbound.value.settings.shadowsockses.length === 0) {
- inbound.value.settings.shadowsockses = [new Inbound.ShadowsocksSettings.Shadowsocks()];
- }
- inbound.value.settings.shadowsockses.forEach((c) => {
- c.method = inbound.value.isSS2022 ? '' : inbound.value.settings.method;
- c.password = RandomUtil.randomShadowsocksPassword(inbound.value.settings.method);
- });
- } else {
- inbound.value.settings.shadowsockses = [];
- }
- }
- // === Submit ==========================================================
- function close() {
- emit('update:open', false);
- }
- async function submit() {
- if (!inbound.value || !dbForm.value) return;
- saving.value = true;
- try {
- // Sniffing tab is structured; stream stays JSON for unsupported
- // transports — both go to wire as serialized JSON.
- let streamSettings;
- let sniffing;
- let settings;
- try {
- streamSettings = canEnableStream.value
- ? JSON.stringify(JSON.parse(advancedJson.value.stream))
- : (inbound.value.stream?.sockopt
- ? JSON.stringify({ sockopt: inbound.value.stream.sockopt.toJson() })
- : '');
- } catch (e) { message.error(`Stream JSON invalid: ${e.message}`); return; }
- try {
- sniffing = JSON.stringify(JSON.parse(advancedJson.value.sniffing || inbound.value.sniffing.toString()));
- } catch (e) { message.error(`Sniffing JSON invalid: ${e.message}`); return; }
- try {
- settings = JSON.stringify(JSON.parse(advancedJson.value.settings || inbound.value.settings.toString()));
- } catch (e) { message.error(`Settings JSON invalid: ${e.message}`); return; }
- // The structured form mutates `inbound.stream` directly when the
- // user edits TCP/WS/gRPC/HTTPUpgrade fields, but if they touched
- // the Advanced JSON tab their edits live there. Keep the JSON tab
- // authoritative — it was populated from the live model on open
- // and watch handlers below sync in either direction.
- const payload = {
- up: dbForm.value.up || 0,
- down: dbForm.value.down || 0,
- total: dbForm.value.total,
- remark: dbForm.value.remark,
- enable: dbForm.value.enable,
- expiryTime: dbForm.value.expiryTime,
- trafficReset: dbForm.value.trafficReset,
- lastTrafficResetTime: dbForm.value.lastTrafficResetTime || 0,
- listen: inbound.value.listen,
- port: inbound.value.port,
- protocol: inbound.value.protocol,
- settings: settings,
- streamSettings: streamSettings,
- sniffing: sniffing,
- };
- // Multi-node deployment: only include nodeId when the user picked a
- // remote node. Sending nodeId=null over qs.stringify becomes an
- // empty form value, which Go's form binding for *int parses as 0
- // — not nil — and we'd then try to look up node id 0 and fail with
- // "record not found". Omitting the key entirely keeps NodeID nil.
- if (dbForm.value.nodeId != null) {
- payload.nodeId = dbForm.value.nodeId;
- }
- const url = props.mode === 'edit'
- ? `/panel/api/inbounds/update/${props.dbInbound.id}`
- : '/panel/api/inbounds/add';
- const msg = await HttpUtil.post(url, payload);
- if (msg?.success) {
- emit('saved');
- close();
- }
- } finally {
- saving.value = false;
- }
- }
- const title = computed(() =>
- props.mode === 'edit'
- ? t('pages.inbounds.modifyInbound')
- : t('pages.inbounds.addInbound'),
- );
- const okText = computed(() =>
- props.mode === 'edit' ? t('pages.client.submitEdit') : t('create'),
- );
- // Whenever the structured form mutates stream / sniffing / settings,
- // refresh the matching slice of the Advanced JSON tab so the user
- // always sees the live state — flipping a switch in Sniffing or
- // editing encryption in Protocol now reflects in Advanced.
- watch(
- () => inbound.value && JSON.stringify(inbound.value.stream?.toJson?.() || {}),
- () => {
- if (!inbound.value?.stream) return;
- try {
- advancedJson.value.stream = JSON.stringify(JSON.parse(inbound.value.stream.toString()), null, 2);
- } catch (_e) { /* leave as is */ }
- },
- );
- watch(
- () => inbound.value && JSON.stringify(inbound.value.sniffing?.toJson?.() || {}),
- () => {
- if (!inbound.value?.sniffing) return;
- try {
- advancedJson.value.sniffing = JSON.stringify(JSON.parse(inbound.value.sniffing.toString()), null, 2);
- } catch (_e) { /* leave as is */ }
- },
- );
- watch(
- () => inbound.value && JSON.stringify(inbound.value.settings?.toJson?.() || {}),
- () => {
- if (!inbound.value?.settings) return;
- try {
- advancedJson.value.settings = JSON.stringify(JSON.parse(inbound.value.settings.toString()), null, 2);
- } catch (_e) { /* leave as is */ }
- },
- );
- </script>
- <template>
- <a-modal :open="open" :title="title" :ok-text="okText" :cancel-text="t('close')" :confirm-loading="saving"
- :mask-closable="false" width="780px" @ok="submit" @cancel="close">
- <a-tabs v-if="inbound && dbForm" default-active-key="basic">
- <!-- ============================== BASICS ============================== -->
- <a-tab-pane key="basic" :tab="t('pages.xray.basicTemplate')">
- <a-form :colon="false" :label-col="{ sm: { span: 8 } }" :wrapper-col="{ sm: { span: 14 } }">
- <a-form-item :label="t('enable')">
- <a-switch v-model:checked="dbForm.enable" />
- </a-form-item>
- <a-form-item :label="t('pages.inbounds.remark')">
- <a-input v-model:value="dbForm.remark" />
- </a-form-item>
- <a-form-item :label="t('pages.inbounds.deployTo')">
- <a-select v-model:value="dbForm.nodeId" :disabled="mode === 'edit'"
- :placeholder="t('pages.inbounds.localPanel')" allow-clear>
- <a-select-option :value="null">{{ t('pages.inbounds.localPanel') }}</a-select-option>
- <a-select-option v-for="n in selectableNodes" :key="n.id" :value="n.id"
- :disabled="n.status === 'offline'">
- {{ n.name }}{{ n.status === 'offline' ? ' (offline)' : '' }}
- </a-select-option>
- </a-select>
- </a-form-item>
- <a-form-item :label="t('pages.inbounds.protocol')">
- <a-select :value="protocol" :disabled="mode === 'edit'" @change="onProtocolChange">
- <a-select-option v-for="p in PROTOCOLS" :key="p" :value="p">{{ p }}</a-select-option>
- </a-select>
- </a-form-item>
- <a-form-item :label="t('pages.inbounds.address')">
- <a-input v-model:value="inbound.listen" :placeholder="t('pages.inbounds.monitorDesc')" />
- </a-form-item>
- <a-form-item :label="t('pages.inbounds.port')">
- <a-input-number v-model:value="inbound.port" :min="1" :max="65535" />
- </a-form-item>
- <a-form-item>
- <template #label>
- <a-tooltip :title="t('pages.inbounds.meansNoLimit')">{{ t('pages.inbounds.totalFlow') }}</a-tooltip>
- </template>
- <a-input-number v-model:value="totalGB" :min="0" :step="0.1" />
- </a-form-item>
- <a-form-item :label="t('pages.inbounds.periodicTrafficResetTitle')">
- <a-select v-model:value="dbForm.trafficReset">
- <a-select-option v-for="r in TRAFFIC_RESETS" :key="r" :value="r">
- {{ t(`pages.inbounds.periodicTrafficReset.${r}`) }}
- </a-select-option>
- </a-select>
- </a-form-item>
- <a-form-item>
- <template #label>
- <a-tooltip :title="t('pages.inbounds.leaveBlankToNeverExpire')">{{ t('pages.inbounds.expireDate')
- }}</a-tooltip>
- </template>
- <DateTimePicker v-model:value="expiryDate" />
- </a-form-item>
- </a-form>
- </a-tab-pane>
- <!-- ============================== PROTOCOL ============================== -->
- <!-- TUN has no per-protocol form yet (interface/mtu/gateway live in
- settings JSON), so the tab would render empty — hide it until
- a TUN form is added. -->
- <a-tab-pane v-if="protocol !== Protocols.TUN" key="protocol" :tab="t('pages.inbounds.protocol')">
- <!-- Multi-user inbounds: in add mode embed the first client form,
- in edit mode show a count summary. -->
- <template v-if="isMultiUser">
- <a-collapse v-if="mode === 'add' && firstClient" default-active-key="0">
- <a-collapse-panel key="0" header="Client">
- <a-form :colon="false" :label-col="{ sm: { span: 8 } }" :wrapper-col="{ sm: { span: 14 } }">
- <a-form-item label="Enable">
- <a-switch v-model:checked="firstClient.enable" />
- </a-form-item>
- <a-form-item>
- <template #label>
- <a-tooltip title="Friendly identifier">
- Email
- <SyncOutlined class="random-icon" @click="randomEmail(firstClient)" />
- </a-tooltip>
- </template>
- <a-input v-model:value="firstClient.email" />
- </a-form-item>
- <a-form-item v-if="protocol === Protocols.VMESS || protocol === Protocols.VLESS">
- <template #label>
- <a-tooltip title="Reset to a fresh UUID">
- ID
- <SyncOutlined class="random-icon" @click="randomUuid(firstClient)" />
- </a-tooltip>
- </template>
- <a-input v-model:value="firstClient.id" />
- </a-form-item>
- <a-form-item v-if="protocol === Protocols.VMESS" label="Security">
- <a-select v-model:value="firstClient.security">
- <a-select-option v-for="k in SECURITY_OPTIONS" :key="k" :value="k">{{ k }}</a-select-option>
- </a-select>
- </a-form-item>
- <a-form-item v-if="protocol === Protocols.TROJAN || protocol === Protocols.SHADOWSOCKS">
- <template #label>
- <a-tooltip title="Reset to a fresh random value">
- Password
- <SyncOutlined v-if="protocol === Protocols.SHADOWSOCKS" class="random-icon"
- @click="randomSSPassword(firstClient)" />
- <SyncOutlined v-else class="random-icon" @click="randomPasswordSeq(firstClient)" />
- </a-tooltip>
- </template>
- <a-input v-model:value="firstClient.password" />
- </a-form-item>
- <a-form-item v-if="protocol === Protocols.HYSTERIA">
- <template #label>
- <a-tooltip title="Reset"><span>Auth password</span>
- <SyncOutlined class="random-icon" @click="randomAuth(firstClient)" />
- </a-tooltip>
- </template>
- <a-input v-model:value="firstClient.auth" />
- </a-form-item>
- <a-form-item v-if="canEnableTlsFlow" label="Flow">
- <a-select v-model:value="firstClient.flow">
- <a-select-option value="">none</a-select-option>
- <a-select-option v-for="k in FLOW_OPTIONS" :key="k" :value="k">{{ k }}</a-select-option>
- </a-select>
- </a-form-item>
- <a-form-item v-if="protocol === Protocols.VLESS" label="Reverse tag">
- <a-input v-model:value="firstClient.reverseTag" placeholder="Optional reverse tag" />
- </a-form-item>
- <a-form-item label="Subscription">
- <a-input v-model:value="firstClient.subId">
- <template #addonAfter>
- <SyncOutlined class="random-icon" @click="randomSubId(firstClient)" />
- </template>
- </a-input>
- </a-form-item>
- <a-form-item label="Comment">
- <a-input v-model:value="firstClient.comment" />
- </a-form-item>
- <a-form-item label="Total traffic (GB)">
- <a-input-number v-model:value="clientTotalGB" :min="0" :step="0.1" />
- </a-form-item>
- <a-form-item label="Expiry">
- <DateTimePicker v-model:value="clientExpiryDate" />
- </a-form-item>
- </a-form>
- </a-collapse-panel>
- </a-collapse>
- <a-collapse v-else>
- <a-collapse-panel key="summary" :header="`Clients: ${clientsArray.length}`">
- <table class="client-summary">
- <thead>
- <tr>
- <th>Email</th>
- <th>{{ protocol === Protocols.TROJAN || protocol === Protocols.SHADOWSOCKS ? 'Password' : (protocol
- ===
- Protocols.HYSTERIA ? 'Auth' : 'ID') }}</th>
- </tr>
- </thead>
- <tbody>
- <tr v-for="(c, idx) in clientsArray" :key="idx">
- <td>{{ c.email }}</td>
- <td>{{ c.id || c.password || c.auth }}</td>
- </tr>
- </tbody>
- </table>
- </a-collapse-panel>
- </a-collapse>
- </template>
- <!-- VLess decryption / encryption -->
- <a-form v-if="protocol === Protocols.VLESS" :colon="false" :label-col="{ sm: { span: 8 } }"
- :wrapper-col="{ sm: { span: 14 } }" class="mt-12">
- <a-form-item label="Decryption">
- <a-input v-model:value="inbound.settings.decryption" />
- </a-form-item>
- <a-form-item label="Encryption">
- <a-input v-model:value="inbound.settings.encryption" />
- </a-form-item>
- <a-form-item label=" ">
- <a-space :size="8" wrap>
- <a-button type="primary" :loading="saving" @click="getNewVlessEnc('X25519, not Post-Quantum')">
- X25519
- </a-button>
- <a-button type="primary" :loading="saving" @click="getNewVlessEnc('ML-KEM-768, Post-Quantum')">
- ML-KEM-768
- </a-button>
- <a-button danger @click="clearVlessEnc">Clear</a-button>
- </a-space>
- </a-form-item>
- </a-form>
- <!-- Shadowsocks shared fields (method/network/ivCheck) -->
- <a-form v-if="protocol === Protocols.SHADOWSOCKS" :colon="false" :label-col="{ sm: { span: 8 } }"
- :wrapper-col="{ sm: { span: 14 } }" class="mt-12">
- <a-form-item label="Encryption method">
- <a-select v-model:value="inbound.settings.method" @change="onSSMethodChange">
- <a-select-option v-for="(m, k) in SSMethods" :key="k" :value="m">{{ k }}</a-select-option>
- </a-select>
- </a-form-item>
- <a-form-item v-if="inbound.isSS2022">
- <template #label>
- Password
- <SyncOutlined class="random-icon" @click="randomSSPassword(inbound.settings)" />
- </template>
- <a-input v-model:value="inbound.settings.password" />
- </a-form-item>
- <a-form-item label="Network">
- <a-select v-model:value="inbound.settings.network" :style="{ width: '120px' }">
- <a-select-option value="tcp,udp">TCP, UDP</a-select-option>
- <a-select-option value="tcp">TCP</a-select-option>
- <a-select-option value="udp">UDP</a-select-option>
- </a-select>
- </a-form-item>
- <a-form-item label="ivCheck">
- <a-switch v-model:checked="inbound.settings.ivCheck" />
- </a-form-item>
- </a-form>
- <!-- HTTP / Mixed accounts -->
- <a-form v-if="protocol === Protocols.HTTP || protocol === Protocols.MIXED" :colon="false"
- :label-col="{ sm: { span: 8 } }" :wrapper-col="{ sm: { span: 14 } }" class="mt-12">
- <a-form-item label="Accounts">
- <a-button size="small" @click="protocol === Protocols.HTTP
- ? inbound.settings.addAccount(new Inbound.HttpSettings.HttpAccount())
- : inbound.settings.addAccount(new Inbound.MixedSettings.SocksAccount())">
- <template #icon>
- <PlusOutlined />
- </template>
- Add
- </a-button>
- </a-form-item>
- <a-form-item :wrapper-col="{ span: 24 }">
- <a-input-group v-for="(account, idx) in inbound.settings.accounts" :key="idx" compact class="mb-8">
- <a-input :style="{ width: '45%' }" v-model:value="account.user" placeholder="Username">
- <template #addonBefore>{{ idx + 1 }}</template>
- </a-input>
- <a-input :style="{ width: '45%' }" v-model:value="account.pass" placeholder="Password" />
- <a-button @click="inbound.settings.delAccount(idx)">
- <template #icon>
- <MinusOutlined />
- </template>
- </a-button>
- </a-input-group>
- </a-form-item>
- <a-form-item v-if="protocol === Protocols.HTTP" label="Allow transparent">
- <a-switch v-model:checked="inbound.settings.allowTransparent" />
- </a-form-item>
- <template v-if="protocol === Protocols.MIXED">
- <a-form-item label="Auth">
- <a-select v-model:value="inbound.settings.auth">
- <a-select-option value="noauth">noauth</a-select-option>
- <a-select-option value="password">password</a-select-option>
- </a-select>
- </a-form-item>
- <a-form-item label="UDP">
- <a-switch v-model:checked="inbound.settings.udp" />
- </a-form-item>
- <a-form-item v-if="inbound.settings.udp" label="UDP IP">
- <a-input v-model:value="inbound.settings.ip" />
- </a-form-item>
- </template>
- </a-form>
- <!-- Tunnel -->
- <a-form v-if="protocol === Protocols.TUNNEL" :colon="false" :label-col="{ sm: { span: 8 } }"
- :wrapper-col="{ sm: { span: 14 } }" class="mt-12">
- <a-form-item label="Address">
- <a-input v-model:value="inbound.settings.address" />
- </a-form-item>
- <a-form-item label="Destination port">
- <a-input-number v-model:value="inbound.settings.port" :min="1" :max="65535" />
- </a-form-item>
- <a-form-item label="Network">
- <a-select v-model:value="inbound.settings.network">
- <a-select-option value="tcp,udp">TCP, UDP</a-select-option>
- <a-select-option value="tcp">TCP</a-select-option>
- <a-select-option value="udp">UDP</a-select-option>
- </a-select>
- </a-form-item>
- <a-form-item label="Follow redirect">
- <a-switch v-model:checked="inbound.settings.followRedirect" />
- </a-form-item>
- </a-form>
- <!-- WireGuard -->
- <a-form v-if="protocol === Protocols.WIREGUARD" :colon="false" :label-col="{ sm: { span: 8 } }"
- :wrapper-col="{ sm: { span: 14 } }" class="mt-12">
- <a-form-item>
- <template #label>
- Secret key
- <SyncOutlined class="random-icon" @click="regenInboundWg" />
- </template>
- <a-input v-model:value="inbound.settings.secretKey" />
- </a-form-item>
- <a-form-item label="Public key">
- <a-input v-model:value="inbound.settings.pubKey" disabled />
- </a-form-item>
- <a-form-item label="MTU">
- <a-input-number v-model:value="inbound.settings.mtu" />
- </a-form-item>
- <a-form-item label="No-kernel TUN">
- <a-switch v-model:checked="inbound.settings.noKernelTun" />
- </a-form-item>
- <a-form-item label="Peers">
- <a-button size="small" @click="inbound.settings.addPeer()">
- <template #icon>
- <PlusOutlined />
- </template>
- Add peer
- </a-button>
- </a-form-item>
- <div v-for="(peer, idx) in inbound.settings.peers" :key="idx" class="wg-peer">
- <a-divider style="margin: 8px 0">
- Peer {{ idx + 1 }}
- <DeleteOutlined v-if="inbound.settings.peers.length > 1" class="danger-icon"
- @click="inbound.settings.delPeer(idx)" />
- </a-divider>
- <a-form-item>
- <template #label>
- Secret key
- <SyncOutlined class="random-icon" @click="regenWgKeypair(peer)" />
- </template>
- <a-input v-model:value="peer.privateKey" />
- </a-form-item>
- <a-form-item label="Public key">
- <a-input v-model:value="peer.publicKey" />
- </a-form-item>
- <a-form-item label="PSK">
- <a-input v-model:value="peer.psk" />
- </a-form-item>
- <a-form-item label="Allowed IPs">
- <a-button size="small" @click="peer.allowedIPs.push('')">
- <template #icon>
- <PlusOutlined />
- </template>
- </a-button>
- <a-input v-for="(_ip, j) in peer.allowedIPs" :key="j" v-model:value="peer.allowedIPs[j]" class="mt-4">
- <template #addonAfter>
- <a-button v-if="peer.allowedIPs.length > 1" size="small" @click="peer.allowedIPs.splice(j, 1)">
- <template #icon>
- <MinusOutlined />
- </template>
- </a-button>
- </template>
- </a-input>
- </a-form-item>
- <a-form-item label="Keep-alive">
- <a-input-number v-model:value="peer.keepAlive" :min="0" />
- </a-form-item>
- </div>
- </a-form>
- <!-- ============== Fallbacks (VLESS/Trojan over TCP) ============== -->
- <template v-if="showFallbacks">
- <a-divider style="margin: 12px 0" />
- <div class="fallbacks-header">
- <a-tooltip
- title="Route incoming TLS traffic to a backend when it doesn't match a valid VLESS/Trojan handshake. Match by SNI, ALPN, and HTTP path; the most precise rule wins. Fallbacks require TCP+TLS transport.">
- <span class="fallbacks-title">
- Fallbacks ({{ inbound.settings.fallbacks.length }})
- </span>
- </a-tooltip>
- <a-button type="primary" size="small" @click="addFallback">
- <template #icon>
- <PlusOutlined />
- </template>
- Add
- </a-button>
- </div>
- <a-form v-for="(fallback, idx) in inbound.settings.fallbacks" :key="idx" :colon="false"
- :label-col="{ sm: { span: 8 } }" :wrapper-col="{ sm: { span: 14 } }">
- <a-divider style="margin: 0">
- Fallback {{ idx + 1 }}
- <DeleteOutlined class="danger-icon" @click="delFallback(idx)" />
- </a-divider>
- <a-form-item>
- <template #label>
- <a-tooltip title="Match TLS SNI (server name). Leave empty to match any SNI.">
- SNI
- </a-tooltip>
- </template>
- <a-input v-model:value.trim="fallback.name" placeholder="any (leave empty)" />
- </a-form-item>
- <a-form-item>
- <template #label>
- <a-tooltip
- title="Match TLS ALPN. 'any' = no ALPN constraint. Use h2/http/1.1 split when the inbound advertises both.">
- ALPN
- </a-tooltip>
- </template>
- <a-select v-model:value="fallback.alpn">
- <a-select-option value="">any</a-select-option>
- <a-select-option value="h2">h2</a-select-option>
- <a-select-option value="http/1.1">http/1.1</a-select-option>
- </a-select>
- </a-form-item>
- <a-form-item :validate-status="fallback.path && !fallback.path.startsWith('/') ? 'error' : ''"
- :help="fallback.path && !fallback.path.startsWith('/') ? 'Path must start with /' : ''">
- <template #label>
- <a-tooltip
- title="Match the HTTP request path of the first packet. Must start with '/'. Leave empty to match any.">
- Path
- </a-tooltip>
- </template>
- <a-input v-model:value.trim="fallback.path" placeholder="any (leave empty) or /ws" />
- </a-form-item>
- <a-form-item :validate-status="!fallback.dest ? 'error' : ''"
- :help="!fallback.dest ? 'Destination is required' : ''">
- <template #label>
- <a-tooltip
- title="Where matching traffic is forwarded. Accepts a port number (80), an addr:port (127.0.0.1:8080), or a Unix socket path (/dev/shm/x.sock or @abstract).">
- Destination
- </a-tooltip>
- </template>
- <a-input v-model:value.trim="fallback.dest" placeholder="80 | 127.0.0.1:8080 | /dev/shm/x.sock" />
- </a-form-item>
- <a-form-item>
- <template #label>
- <a-tooltip
- title="PROXY protocol version sent to the destination. Off (0) for plain TCP; v1/v2 to preserve client IP if the backend supports it.">
- PROXY
- </a-tooltip>
- </template>
- <a-select v-model:value="fallback.xver">
- <a-select-option :value="0">Off</a-select-option>
- <a-select-option :value="1">v1</a-select-option>
- <a-select-option :value="2">v2</a-select-option>
- </a-select>
- </a-form-item>
- </a-form>
- </template>
- </a-tab-pane>
- <!-- ============================== STREAM ============================== -->
- <a-tab-pane v-if="canEnableStream" key="stream"
- tab="Stream"><!-- "Stream" stays literal — it's a wire-format identifier -->
- <a-form :colon="false" :label-col="{ sm: { span: 8 } }" :wrapper-col="{ sm: { span: 14 } }">
- <a-form-item v-if="protocol !== Protocols.HYSTERIA" label="Transmission">
- <a-select v-model:value="network" :style="{ width: '75%' }">
- <a-select-option value="tcp">TCP (RAW)</a-select-option>
- <a-select-option value="kcp">mKCP</a-select-option>
- <a-select-option value="ws">WebSocket</a-select-option>
- <a-select-option value="grpc">gRPC</a-select-option>
- <a-select-option value="httpupgrade">HTTPUpgrade</a-select-option>
- <a-select-option value="xhttp">XHTTP</a-select-option>
- </a-select>
- </a-form-item>
- <!-- TCP (RAW) — proxy-protocol + optional HTTP camouflage with full request/response editor -->
- <template v-if="network === 'tcp'">
- <a-form-item v-if="canEnableTls" label="Proxy Protocol">
- <a-switch v-model:checked="inbound.stream.tcp.acceptProxyProtocol" />
- </a-form-item>
- <a-form-item :label="`HTTP ${t('camouflage')}`">
- <a-switch :checked="inbound.stream.tcp.type === 'http'"
- @change="(v) => (inbound.stream.tcp.type = v ? 'http' : 'none')" />
- </a-form-item>
- <template v-if="inbound.stream.tcp.type === 'http'">
- <!-- Request -->
- <a-divider :style="{ margin: '0' }">{{ t('pages.inbounds.stream.general.request') }}</a-divider>
- <a-form-item :label="t('pages.inbounds.stream.tcp.version')">
- <a-input v-model:value="inbound.stream.tcp.request.version" />
- </a-form-item>
- <a-form-item :label="t('pages.inbounds.stream.tcp.method')">
- <a-input v-model:value="inbound.stream.tcp.request.method" />
- </a-form-item>
- <a-form-item>
- <template #label>
- {{ t('pages.inbounds.stream.tcp.path') }}
- <a-button size="small" :style="{ marginLeft: '6px' }"
- @click="inbound.stream.tcp.request.addPath('/')">
- <template #icon>
- <PlusOutlined />
- </template>
- </a-button>
- </template>
- <template v-for="(_p, idx) in inbound.stream.tcp.request.path" :key="`tcp-path-${idx}`">
- <a-input v-model:value="inbound.stream.tcp.request.path[idx]" class="mb-4">
- <template #addonAfter>
- <a-button v-if="inbound.stream.tcp.request.path.length > 1" size="small"
- @click="inbound.stream.tcp.request.removePath(idx)">
- <template #icon>
- <MinusOutlined />
- </template>
- </a-button>
- </template>
- </a-input>
- </template>
- </a-form-item>
- <a-form-item :label="t('pages.inbounds.stream.tcp.requestHeader')">
- <a-button size="small" @click="inbound.stream.tcp.request.addHeader('Host', '')">
- <template #icon>
- <PlusOutlined />
- </template>
- </a-button>
- </a-form-item>
- <a-form-item v-if="inbound.stream.tcp.request.headers.length > 0" :wrapper-col="{ span: 24 }">
- <a-input-group v-for="(h, idx) in inbound.stream.tcp.request.headers" :key="`tcp-rh-${idx}`" compact
- class="mb-8">
- <a-input :style="{ width: '45%' }" v-model:value="h.name"
- :placeholder="t('pages.inbounds.stream.general.name')">
- <template #addonBefore>{{ idx + 1 }}</template>
- </a-input>
- <a-input :style="{ width: '45%' }" v-model:value="h.value"
- :placeholder="t('pages.inbounds.stream.general.value')" />
- <a-button @click="inbound.stream.tcp.request.removeHeader(idx)">
- <template #icon>
- <MinusOutlined />
- </template>
- </a-button>
- </a-input-group>
- </a-form-item>
- <!-- Response -->
- <a-divider :style="{ margin: '0' }">{{ t('pages.inbounds.stream.general.response') }}</a-divider>
- <a-form-item :label="t('pages.inbounds.stream.tcp.version')">
- <a-input v-model:value="inbound.stream.tcp.response.version" />
- </a-form-item>
- <a-form-item :label="t('pages.inbounds.stream.tcp.status')">
- <a-input v-model:value="inbound.stream.tcp.response.status" />
- </a-form-item>
- <a-form-item :label="t('pages.inbounds.stream.tcp.statusDescription')">
- <a-input v-model:value="inbound.stream.tcp.response.reason" />
- </a-form-item>
- <a-form-item :label="t('pages.inbounds.stream.tcp.responseHeader')">
- <a-button size="small"
- @click="inbound.stream.tcp.response.addHeader('Content-Type', 'application/octet-stream')">
- <template #icon>
- <PlusOutlined />
- </template>
- </a-button>
- </a-form-item>
- <a-form-item v-if="inbound.stream.tcp.response.headers.length > 0" :wrapper-col="{ span: 24 }">
- <a-input-group v-for="(h, idx) in inbound.stream.tcp.response.headers" :key="`tcp-rsh-${idx}`" compact
- class="mb-8">
- <a-input :style="{ width: '45%' }" v-model:value="h.name"
- :placeholder="t('pages.inbounds.stream.general.name')">
- <template #addonBefore>{{ idx + 1 }}</template>
- </a-input>
- <a-input :style="{ width: '45%' }" v-model:value="h.value"
- :placeholder="t('pages.inbounds.stream.general.value')" />
- <a-button @click="inbound.stream.tcp.response.removeHeader(idx)">
- <template #icon>
- <MinusOutlined />
- </template>
- </a-button>
- </a-input-group>
- </a-form-item>
- </template>
- </template>
- <!-- mKCP -->
- <template v-if="network === 'kcp'">
- <a-form-item label="MTU">
- <a-input-number v-model:value="inbound.stream.kcp.mtu" :min="576" :max="1460" />
- </a-form-item>
- <a-form-item label="TTI (ms)">
- <a-input-number v-model:value="inbound.stream.kcp.tti" :min="10" :max="100" />
- </a-form-item>
- <a-form-item label="Uplink (MB/s)">
- <a-input-number v-model:value="inbound.stream.kcp.upCap" :min="0" />
- </a-form-item>
- <a-form-item label="Downlink (MB/s)">
- <a-input-number v-model:value="inbound.stream.kcp.downCap" :min="0" />
- </a-form-item>
- <a-form-item label="CWND Multiplier">
- <a-input-number v-model:value="inbound.stream.kcp.cwndMultiplier" :min="1" />
- </a-form-item>
- <a-form-item label="Max Sending Window">
- <a-input-number v-model:value="inbound.stream.kcp.maxSendingWindow" :min="0" />
- </a-form-item>
- </template>
- <!-- WebSocket -->
- <template v-if="network === 'ws'">
- <a-form-item label="Proxy Protocol">
- <a-switch v-model:checked="inbound.stream.ws.acceptProxyProtocol" />
- </a-form-item>
- <a-form-item :label="t('host')">
- <a-input v-model:value="inbound.stream.ws.host" />
- </a-form-item>
- <a-form-item :label="t('path')">
- <a-input v-model:value="inbound.stream.ws.path" />
- </a-form-item>
- <a-form-item label="Heartbeat Period">
- <a-input-number v-model:value="inbound.stream.ws.heartbeatPeriod" :min="0" />
- </a-form-item>
- <a-form-item :label="t('pages.inbounds.stream.tcp.requestHeader')">
- <a-button size="small" @click="inbound.stream.ws.addHeader('', '')">
- <template #icon>
- <PlusOutlined />
- </template>
- </a-button>
- </a-form-item>
- <a-form-item v-if="inbound.stream.ws.headers.length > 0" :wrapper-col="{ span: 24 }">
- <a-input-group v-for="(h, idx) in inbound.stream.ws.headers" :key="`ws-h-${idx}`" compact class="mb-8">
- <a-input :style="{ width: '45%' }" v-model:value="h.name"
- :placeholder="t('pages.inbounds.stream.general.name')">
- <template #addonBefore>{{ idx + 1 }}</template>
- </a-input>
- <a-input :style="{ width: '45%' }" v-model:value="h.value"
- :placeholder="t('pages.inbounds.stream.general.value')" />
- <a-button @click="inbound.stream.ws.removeHeader(idx)">
- <template #icon>
- <MinusOutlined />
- </template>
- </a-button>
- </a-input-group>
- </a-form-item>
- </template>
- <!-- gRPC -->
- <template v-if="network === 'grpc'">
- <a-form-item label="Service Name">
- <a-input v-model:value="inbound.stream.grpc.serviceName" />
- </a-form-item>
- <a-form-item label="Authority">
- <a-input v-model:value="inbound.stream.grpc.authority" />
- </a-form-item>
- <a-form-item label="Multi Mode">
- <a-switch v-model:checked="inbound.stream.grpc.multiMode" />
- </a-form-item>
- </template>
- <!-- HTTPUpgrade -->
- <template v-if="network === 'httpupgrade'">
- <a-form-item label="Proxy Protocol">
- <a-switch v-model:checked="inbound.stream.httpupgrade.acceptProxyProtocol" />
- </a-form-item>
- <a-form-item :label="t('host')">
- <a-input v-model:value="inbound.stream.httpupgrade.host" />
- </a-form-item>
- <a-form-item :label="t('path')">
- <a-input v-model:value="inbound.stream.httpupgrade.path" />
- </a-form-item>
- <a-form-item :label="t('pages.inbounds.stream.tcp.requestHeader')">
- <a-button size="small" @click="inbound.stream.httpupgrade.addHeader('', '')">
- <template #icon>
- <PlusOutlined />
- </template>
- </a-button>
- </a-form-item>
- <a-form-item v-if="inbound.stream.httpupgrade.headers.length > 0" :wrapper-col="{ span: 24 }">
- <a-input-group v-for="(h, idx) in inbound.stream.httpupgrade.headers" :key="`hu-h-${idx}`" compact
- class="mb-8">
- <a-input :style="{ width: '45%' }" v-model:value="h.name"
- :placeholder="t('pages.inbounds.stream.general.name')">
- <template #addonBefore>{{ idx + 1 }}</template>
- </a-input>
- <a-input :style="{ width: '45%' }" v-model:value="h.value"
- :placeholder="t('pages.inbounds.stream.general.value')" />
- <a-button @click="inbound.stream.httpupgrade.removeHeader(idx)">
- <template #icon>
- <MinusOutlined />
- </template>
- </a-button>
- </a-input-group>
- </a-form-item>
- </template>
- <!-- XHTTP -->
- <template v-if="network === 'xhttp'">
- <a-form-item :label="t('host')">
- <a-input v-model:value="inbound.stream.xhttp.host" />
- </a-form-item>
- <a-form-item :label="t('path')">
- <a-input v-model:value="inbound.stream.xhttp.path" />
- </a-form-item>
- <a-form-item :label="t('pages.inbounds.stream.tcp.requestHeader')">
- <a-button size="small" @click="inbound.stream.xhttp.addHeader('', '')">
- <template #icon>
- <PlusOutlined />
- </template>
- </a-button>
- </a-form-item>
- <a-form-item v-if="inbound.stream.xhttp.headers.length > 0" :wrapper-col="{ span: 24 }">
- <a-input-group v-for="(h, idx) in inbound.stream.xhttp.headers" :key="`xh-h-${idx}`" compact class="mb-8">
- <a-input :style="{ width: '45%' }" v-model:value="h.name"
- :placeholder="t('pages.inbounds.stream.general.name')">
- <template #addonBefore>{{ idx + 1 }}</template>
- </a-input>
- <a-input :style="{ width: '45%' }" v-model:value="h.value"
- :placeholder="t('pages.inbounds.stream.general.value')" />
- <a-button @click="inbound.stream.xhttp.removeHeader(idx)">
- <template #icon>
- <MinusOutlined />
- </template>
- </a-button>
- </a-input-group>
- </a-form-item>
- <a-form-item label="Mode">
- <a-select v-model:value="inbound.stream.xhttp.mode" :style="{ width: '50%' }">
- <a-select-option v-for="m in MODE_OPTIONS" :key="m" :value="m">{{ m }}</a-select-option>
- </a-select>
- </a-form-item>
- <a-form-item v-if="inbound.stream.xhttp.mode === 'packet-up'" label="Max Buffered Upload">
- <a-input-number v-model:value="inbound.stream.xhttp.scMaxBufferedPosts" />
- </a-form-item>
- <a-form-item v-if="inbound.stream.xhttp.mode === 'packet-up'" label="Max Upload Size (Byte)">
- <a-input v-model:value="inbound.stream.xhttp.scMaxEachPostBytes" />
- </a-form-item>
- <a-form-item v-if="inbound.stream.xhttp.mode === 'stream-up'" label="Stream-Up Server">
- <a-input v-model:value="inbound.stream.xhttp.scStreamUpServerSecs" />
- </a-form-item>
- <a-form-item label="Server Max Header Bytes">
- <a-input-number v-model:value="inbound.stream.xhttp.serverMaxHeaderBytes" :min="0"
- placeholder="0 (default)" />
- </a-form-item>
- <a-form-item label="Padding Bytes">
- <a-input v-model:value="inbound.stream.xhttp.xPaddingBytes" />
- </a-form-item>
- <a-form-item label="Padding Obfs Mode">
- <a-switch v-model:checked="inbound.stream.xhttp.xPaddingObfsMode" />
- </a-form-item>
- <template v-if="inbound.stream.xhttp.xPaddingObfsMode">
- <a-form-item label="Padding Key">
- <a-input v-model:value="inbound.stream.xhttp.xPaddingKey" placeholder="x_padding" />
- </a-form-item>
- <a-form-item label="Padding Header">
- <a-input v-model:value="inbound.stream.xhttp.xPaddingHeader" placeholder="X-Padding" />
- </a-form-item>
- <a-form-item label="Padding Placement">
- <a-select v-model:value="inbound.stream.xhttp.xPaddingPlacement">
- <a-select-option value="">Default (queryInHeader)</a-select-option>
- <a-select-option value="queryInHeader">queryInHeader</a-select-option>
- <a-select-option value="header">header</a-select-option>
- <a-select-option value="cookie">cookie</a-select-option>
- <a-select-option value="query">query</a-select-option>
- </a-select>
- </a-form-item>
- <a-form-item label="Padding Method">
- <a-select v-model:value="inbound.stream.xhttp.xPaddingMethod">
- <a-select-option value="">Default (repeat-x)</a-select-option>
- <a-select-option value="repeat-x">repeat-x</a-select-option>
- <a-select-option value="tokenish">tokenish</a-select-option>
- </a-select>
- </a-form-item>
- </template>
- <a-form-item label="Session Placement">
- <a-select v-model:value="inbound.stream.xhttp.sessionPlacement">
- <a-select-option value="">Default (path)</a-select-option>
- <a-select-option value="path">path</a-select-option>
- <a-select-option value="header">header</a-select-option>
- <a-select-option value="cookie">cookie</a-select-option>
- <a-select-option value="query">query</a-select-option>
- </a-select>
- </a-form-item>
- <a-form-item
- v-if="inbound.stream.xhttp.sessionPlacement && inbound.stream.xhttp.sessionPlacement !== 'path'"
- label="Session Key">
- <a-input v-model:value="inbound.stream.xhttp.sessionKey" placeholder="x_session" />
- </a-form-item>
- <a-form-item label="Sequence Placement">
- <a-select v-model:value="inbound.stream.xhttp.seqPlacement">
- <a-select-option value="">Default (path)</a-select-option>
- <a-select-option value="path">path</a-select-option>
- <a-select-option value="header">header</a-select-option>
- <a-select-option value="cookie">cookie</a-select-option>
- <a-select-option value="query">query</a-select-option>
- </a-select>
- </a-form-item>
- <a-form-item v-if="inbound.stream.xhttp.seqPlacement && inbound.stream.xhttp.seqPlacement !== 'path'"
- label="Sequence Key">
- <a-input v-model:value="inbound.stream.xhttp.seqKey" placeholder="x_seq" />
- </a-form-item>
- <a-form-item v-if="inbound.stream.xhttp.mode === 'packet-up'" label="Uplink Data Placement">
- <a-select v-model:value="inbound.stream.xhttp.uplinkDataPlacement">
- <a-select-option value="">Default (body)</a-select-option>
- <a-select-option value="body">body</a-select-option>
- <a-select-option value="header">header</a-select-option>
- <a-select-option value="cookie">cookie</a-select-option>
- <a-select-option value="query">query</a-select-option>
- </a-select>
- </a-form-item>
- <a-form-item
- v-if="inbound.stream.xhttp.mode === 'packet-up' && inbound.stream.xhttp.uplinkDataPlacement && inbound.stream.xhttp.uplinkDataPlacement !== 'body'"
- label="Uplink Data Key">
- <a-input v-model:value="inbound.stream.xhttp.uplinkDataKey" placeholder="x_data" />
- </a-form-item>
- <a-form-item label="No SSE Header">
- <a-switch v-model:checked="inbound.stream.xhttp.noSSEHeader" />
- </a-form-item>
- </template>
- <!-- ====== Security section ====== -->
- <a-form-item label="Security">
- <a-select v-model:value="security" :style="{ width: '160px' }" :disabled="!canEnableTls">
- <a-select-option value="none">none</a-select-option>
- <a-select-option value="tls">tls</a-select-option>
- <a-select-option v-if="canEnableReality" value="reality">reality</a-select-option>
- </a-select>
- </a-form-item>
- <template v-if="security === 'tls' && inbound.stream.tls">
- <a-form-item label="SNI">
- <a-input v-model:value="inbound.stream.tls.sni" placeholder="Server Name Indication" />
- </a-form-item>
- <a-form-item label="Cipher Suites">
- <a-select v-model:value="inbound.stream.tls.cipherSuites">
- <a-select-option value="">Auto</a-select-option>
- <a-select-option v-for="[label, val] in CIPHER_SUITES" :key="val" :value="val">{{ label
- }}</a-select-option>
- </a-select>
- </a-form-item>
- <a-form-item label="Min/Max Version">
- <a-input-group compact>
- <a-select v-model:value="inbound.stream.tls.minVersion" :style="{ width: '50%' }">
- <a-select-option v-for="v in TLS_VERSIONS" :key="v" :value="v">{{ v }}</a-select-option>
- </a-select>
- <a-select v-model:value="inbound.stream.tls.maxVersion" :style="{ width: '50%' }">
- <a-select-option v-for="v in TLS_VERSIONS" :key="v" :value="v">{{ v }}</a-select-option>
- </a-select>
- </a-input-group>
- </a-form-item>
- <a-form-item label="uTLS">
- <a-select v-model:value="inbound.stream.tls.settings.fingerprint" :style="{ width: '100%' }">
- <a-select-option value="">None</a-select-option>
- <a-select-option v-for="fp in FINGERPRINTS" :key="fp" :value="fp">{{ fp }}</a-select-option>
- </a-select>
- </a-form-item>
- <a-form-item label="ALPN">
- <a-select v-model:value="inbound.stream.tls.alpn" mode="multiple" :style="{ width: '100%' }"
- :token-separators="[',']">
- <a-select-option v-for="a in ALPNS" :key="a" :value="a">{{ a }}</a-select-option>
- </a-select>
- </a-form-item>
- <a-form-item label="Reject Unknown SNI">
- <a-switch v-model:checked="inbound.stream.tls.rejectUnknownSni" />
- </a-form-item>
- <a-form-item label="Disable System Root">
- <a-switch v-model:checked="inbound.stream.tls.disableSystemRoot" />
- </a-form-item>
- <a-form-item label="Session Resumption">
- <a-switch v-model:checked="inbound.stream.tls.enableSessionResumption" />
- </a-form-item>
- <!-- Cert array — file path or inline content per row -->
- <template v-for="(cert, idx) in inbound.stream.tls.certs" :key="`cert-${idx}`">
- <a-form-item :label="t('certificate')">
- <a-radio-group v-model:value="cert.useFile" button-style="solid">
- <a-radio-button :value="true">{{ t('pages.inbounds.certificatePath') }}</a-radio-button>
- <a-radio-button :value="false">{{ t('pages.inbounds.certificateContent') }}</a-radio-button>
- </a-radio-group>
- </a-form-item>
- <a-form-item label=" ">
- <a-space>
- <a-button v-if="idx === 0" type="primary" size="small" @click="inbound.stream.tls.addCert()">
- <template #icon>
- <PlusOutlined />
- </template>
- </a-button>
- <a-button v-if="inbound.stream.tls.certs.length > 1" type="primary" size="small"
- @click="inbound.stream.tls.removeCert(idx)">
- <template #icon>
- <MinusOutlined />
- </template>
- </a-button>
- </a-space>
- </a-form-item>
- <template v-if="cert.useFile">
- <a-form-item :label="t('pages.inbounds.publicKey')">
- <a-input v-model:value="cert.certFile" />
- </a-form-item>
- <a-form-item :label="t('pages.inbounds.privatekey')">
- <a-input v-model:value="cert.keyFile" />
- </a-form-item>
- <a-form-item label=" ">
- <a-button type="primary" :disabled="!defaultCert && !defaultKey" @click="setDefaultCertData(idx)">
- {{ t('pages.inbounds.setDefaultCert') }}
- </a-button>
- </a-form-item>
- </template>
- <template v-else>
- <a-form-item :label="t('pages.inbounds.publicKey')">
- <a-textarea v-model:value="cert.cert" :auto-size="{ minRows: 3, maxRows: 8 }" />
- </a-form-item>
- <a-form-item :label="t('pages.inbounds.privatekey')">
- <a-textarea v-model:value="cert.key" :auto-size="{ minRows: 3, maxRows: 8 }" />
- </a-form-item>
- </template>
- <a-form-item label="One Time Loading">
- <a-switch v-model:checked="cert.oneTimeLoading" />
- </a-form-item>
- <a-form-item label="Usage Option">
- <a-select v-model:value="cert.usage" :style="{ width: '50%' }">
- <a-select-option v-for="u in USAGES" :key="u" :value="u">{{ u }}</a-select-option>
- </a-select>
- </a-form-item>
- <a-form-item v-if="cert.usage === 'issue'" label="Build Chain">
- <a-switch v-model:checked="cert.buildChain" />
- </a-form-item>
- </template>
- <!-- ECH (Encrypted Client Hello) -->
- <a-form-item label="ECH key">
- <a-input v-model:value="inbound.stream.tls.echServerKeys" />
- </a-form-item>
- <a-form-item label="ECH config">
- <a-input v-model:value="inbound.stream.tls.settings.echConfigList" />
- </a-form-item>
- <a-form-item label=" ">
- <a-space>
- <a-button type="primary" :loading="saving" @click="getNewEchCert">Get New ECH Cert</a-button>
- <a-button danger @click="clearEchCert">Clear</a-button>
- </a-space>
- </a-form-item>
- </template>
- <template v-if="security === 'reality' && inbound.stream.reality">
- <a-form-item label="Show">
- <a-switch v-model:checked="inbound.stream.reality.show" />
- </a-form-item>
- <a-form-item label="Xver">
- <a-input-number v-model:value="inbound.stream.reality.xver" :min="0" />
- </a-form-item>
- <a-form-item label="uTLS">
- <a-select v-model:value="inbound.stream.reality.settings.fingerprint" :style="{ width: '100%' }">
- <a-select-option v-for="fp in FINGERPRINTS" :key="fp" :value="fp">{{ fp }}</a-select-option>
- </a-select>
- </a-form-item>
- <a-form-item>
- <template #label>
- Target
- <SyncOutlined class="random-icon" @click="randomizeRealityTarget" />
- </template>
- <a-input v-model:value="inbound.stream.reality.target" />
- </a-form-item>
- <a-form-item>
- <template #label>
- SNI
- <SyncOutlined class="random-icon" @click="randomizeRealityTarget" />
- </template>
- <a-input v-model:value="inbound.stream.reality.serverNames" />
- </a-form-item>
- <a-form-item label="Max Time Diff (ms)">
- <a-input-number v-model:value="inbound.stream.reality.maxTimediff" :min="0" />
- </a-form-item>
- <a-form-item label="Min Client Ver">
- <a-input v-model:value="inbound.stream.reality.minClientVer" placeholder="25.9.11" />
- </a-form-item>
- <a-form-item label="Max Client Ver">
- <a-input v-model:value="inbound.stream.reality.maxClientVer" placeholder="25.9.11" />
- </a-form-item>
- <a-form-item>
- <template #label>
- Short IDs
- <SyncOutlined class="random-icon" @click="randomizeShortIds" />
- </template>
- <a-textarea v-model:value="inbound.stream.reality.shortIds" :auto-size="{ minRows: 1, maxRows: 4 }" />
- </a-form-item>
- <a-form-item label="SpiderX">
- <a-input v-model:value="inbound.stream.reality.settings.spiderX" />
- </a-form-item>
- <a-form-item :label="t('pages.inbounds.publicKey')">
- <a-textarea v-model:value="inbound.stream.reality.settings.publicKey"
- :auto-size="{ minRows: 1, maxRows: 4 }" />
- </a-form-item>
- <a-form-item :label="t('pages.inbounds.privatekey')">
- <a-textarea v-model:value="inbound.stream.reality.privateKey" :auto-size="{ minRows: 1, maxRows: 4 }" />
- </a-form-item>
- <a-form-item label=" ">
- <a-space>
- <a-button type="primary" :loading="saving" @click="genRealityKeypair">Get New Cert</a-button>
- <a-button danger @click="clearRealityKeypair">Clear</a-button>
- </a-space>
- </a-form-item>
- <a-form-item label="mldsa65 Seed">
- <a-textarea v-model:value="inbound.stream.reality.mldsa65Seed" :auto-size="{ minRows: 2, maxRows: 6 }" />
- </a-form-item>
- <a-form-item label="mldsa65 Verify">
- <a-textarea v-model:value="inbound.stream.reality.settings.mldsa65Verify"
- :auto-size="{ minRows: 2, maxRows: 6 }" />
- </a-form-item>
- <a-form-item label=" ">
- <a-space>
- <a-button type="primary" :loading="saving" @click="genMldsa65">Get New Seed</a-button>
- <a-button danger @click="clearMldsa65">Clear</a-button>
- </a-space>
- </a-form-item>
- </template>
- <!-- ====== External Proxy ====== -->
- <a-form-item label="External Proxy">
- <a-switch v-model:checked="externalProxy" />
- <a-button v-if="externalProxy" size="small" type="primary" :style="{ marginLeft: '10px' }"
- @click="inbound.stream.externalProxy.push({ forceTls: 'same', dest: '', port: 443, remark: '' })">
- <template #icon>
- <PlusOutlined />
- </template>
- </a-button>
- </a-form-item>
- <a-form-item v-if="externalProxy" :wrapper-col="{ span: 24 }">
- <a-input-group v-for="(row, idx) in inbound.stream.externalProxy" :key="`ep-${idx}`" compact
- :style="{ margin: '8px 0' }">
- <a-tooltip title="Force TLS">
- <a-select v-model:value="row.forceTls" :style="{ width: '20%' }">
- <a-select-option value="same">{{ t('pages.inbounds.same') }}</a-select-option>
- <a-select-option value="none">{{ t('none') }}</a-select-option>
- <a-select-option value="tls">TLS</a-select-option>
- </a-select>
- </a-tooltip>
- <a-input v-model:value="row.dest" :style="{ width: '30%' }" :placeholder="t('host')" />
- <a-tooltip :title="t('pages.inbounds.port')">
- <a-input-number v-model:value="row.port" :style="{ width: '15%' }" :min="1" :max="65535" />
- </a-tooltip>
- <a-input v-model:value="row.remark" :style="{ width: '35%' }" :placeholder="t('pages.inbounds.remark')">
- <template #addonAfter>
- <MinusOutlined @click="inbound.stream.externalProxy.splice(idx, 1)" />
- </template>
- </a-input>
- </a-input-group>
- </a-form-item>
- <!-- ====== Sockopt ====== -->
- <a-form-item label="Sockopt">
- <a-switch v-model:checked="inbound.stream.sockoptSwitch" />
- </a-form-item>
- <template v-if="inbound.stream.sockoptSwitch && inbound.stream.sockopt">
- <a-form-item label="Route Mark">
- <a-input-number v-model:value="inbound.stream.sockopt.mark" :min="0" />
- </a-form-item>
- <a-form-item label="TCP Keep Alive Interval">
- <a-input-number v-model:value="inbound.stream.sockopt.tcpKeepAliveInterval" :min="0" />
- </a-form-item>
- <a-form-item label="TCP Keep Alive Idle">
- <a-input-number v-model:value="inbound.stream.sockopt.tcpKeepAliveIdle" :min="0" />
- </a-form-item>
- <a-form-item label="TCP Max Seg">
- <a-input-number v-model:value="inbound.stream.sockopt.tcpMaxSeg" :min="0" />
- </a-form-item>
- <a-form-item label="TCP User Timeout">
- <a-input-number v-model:value="inbound.stream.sockopt.tcpUserTimeout" :min="0" />
- </a-form-item>
- <a-form-item label="TCP Window Clamp">
- <a-input-number v-model:value="inbound.stream.sockopt.tcpWindowClamp" :min="0" />
- </a-form-item>
- <a-form-item label="Proxy Protocol">
- <a-switch v-model:checked="inbound.stream.sockopt.acceptProxyProtocol" />
- </a-form-item>
- <a-form-item label="TCP Fast Open">
- <a-switch v-model:checked="inbound.stream.sockopt.tcpFastOpen" />
- </a-form-item>
- <a-form-item label="Multipath TCP">
- <a-switch v-model:checked="inbound.stream.sockopt.tcpMptcp" />
- </a-form-item>
- <a-form-item label="Penetrate">
- <a-switch v-model:checked="inbound.stream.sockopt.penetrate" />
- </a-form-item>
- <a-form-item label="V6 Only">
- <a-switch v-model:checked="inbound.stream.sockopt.V6Only" />
- </a-form-item>
- <a-form-item label="Domain Strategy">
- <a-select v-model:value="inbound.stream.sockopt.domainStrategy" :style="{ width: '50%' }">
- <a-select-option v-for="d in DOMAIN_STRATEGIES" :key="d" :value="d">{{ d }}</a-select-option>
- </a-select>
- </a-form-item>
- <a-form-item label="TCP Congestion">
- <a-select v-model:value="inbound.stream.sockopt.tcpcongestion" :style="{ width: '50%' }">
- <a-select-option v-for="c in TCP_CONGESTIONS" :key="c" :value="c">{{ c }}</a-select-option>
- </a-select>
- </a-form-item>
- <a-form-item label="TProxy">
- <a-select v-model:value="inbound.stream.sockopt.tproxy" :style="{ width: '50%' }">
- <a-select-option value="off">Off</a-select-option>
- <a-select-option value="redirect">Redirect</a-select-option>
- <a-select-option value="tproxy">TProxy</a-select-option>
- </a-select>
- </a-form-item>
- <a-form-item label="Dialer Proxy">
- <a-input v-model:value="inbound.stream.sockopt.dialerProxy" />
- </a-form-item>
- <a-form-item label="Interface Name">
- <a-input v-model:value="inbound.stream.sockopt.interfaceName" />
- </a-form-item>
- <a-form-item label="Trusted X-Forwarded-For">
- <a-select v-model:value="inbound.stream.sockopt.trustedXForwardedFor" mode="tags"
- :style="{ width: '100%' }" :token-separators="[',']">
- <a-select-option value="CF-Connecting-IP">CF-Connecting-IP</a-select-option>
- <a-select-option value="X-Real-IP">X-Real-IP</a-select-option>
- <a-select-option value="True-Client-IP">True-Client-IP</a-select-option>
- <a-select-option value="X-Client-IP">X-Client-IP</a-select-option>
- </a-select>
- </a-form-item>
- </template>
- </a-form>
- <!-- ====== FinalMask (TCP/UDP masks + QUIC params) ====== -->
- <FinalMaskForm :stream="inbound.stream" :protocol="protocol" />
- </a-tab-pane>
- <!-- ============================== SNIFFING ============================== -->
- <a-tab-pane key="sniffing" tab="Sniffing"><!-- "Sniffing" stays literal — xray config term -->
- <a-form :colon="false" :label-col="{ sm: { span: 8 } }" :wrapper-col="{ sm: { span: 14 } }">
- <a-form-item label="Enabled">
- <a-switch v-model:checked="inbound.sniffing.enabled" />
- </a-form-item>
- <template v-if="inbound.sniffing.enabled">
- <a-form-item :wrapper-col="{ span: 24 }">
- <a-checkbox-group v-model:value="inbound.sniffing.destOverride">
- <a-checkbox v-for="(value, key) in SNIFFING_OPTION" :key="key" :value="value">{{ key }}</a-checkbox>
- </a-checkbox-group>
- </a-form-item>
- <a-form-item label="Metadata only">
- <a-switch v-model:checked="inbound.sniffing.metadataOnly" />
- </a-form-item>
- <a-form-item label="Route only">
- <a-switch v-model:checked="inbound.sniffing.routeOnly" />
- </a-form-item>
- <a-form-item label="IPs excluded">
- <a-select v-model:value="inbound.sniffing.ipsExcluded" mode="tags" :token-separators="[',']"
- placeholder="IP/CIDR/geoip:*/ext:*" :style="{ width: '100%' }" />
- </a-form-item>
- <a-form-item label="Domains excluded">
- <a-select v-model:value="inbound.sniffing.domainsExcluded" mode="tags" :token-separators="[',']"
- placeholder="domain:*/ext:*" :style="{ width: '100%' }" />
- </a-form-item>
- </template>
- </a-form>
- </a-tab-pane>
- <!-- ============================== ADVANCED ============================== -->
- <a-tab-pane key="advanced" :tab="t('pages.xray.advancedTemplate')">
- <a-alert type="info" show-icon
- message="Edit raw stream JSON to access advanced fields we don't yet expose through the form."
- class="mb-12" />
- <a-form layout="vertical">
- <a-form-item label="settings (clients, encryption, fallbacks, …)">
- <a-textarea v-model:value="advancedJson.settings" :auto-size="{ minRows: 10, maxRows: 24 }"
- spellcheck="false" class="json-editor" />
- </a-form-item>
- <a-form-item label="streamSettings">
- <a-textarea v-model:value="advancedJson.stream" :auto-size="{ minRows: 10, maxRows: 24 }" spellcheck="false"
- class="json-editor" />
- </a-form-item>
- <a-form-item label="sniffing (overrides the Sniffing tab when set)">
- <a-textarea v-model:value="advancedJson.sniffing" :auto-size="{ minRows: 6, maxRows: 16 }"
- spellcheck="false" class="json-editor" />
- </a-form-item>
- </a-form>
- </a-tab-pane>
- </a-tabs>
- </a-modal>
- </template>
- <style scoped>
- .mt-4 {
- margin-top: 4px;
- }
- .mt-8 {
- margin-top: 8px;
- }
- .mt-12 {
- margin-top: 12px;
- }
- .mb-4 {
- margin-bottom: 4px;
- }
- .mb-8 {
- margin-bottom: 8px;
- }
- .mb-12 {
- margin-bottom: 12px;
- }
- .random-icon {
- margin-left: 4px;
- cursor: pointer;
- color: var(--ant-primary-color, #1890ff);
- }
- .danger-icon {
- margin-left: 6px;
- cursor: pointer;
- color: #ff4d4f;
- }
- .json-editor {
- font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
- font-size: 12px;
- }
- .client-summary {
- width: 100%;
- border-collapse: collapse;
- }
- .client-summary th,
- .client-summary td {
- padding: 4px 8px;
- text-align: left;
- border-bottom: 1px solid rgba(128, 128, 128, 0.15);
- }
- .fallbacks-header {
- display: flex;
- align-items: center;
- gap: 8px;
- margin: 8px 0;
- }
- .fallbacks-title {
- font-weight: 500;
- flex: 1;
- }
- .wg-peer {
- margin-top: 4px;
- }
- .section-heading {
- font-weight: 500;
- margin: 12px 0 6px;
- opacity: 0.85;
- }
- </style>
|