123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390 |
- {{define "form/outbound"}}
- <!-- base -->
- <a-tabs :active-key="outModal.activeKey" style="padding: 0; background-color: transparent;" @change="(activeKey) => {outModal.toggleJson(activeKey == '2'); }">
- <a-tab-pane key="1" tab="Form">
- <a-form :colon="false" :label-col="{ md: {span:8} }" :wrapper-col="{ md: {span:14} }">
- <a-form-item label='{{ i18n "protocol" }}'>
- <a-select v-model="outbound.protocol" :dropdown-class-name="themeSwitcher.currentTheme">
- <a-select-option v-for="x,y in Protocols" :value="x">[[ y ]]</a-select-option>
- </a-select>
- </a-form-item>
- <a-form-item label='{{ i18n "pages.xray.outbound.tag" }}' has-feedback :validate-status="outModal.duplicateTag? 'warning' : 'success'">
- <a-input v-model.trim="outbound.tag" @change="outModal.check()" placeholder='{{ i18n "pages.xray.outbound.tagDesc" }}'></a-input>
- </a-form-item>
- <!-- freedom settings-->
- <template v-if="outbound.protocol === Protocols.Freedom">
- <a-form-item label='Strategy'>
- <a-select
- v-model="outbound.settings.domainStrategy"
- :dropdown-class-name="themeSwitcher.currentTheme">
- <a-select-option v-for="s in outboundDomainStrategies" :value="s">[[ s ]]</a-select-option>
- </a-select>
- </a-form-item>
- <a-form-item label='Fragment'>
- <a-switch
- :checked="Object.keys(outbound.settings.fragment).length >0"
- @change="checked => outbound.settings.fragment = checked ? new Outbound.FreedomSettings.Fragment() : {}">
- </a-switch>
- </a-form-item>
- <template v-if="Object.keys(outbound.settings.fragment).length >0">
- <a-form-item label='Packets'>
- <a-select
- v-model="outbound.settings.fragment.packets"
- :dropdown-class-name="themeSwitcher.currentTheme">
- <a-select-option v-for="s in ['1-3','tlshello']" :value="s">[[ s ]]</a-select-option>
- </a-select>
- </a-form-item>
- <a-form-item label='Length'>
- <a-input v-model.trim="outbound.settings.fragment.length"></a-input>
- </a-form-item>
- <a-form-item label='Interval'>
- <a-input v-model.trim="outbound.settings.fragment.interval"></a-input>
- </a-form-item>
- </template>
- </template>
- <!-- wireguard settings -->
- <template v-if="outbound.protocol === Protocols.Wireguard">
- <a-form-item label='Secret Key'>
- <a-input v-model.trim="outbound.settings.secretKey"></a-input>
- </a-form-item>
- <a-form-item label="Address">
- <a-row>
- <a-button size="small" @click="outbound.settings.addAddress()">
- +
- </a-button>
- </a-row>
- <a-space direction="vertical">
- <a-input-group compact v-for="(address, index) in outbound.settings.address">
- <a-input v-model.trim="outbound.settings.address[index]" style="width: calc(100% - 40px)"></a-input>
- <a-button type="delete" @click="outbound.settings.delAddress(index)">-</a-button>
- </a-input-group>
- </a-space>
- </a-form-item>
- <a-form-item label='MTU'>
- <a-input placeholder="1420" type="number" min="0" v-model.number="outbound.settings.mtu"></a-input>
- </a-form-item>
- <a-form-item label='Workers'>
- <a-input type="number" min="0" v-model.number="outbound.settings.workers"></a-input>
- </a-form-item>
-
- <a-form-item label='Domain Strategy'>
- <a-select
- v-model="outbound.settings.domainStrategy"
- :dropdown-class-name="themeSwitcher.currentTheme">
- <a-select-option v-for="s in ['', ...WireguardDomainStrategy]" :value="s">[[ s ]]</a-select-option>
- </a-select>
- </a-form-item>
- <a-form-item label="Peers">
- <a-row>
- <a-button type="primary" size="small"
- @click="outbound.settings.addPeer()">
- +
- </a-button>
- </a-row>
- </a-form-item>
- <a-form v-for="(peer, index) in outbound.settings.peers" :colon="false" :label-col="{ md: {span:8} }" :wrapper-col="{ md: {span:14} }">
- <a-divider style="margin:0;">
- Peer [[ index + 1 ]]
- <a-icon type="delete" @click="() => outbound.settings.delPeer(index)"
- style="color: rgb(255, 77, 79);cursor: pointer;"/>
- </a-divider>
- <a-form-item label='Endpoint'>
- <a-input v-model.trim="peer.endpoint"></a-input>
- </a-form-item>
- <a-form-item label='Public Key'>
- <a-input v-model.trim="peer.publicKey"></a-input>
- </a-form-item>
- <a-form-item label='PreShared Key'>
- <a-input v-model.trim="peer.preSharedKey"></a-input>
- </a-form-item>
- <a-form-item label='keepAlive'>
- <a-input type="number" min="0" v-model.number="peer.keepAlive"></a-input>
- </a-form-item>
- <a-form-item label="Allowed IPs">
- <a-row>
- <a-button size="small" @click="outbound.settings.addAllowedIP(index)">
- +
- </a-button>
- </a-row>
- <a-space direction="vertical">
- <a-input-group compact v-for="(allowedIp, ipIndex) in peer.allowedIPs">
- <a-input v-model.trim="peer.allowedIPs[ipIndex]" style="width: calc(100% - 40px)"></a-input>
- <a-button type="delete" @click="outbound.settings.delAllowedIP(index, ipIndex)">-</a-button>
- </a-input-group>
- </a-space>
- </a-form-item>
- </a-form>
- </template>
- <!-- blackhole settings -->
- <template v-if="outbound.protocol === Protocols.Blackhole">
- <a-form-item label='Response Type'>
- <a-select
- v-model="outbound.settings.type"
- :dropdown-class-name="themeSwitcher.currentTheme">
- <a-select-option v-for="s in ['', 'none','http']" :value="s">[[ s ]]</a-select-option>
- </a-select>
- </a-form-item>
- </template>
- <!-- dns settings -->
- <template v-if="outbound.protocol === Protocols.DNS">
- <a-form-item label='{{ i18n "pages.inbounds.network" }}'>
- <a-select
- v-model="outbound.settings.network"
- :dropdown-class-name="themeSwitcher.currentTheme">
- <a-select-option v-for="s in ['udp','tcp']" :value="s">[[ s ]]</a-select-option>
- </a-select>
- </a-form-item>
- </template>
- <!-- Address + Port -->
- <template v-if="outbound.hasAddressPort()">
- <a-form-item label='{{ i18n "pages.inbounds.address" }}'>
- <a-input v-model.trim="outbound.settings.address"></a-input>
- </a-form-item>
- <a-form-item label='{{ i18n "pages.inbounds.port" }}'>
- <a-input-number v-model.number="outbound.settings.port" :min="1" :max="65532"></a-input-number>
- </a-form-item>
- </template>
- <!-- Vnext (vless/vmess) settings -->
- <template v-if="[Protocols.VMess, Protocols.VLESS].includes(outbound.protocol)">
- <a-form-item label='ID'>
- <a-input v-model.trim="outbound.settings.id"></a-input>
- </a-form-item>
- <!-- vless settings -->
- <template v-if="outbound.canEnableTlsFlow()">
- <a-form-item label='Flow'>
- <a-select v-model="outbound.settings.flow" :dropdown-class-name="themeSwitcher.currentTheme">
- <a-select-option value="" selected>{{ i18n "none" }}</a-select-option>
- <a-select-option v-for="key in TLS_FLOW_CONTROL" :value="key">[[ key ]]</a-select-option>
- </a-select>
- </a-form-item>
- </template>
- </template>
- <!-- Servers (trojan/shadowsocks/socks/http) settings -->
- <template v-if="outbound.hasServers()">
- <!-- http / socks -->
- <template v-if="outbound.hasUsername()">
- <a-form-item label='{{ i18n "username" }}'>
- <a-input v-model.trim="outbound.settings.user"></a-input>
- </a-form-item>
- <a-form-item label='{{ i18n "password" }}'>
- <a-input v-model.trim="outbound.settings.pass"></a-input>
- </a-form-item>
- </template>
- <!-- shadowsocks -->
- <template v-if="outbound.protocol === Protocols.Shadowsocks">
- <a-form-item label='{{ i18n "encryption" }}'>
- <a-select v-model="outbound.settings.method" :dropdown-class-name="themeSwitcher.currentTheme">
- <a-select-option v-for="method in SSMethods" :value="method">[[ method ]]</a-select-option>
- </a-select>
- </a-form-item>
- <a-form-item label='UDP over TCP'>
- <a-switch v-model="outbound.settings.uot"></a-switch>
- </a-form-item>
- </template>
- </template>
- <!-- stream settings -->
- <template v-if="outbound.canEnableStream()">
- <a-form-item label='{{ i18n "transmission" }}'>
- <a-select v-model="outbound.stream.network" @change="streamNetworkChange"
- :dropdown-class-name="themeSwitcher.currentTheme">
- <a-select-option value="tcp">TCP</a-select-option>
- <a-select-option value="kcp">KCP</a-select-option>
- <a-select-option value="ws">WS</a-select-option>
- <a-select-option value="http">HTTP2</a-select-option>
- <a-select-option value="quic">QUIC</a-select-option>
- <a-select-option value="grpc">gRPC</a-select-option>
- </a-select>
- </a-form-item>
- <template v-if="outbound.stream.network === 'tcp'">
- <a-form-item label='HTTP {{ i18n "camouflage" }}'>
- <a-switch
- :checked="outbound.stream.tcp.type === 'http'"
- @change="checked => outbound.stream.tcp.type = checked ? 'http' : 'none'">
- </a-switch>
- </a-form-item>
- <template v-if="outbound.stream.tcp.type == 'http'">
- <a-form-item label='{{ i18n "host" }}'>
- <a-input v-model.trim="outbound.stream.tcp.host"></a-input>
- </a-form-item>
- <a-form-item label='{{ i18n "path" }}'>
- <a-input v-model.trim="outbound.stream.tcp.path"></a-input>
- </a-form-item>
- </template>
- </template>
-
- <!-- kcp -->
- <template v-if="outbound.stream.network === 'kcp'">
- <a-form-item label='{{ i18n "camouflage" }}'>
- <a-select v-model="outbound.stream.kcp.type" :dropdown-class-name="themeSwitcher.currentTheme">
- <a-select-option value="none">none (not camouflage)</a-select-option>
- <a-select-option value="srtp">srtp (video call)</a-select-option>
- <a-select-option value="utp">utp (BT download)</a-select-option>
- <a-select-option value="wechat-video">wechat-video (WeChat video)</a-select-option>
- <a-select-option value="dtls">dtls (DTLS 1.2 packages)</a-select-option>
- <a-select-option value="wireguard">wireguard (wireguard packages)</a-select-option>
- </a-select>
- </a-form-item>
- <a-form-item label='{{ i18n "password" }}'>
- <a-input v-model="outbound.stream.kcp.seed"></a-input>
- </a-form-item>
- <a-form-item label='MTU'>
- <a-input-number v-model.number="outbound.stream.kcp.mtu"></a-input-number>
- </a-form-item>
- <a-form-item label='TTI (ms)'>
- <a-input-number v-model.number="outbound.stream.kcp.tti"></a-input-number>
- </a-form-item>
- <a-form-item label='Uplink Capacity (MB/s)'>
- <a-input-number v-model.number="outbound.stream.kcp.upCap"></a-input-number>
- </a-form-item>
- <a-form-item label='Downlink Capacity (MB/s)'>
- <a-input-number v-model.number="outbound.stream.kcp.downCap"></a-input-number>
- </a-form-item>
- <a-form-item label='Congestion'>
- <a-switch v-model="outbound.stream.kcp.congestion"></a-switch>
- </a-form-item>
- <a-form-item label='Read Buffer Size (MB)'>
- <a-input-number v-model.number="outbound.stream.kcp.readBuffer"></a-input-number>
- </a-form-item>
- <a-form-item label='Write Buffer Size (MB)'>
- <a-input-number v-model.number="outbound.stream.kcp.writeBuffer"></a-input-number>
- </a-form-item>
- </template>
-
- <!-- ws -->
- <template v-if="outbound.stream.network === 'ws'">
- <a-form-item label='{{ i18n "host" }}'>
- <a-input v-model="outbound.stream.ws.host"></a-input>
- </a-form-item>
- <a-form-item label='{{ i18n "path" }}'>
- <a-form-item><a-input v-model.trim="outbound.stream.ws.path"></a-input>
- </a-form-item>
- </template>
-
- <!-- http -->
- <template v-if="outbound.stream.network === 'http'">
- <a-form-item label='{{ i18n "host" }}'>
- <a-input v-model.trim="outbound.stream.http.host"></a-input>
- </a-form-item>
- <a-form-item label='{{ i18n "path" }}'>
- <a-input v-model.trim="outbound.stream.http.path"></a-input>
- </a-form-item>
- </template>
-
- <!-- quic -->
- <template v-if="outbound.stream.network === 'quic'">
- <a-form-item label='{{ i18n "pages.inbounds.stream.quic.encryption" }}'>
- <a-select v-model="outbound.stream.quic.security" :dropdown-class-name="themeSwitcher.currentTheme">
- <a-select-option value="none">none</a-select-option>
- <a-select-option value="aes-128-gcm">aes-128-gcm</a-select-option>
- <a-select-option value="chacha20-poly1305">chacha20-poly1305</a-select-option>
- </a-select>
- </a-form-item>
- <a-form-item label='{{ i18n "password" }}'>
- <a-input v-model.trim="outbound.stream.quic.key"></a-input>
- </a-form-item>
- <a-form-item label='{{ i18n "camouflage" }}'>
- <a-select v-model="outbound.stream.quic.type" :dropdown-class-name="themeSwitcher.currentTheme">
- <a-select-option value="none">none (No Obfuscation)</a-select-option>
- <a-select-option value="srtp">SRTP (Video Call)</a-select-option>
- <a-select-option value="utp">uTP (Bittorrent)</a-select-option>
- <a-select-option value="wechat-video">WeChat Video</a-select-option>
- <a-select-option value="dtls">DTLS (DTLS 1.2 packages)</a-select-option>
- <a-select-option value="wireguard">WireGuard (WireGuard Packages)</a-select-option>
- </a-select>
- </a-form-item>
- </template>
-
- <!-- grpc -->
- <template v-if="outbound.stream.network === 'grpc'">
- <a-form-item label='Service Name'>
- <a-input v-model.trim="outbound.stream.grpc.serviceName"></a-input>
- </a-form-item>
- <a-form-item label='Multi Mode'>
- <a-switch v-model="outbound.stream.grpc.multiMode"></a-switch>
- </a-form-item>
- </template>
- </template>
- <!-- tls settings -->
- <template v-if="outbound.canEnableTls()">
- <a-form-item label='{{ i18n "security" }}'>
- <a-radio-group v-model="outbound.stream.security" button-style="solid">
- <a-radio-button value="none">{{ i18n "none" }}</a-radio-button>
- <a-radio-button value="tls">TLS</a-radio-button>
- <a-radio-button v-if="outbound.canEnableReality()" value="reality">Reality</a-radio-button>
- </a-radio-group>
- </a-form-item>
- <template v-if="outbound.stream.isTls">
- <a-form-item label="SNI" placeholder="Server Name Indication">
- <a-input v-model.trim="outbound.stream.tls.serverName"></a-input>
- </a-form-item>
- <a-form-item label="uTLS">
- <a-select v-model="outbound.stream.tls.fingerprint"
- :dropdown-class-name="themeSwitcher.currentTheme">
- <a-select-option value=''>None</a-select-option>
- <a-select-option v-for="key in UTLS_FINGERPRINT" :value="key">[[ key ]]</a-select-option>
- </a-select>
- </a-form-item>
- <a-form-item label="ALPN">
- <a-select
- mode="multiple"
-
- :dropdown-class-name="themeSwitcher.currentTheme"
- v-model="outbound.stream.tls.alpn">
- <a-select-option v-for="alpn in ALPN_OPTION" :value="alpn">[[ alpn ]]</a-select-option>
- </a-select>
- </a-form-item>
- <a-form-item label="Allow Insecure">
- <a-switch v-model="outbound.stream.tls.allowInsecure"></a-switch>
- </a-form-item>
- </template>
-
- <!-- reality settings -->
- <template v-if="outbound.stream.isReality">
- <a-form-item label='{{ i18n "domainName" }}'>
- <a-input v-model.trim="outbound.stream.reality.serverName"></a-input>
- </a-form-item>
- <a-form-item label="uTLS">
- <a-select v-model="outbound.stream.reality.fingerprint"
- :dropdown-class-name="themeSwitcher.currentTheme">
- <a-select-option v-for="key in UTLS_FINGERPRINT" :value="key">[[ key ]]</a-select-option>
- </a-select>
- </a-form-item>
- <a-form-item label="Short IDs">
- <a-input v-model.trim="outbound.stream.reality.shortId" style="width:250px"></a-input>
- </a-form-item>
- <a-form-item label="SpiderX">
- <a-input v-model.trim="outbound.stream.reality.spiderX" style="width:250px"></a-input>
- </a-form-item>
- <a-form-item label="Public Key">
- <a-input v-model.trim="outbound.stream.reality.publicKey"></a-input>
- </a-form-item>
- </template>
- </template>
- </a-form>
- </a-tab-pane>
- <a-tab-pane key="2" tab="JSON" force-render="true">
- <a-form-item style="margin: 10px 0">
- Link: <a-input v-model.trim="outModal.link" style="width: 300px; margin-right: 5px;" placeholder="vmess:// vless:// trojan:// ss://"></a-input>
- <a-button @click="convertLink" type="primary"><a-icon type="form"></a-icon></a-button>
- </a-form-item>
- <textarea style="position:absolute; left: -800px;" id="outboundJson"></textarea>
- </a-tab-pane>
- </a-tabs>
- {{end}}
|