Files
GoEdgeLab d7d0c8fbfe v1.4.1
2024-07-27 15:42:58 +08:00

54 lines
2.6 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{$layout}
{$template "/clusters/cluster/node/node_menu"}
{$template "/left_menu_with_menu"}
<div class="right-box with-menu">
<form class="ui form" data-tea-success="success" data-tea-action="$">
<input type="hidden" name="nodeId" :value="node.id"/>
<csrf-token></csrf-token>
<table class="ui table definition selectable">
<tr>
<td class="title">CPU线程数</td>
<td>
<input type="text" name="maxCPU" v-model="node.maxCPU" style="width:5em" maxlength="4"/>
<p class="comment">当前节点可以使用的最多的CPU线程数如果为0则默认为总的CPU线程数。<pro-warning-label></pro-warning-label></p>
</td>
</tr>
<tr v-show="teaIsPlus">
<td class="title">BYPASS 移动</td>
<td>
<div class="ui checkbox">
<input type="checkbox" id="bypassMobileCheckbox" :name="bypassMobileCheckbox" v-model="node.bypassMobileCheckbox" @change="changeBypassMobile"/>
<label for="bypassMobileCheckbox"><slot></slot></label>
</div>
<p class="comment"><plus-label></plus-label>选中后可优化移动网络访问成功率对于正常站点会增加访问延迟节点需安装nftables。<pro-warning-label></pro-warning-label></p>
</td>
</tr>
<tr v-show="teaIsPlus && node.bypassMobileCheckbox">
<td class="title">BYPASS 移动,窗口大小</td>
<td>
<input type="text" name="bypassMobile" v-model="node.bypassMobile"/>
<p class="comment"><plus-label></plus-label>TCP接收窗口大小默认值17。<pro-warning-label></pro-warning-label></p>
</td>
</tr>
</table>
<h4>DNS解析</h4>
<dns-resolver-config-box :v-dns-resolver-config="dnsResolverConfig"></dns-resolver-config-box>
<h4>API相关</h4>
<table class="ui table definition selectable">
<tr>
<td class="title">API节点地址</td>
<td>
<div style="margin-bottom: 0.5em">
<api-node-addresses-box :v-name="'apiNodeAddrsJSON'" :v-addrs="apiNodeAddrs"></api-node-addresses-box>
</div>
<p class="comment">当前节点单独使用的API节点设置。<pro-warning-label></pro-warning-label></p>
</td>
</tr>
</table>
<submit-btn></submit-btn>
</form>
</div>