mirror of
https://github.com/kenzok8/small-package
synced 2025-04-04 03:01:27 +08:00
update 2025-02-09 20:34:02
This commit is contained in:
parent
6a82f6338d
commit
3e143113e7
@ -16,7 +16,7 @@
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=luci-app-amlogic
|
||||
PKG_VERSION:=3.1.249
|
||||
PKG_VERSION:=3.1.251
|
||||
PKG_RELEASE:=1
|
||||
|
||||
PKG_LICENSE:=GPL-2.0 License
|
||||
|
@ -66,6 +66,7 @@ kernel_branch:value("5.10", translate("5.10"))
|
||||
kernel_branch:value("5.15", translate("5.15"))
|
||||
kernel_branch:value("6.1", translate("6.1"))
|
||||
kernel_branch:value("6.6", translate("6.6"))
|
||||
kernel_branch:value("6.12", translate("6.12"))
|
||||
local default_kernel_branch = luci.sys.exec("uname -r | grep -oE '^[1-9].[0-9]{1,3}'")
|
||||
kernel_branch.default = trim(default_kernel_branch)
|
||||
kernel_branch.rmempty = false
|
||||
|
@ -1,10 +0,0 @@
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_VERSION:=1.17.5
|
||||
|
||||
LUCI_TITLE:=LuCI Support for mihomo
|
||||
LUCI_DEPENDS:=+luci-base +mihomo
|
||||
|
||||
include $(TOPDIR)/feeds/luci/luci.mk
|
||||
|
||||
# call BuildPackage - OpenWrt buildroot signature
|
@ -1,133 +0,0 @@
|
||||
'use strict';
|
||||
'require baseclass';
|
||||
'require uci';
|
||||
'require fs';
|
||||
'require rpc';
|
||||
|
||||
const homeDir = '/etc/mihomo';
|
||||
const profilesDir = `${homeDir}/profiles`;
|
||||
const subscriptionsDir = `${homeDir}/subscriptions`;
|
||||
const mixinFilePath = `${homeDir}/mixin.yaml`;
|
||||
const runDir = `${homeDir}/run`;
|
||||
const runProfilePath = `${runDir}/config.yaml`;
|
||||
const logDir = `/var/log/mihomo`;
|
||||
const appLogPath = `${logDir}/app.log`;
|
||||
const coreLogPath = `${logDir}/core.log`;
|
||||
const nftDir = `${homeDir}/nftables`;
|
||||
const reservedIPNFT = `${nftDir}/reserved_ip.nft`;
|
||||
const reservedIP6NFT = `${nftDir}/reserved_ip6.nft`;
|
||||
|
||||
return baseclass.extend({
|
||||
homeDir: homeDir,
|
||||
profilesDir: profilesDir,
|
||||
subscriptionsDir: subscriptionsDir,
|
||||
mixinFilePath: mixinFilePath,
|
||||
runDir: runDir,
|
||||
appLogPath: appLogPath,
|
||||
coreLogPath: coreLogPath,
|
||||
runProfilePath: runProfilePath,
|
||||
reservedIPNFT: reservedIPNFT,
|
||||
reservedIP6NFT: reservedIP6NFT,
|
||||
|
||||
callServiceList: rpc.declare({
|
||||
object: 'service',
|
||||
method: 'list',
|
||||
params: ['name'],
|
||||
expect: { '': {} }
|
||||
}),
|
||||
|
||||
getAppLog: function () {
|
||||
return L.resolveDefault(fs.read_direct(this.appLogPath));
|
||||
},
|
||||
|
||||
getCoreLog: function () {
|
||||
return L.resolveDefault(fs.read_direct(this.coreLogPath));
|
||||
},
|
||||
|
||||
clearAppLog: function () {
|
||||
return fs.exec_direct('/usr/libexec/mihomo-call', ['clear_log', 'app']);
|
||||
},
|
||||
|
||||
clearCoreLog: function () {
|
||||
return fs.exec_direct('/usr/libexec/mihomo-call', ['clear_log', 'core']);
|
||||
},
|
||||
|
||||
listProfiles: function () {
|
||||
return L.resolveDefault(fs.list(this.profilesDir), []);
|
||||
},
|
||||
|
||||
updateSubscription: function (section_id) {
|
||||
return fs.exec_direct('/usr/libexec/mihomo-call', ['subscription', 'update', section_id]);
|
||||
},
|
||||
|
||||
status: async function () {
|
||||
try {
|
||||
return (await this.callServiceList('mihomo'))['mihomo']['instances']['mihomo']['running'];
|
||||
} catch (ignored) {
|
||||
return false;
|
||||
}
|
||||
},
|
||||
|
||||
reload: function () {
|
||||
return fs.exec_direct('/usr/libexec/mihomo-call', ['service', 'reload']);
|
||||
},
|
||||
|
||||
restart: function () {
|
||||
return fs.exec_direct('/usr/libexec/mihomo-call', ['service', 'restart']);
|
||||
},
|
||||
|
||||
appVersion: function () {
|
||||
return L.resolveDefault(fs.exec_direct('/usr/libexec/mihomo-call', ['version', 'app']), _('Unknown'));
|
||||
},
|
||||
|
||||
coreVersion: function () {
|
||||
return L.resolveDefault(fs.exec_direct('/usr/libexec/mihomo-call', ['version', 'core']), _('Unknown'));
|
||||
},
|
||||
|
||||
callMihomoAPI: async function (method, path, params, body) {
|
||||
const running = await this.status();
|
||||
if (running) {
|
||||
const apiPort = uci.get('mihomo', 'mixin', 'api_port');
|
||||
const apiSecret = uci.get('mihomo', 'mixin', 'api_secret');
|
||||
const query = new URLSearchParams(params).toString();
|
||||
const url = `http://${window.location.hostname}:${apiPort}${path}?${query}`;
|
||||
await fetch(url, {
|
||||
method: method,
|
||||
headers: { 'Authorization': `Bearer ${apiSecret}` },
|
||||
body: JSON.stringify(body)
|
||||
})
|
||||
} else {
|
||||
alert(_('Service is not running.'));
|
||||
}
|
||||
},
|
||||
|
||||
openDashboard: async function () {
|
||||
const running = await this.status();
|
||||
if (running) {
|
||||
const uiName = uci.get('mihomo', 'mixin', 'ui_name');
|
||||
const apiPort = uci.get('mihomo', 'mixin', 'api_port');
|
||||
const apiSecret = encodeURIComponent(uci.get('mihomo', 'mixin', 'api_secret'));
|
||||
let url;
|
||||
if (uiName) {
|
||||
url = `http://${window.location.hostname}:${apiPort}/ui/${uiName}/?host=${window.location.hostname}&hostname=${window.location.hostname}&port=${apiPort}&secret=${apiSecret}`;
|
||||
} else {
|
||||
url = `http://${window.location.hostname}:${apiPort}/ui/?host=${window.location.hostname}&hostname=${window.location.hostname}&port=${apiPort}&secret=${apiSecret}`;
|
||||
}
|
||||
setTimeout(function () { window.open(url, '_blank') }, 0);
|
||||
} else {
|
||||
alert(_('Service is not running.'));
|
||||
}
|
||||
},
|
||||
|
||||
getUsers: function () {
|
||||
return fs.lines('/etc/passwd').then(function (lines) {
|
||||
return lines.map(function (line) { return line.split(/:/)[0] }).filter(function (user) { return user !== 'root' && user !== 'mihomo' });
|
||||
});
|
||||
},
|
||||
|
||||
getGroups: function () {
|
||||
return fs.lines('/etc/group').then(function (lines) {
|
||||
return lines.map(function (line) { return line.split(/:/)[0] }).filter(function (group) { return group !== 'root' && group !== 'mihomo' });
|
||||
});
|
||||
},
|
||||
})
|
@ -1,148 +0,0 @@
|
||||
'use strict';
|
||||
'require form';
|
||||
'require view';
|
||||
'require uci';
|
||||
'require poll';
|
||||
'require tools.mihomo as mihomo';
|
||||
|
||||
function renderStatus(running) {
|
||||
return updateStatus(E('input', { id: 'core_status', style: 'border: unset; font-style: italic; font-weight: bold;', readonly: '' }), running);
|
||||
}
|
||||
|
||||
function updateStatus(element, running) {
|
||||
if (element) {
|
||||
element.style.color = running ? 'green' : 'red';
|
||||
element.value = running ? _('Running') : _('Not Running');
|
||||
}
|
||||
return element;
|
||||
}
|
||||
|
||||
return view.extend({
|
||||
load: function () {
|
||||
return Promise.all([
|
||||
uci.load('mihomo'),
|
||||
mihomo.appVersion(),
|
||||
mihomo.coreVersion(),
|
||||
mihomo.status(),
|
||||
mihomo.listProfiles()
|
||||
]);
|
||||
},
|
||||
render: function (data) {
|
||||
const subscriptions = uci.sections('mihomo', 'subscription');
|
||||
const appVersion = data[1];
|
||||
const coreVersion = data[2];
|
||||
const running = data[3];
|
||||
const profiles = data[4];
|
||||
|
||||
let m, s, o;
|
||||
|
||||
m = new form.Map('mihomo', _('MihomoTProxy'), `${_('Transparent Proxy with Mihomo on OpenWrt.')} <a href="https://github.com/morytyann/OpenWrt-mihomo/wiki" target="_blank">${_('How To Use')}</a>`);
|
||||
|
||||
s = m.section(form.NamedSection, 'status', 'status', _('Status'));
|
||||
|
||||
o = s.option(form.Value, '_app_version', _('App Version'));
|
||||
o.readonly = true;
|
||||
o.load = function () {
|
||||
return appVersion.trim();
|
||||
};
|
||||
o.write = function () { };
|
||||
|
||||
o = s.option(form.Value, '_core_version', _('Core Version'));
|
||||
o.readonly = true;
|
||||
o.load = function () {
|
||||
return coreVersion.trim();
|
||||
};
|
||||
o.write = function () { };
|
||||
|
||||
o = s.option(form.DummyValue, '_core_status', _('Core Status'));
|
||||
o.cfgvalue = function () {
|
||||
return renderStatus(running);
|
||||
};
|
||||
poll.add(function () {
|
||||
return L.resolveDefault(mihomo.status()).then(function (running) {
|
||||
updateStatus(document.getElementById('core_status'), running);
|
||||
});
|
||||
});
|
||||
|
||||
o = s.option(form.Button, 'reload', '-');
|
||||
o.inputstyle = 'action';
|
||||
o.inputtitle = _('Reload Service');
|
||||
o.onclick = function () {
|
||||
return mihomo.reload();
|
||||
};
|
||||
|
||||
o = s.option(form.Button, 'restart', '-');
|
||||
o.inputstyle = 'negative';
|
||||
o.inputtitle = _('Restart Service');
|
||||
o.onclick = function () {
|
||||
return mihomo.restart();
|
||||
};
|
||||
|
||||
o = s.option(form.Button, 'update_dashboard', '-');
|
||||
o.inputstyle = 'positive';
|
||||
o.inputtitle = _('Update Dashboard');
|
||||
o.onclick = function () {
|
||||
return mihomo.callMihomoAPI('POST', '/upgrade/ui');
|
||||
};
|
||||
|
||||
o = s.option(form.Button, 'open_dashboard', '-');
|
||||
o.inputtitle = _('Open Dashboard');
|
||||
o.onclick = function () {
|
||||
return mihomo.openDashboard();
|
||||
};
|
||||
|
||||
s = m.section(form.NamedSection, 'config', 'config', _('App Config'));
|
||||
|
||||
o = s.option(form.Flag, 'enabled', _('Enable'));
|
||||
o.rmempty = false;
|
||||
|
||||
o = s.option(form.ListValue, 'profile', _('Choose Profile'));
|
||||
o.optional = true;
|
||||
|
||||
for (const profile of profiles) {
|
||||
o.value('file:' + profile.name, _('File:') + profile.name);
|
||||
};
|
||||
|
||||
for (const subscription of subscriptions) {
|
||||
o.value('subscription:' + subscription['.name'], _('Subscription:') + subscription.name);
|
||||
};
|
||||
|
||||
o = s.option(form.Value, 'start_delay', _('Start Delay'));
|
||||
o.datatype = 'uinteger';
|
||||
o.placeholder = '0';
|
||||
|
||||
o = s.option(form.Flag, 'scheduled_restart', _('Scheduled Restart'));
|
||||
o.rmempty = false;
|
||||
|
||||
o = s.option(form.Value, 'cron_expression', _('Cron Expression'));
|
||||
o.retain = true;
|
||||
o.rmempty = false;
|
||||
o.depends('scheduled_restart', '1');
|
||||
|
||||
o = s.option(form.Flag, 'test_profile', _('Test Profile'));
|
||||
o.rmempty = false;
|
||||
|
||||
o = s.option(form.Flag, 'fast_reload', _('Fast Reload'));
|
||||
o.rmempty = false;
|
||||
|
||||
s = m.section(form.NamedSection, 'config', 'config', _('Core Environment Variable Config'));
|
||||
|
||||
o = s.option(form.Flag, 'disable_safe_path_check', _('Disable Safe Path Check'));
|
||||
o.ucisection = 'env';
|
||||
o.rmempty = false;
|
||||
|
||||
o = s.option(form.Flag, 'disable_loopback_detector', _('Disable Loopback Detector'));
|
||||
o.ucisection = 'env';
|
||||
o.rmempty = false;
|
||||
|
||||
o = s.option(form.Flag, 'disable_quic_go_gso', _('Disable GSO of quic-go'));
|
||||
o.ucisection = 'env';
|
||||
o.rmempty = false;
|
||||
|
||||
o = s.option(form.Flag, 'disable_quic_go_ecn', _('Disable ECN of quic-go'));
|
||||
o.ucisection = 'env';
|
||||
o.rmempty = false;
|
||||
|
||||
return m.render();
|
||||
}
|
||||
});
|
@ -1,70 +0,0 @@
|
||||
'use strict';
|
||||
'require form';
|
||||
'require view';
|
||||
'require uci';
|
||||
'require fs';
|
||||
'require tools.mihomo as mihomo'
|
||||
|
||||
return view.extend({
|
||||
load: function () {
|
||||
return Promise.all([
|
||||
uci.load('mihomo'),
|
||||
mihomo.listProfiles()
|
||||
]);
|
||||
},
|
||||
render: function (data) {
|
||||
const subscriptions = uci.sections('mihomo', 'subscription');
|
||||
const profiles = data[1];
|
||||
|
||||
let m, s, o;
|
||||
|
||||
m = new form.Map('mihomo');
|
||||
|
||||
s = m.section(form.NamedSection, 'editor', 'editor', _('Editor'));
|
||||
|
||||
o = s.option(form.ListValue, '_file', _('Choose File'));
|
||||
o.optional = true;
|
||||
|
||||
for (const profile of profiles) {
|
||||
o.value(mihomo.profilesDir + '/' + profile.name, _('File:') + profile.name);
|
||||
};
|
||||
|
||||
for (const subscription of subscriptions) {
|
||||
o.value(mihomo.subscriptionsDir + '/' + subscription['.name'] + '.yaml', _('Subscription:') + subscription.name);
|
||||
};
|
||||
|
||||
o.value(mihomo.mixinFilePath, _('File for Mixin'));
|
||||
o.value(mihomo.runProfilePath, _('Profile for Startup'));
|
||||
o.value(mihomo.reservedIPNFT, _('File for Reserved IP'));
|
||||
o.value(mihomo.reservedIP6NFT, _('File for Reserved IP6'));
|
||||
|
||||
o.write = function (section_id, formvalue) {
|
||||
return true;
|
||||
};
|
||||
o.onchange = function (event, section_id, value) {
|
||||
return L.resolveDefault(fs.read_direct(value), '').then(function (content) {
|
||||
m.lookupOption('mihomo.editor._file_content')[0].getUIElement('editor').setValue(content);
|
||||
});
|
||||
};
|
||||
|
||||
o = s.option(form.TextValue, '_file_content',);
|
||||
o.rows = 25;
|
||||
o.wrap = false;
|
||||
o.write = function (section_id, formvalue) {
|
||||
const path = m.lookupOption('mihomo.editor._file')[0].formvalue('editor');
|
||||
return fs.write(path, formvalue);
|
||||
};
|
||||
o.remove = function (section_id) {
|
||||
const path = m.lookupOption('mihomo.editor._file')[0].formvalue('editor');
|
||||
return fs.write(path);
|
||||
};
|
||||
|
||||
return m.render();
|
||||
},
|
||||
handleSaveApply: function (ev, mode) {
|
||||
return this.handleSave(ev).finally(function () {
|
||||
return mode === '0' ? mihomo.reload() : mihomo.restart();
|
||||
});
|
||||
},
|
||||
handleReset: null
|
||||
});
|
@ -1,97 +0,0 @@
|
||||
'use strict';
|
||||
'require form';
|
||||
'require view';
|
||||
'require uci';
|
||||
'require poll';
|
||||
'require tools.mihomo as mihomo';
|
||||
|
||||
return view.extend({
|
||||
load: function () {
|
||||
return Promise.all([
|
||||
uci.load('mihomo'),
|
||||
mihomo.getAppLog(),
|
||||
mihomo.getCoreLog()
|
||||
]);
|
||||
},
|
||||
render: function (data) {
|
||||
const appLog = data[1];
|
||||
const coreLog = data[2];
|
||||
|
||||
let m, s, o;
|
||||
|
||||
m = new form.Map('mihomo');
|
||||
|
||||
s = m.section(form.NamedSection, 'log', 'log', _('Log'));
|
||||
|
||||
s.tab('app_log', _('App Log'));
|
||||
|
||||
o = s.taboption('app_log', form.Button, 'clear_app_log');
|
||||
o.inputstyle = 'negative';
|
||||
o.inputtitle = _('Clear Log');
|
||||
o.onclick = function () {
|
||||
m.lookupOption('mihomo.log._app_log')[0].getUIElement('log').setValue('');
|
||||
return mihomo.clearAppLog();
|
||||
};
|
||||
|
||||
o = s.taboption('app_log', form.TextValue, '_app_log');
|
||||
o.rows = 25;
|
||||
o.wrap = false;
|
||||
o.load = function (section_id) {
|
||||
return appLog;
|
||||
};
|
||||
o.write = function (section_id, formvalue) {
|
||||
return true;
|
||||
};
|
||||
poll.add(L.bind(function () {
|
||||
const option = this;
|
||||
return L.resolveDefault(mihomo.getAppLog()).then(function (log) {
|
||||
option.getUIElement('log').setValue(log);
|
||||
});
|
||||
}, o));
|
||||
|
||||
o = s.taboption('app_log', form.Button, 'scroll_app_log_to_bottom');
|
||||
o.inputtitle = _('Scroll To Bottom');
|
||||
o.onclick = function () {
|
||||
const element = m.lookupOption('mihomo.log._app_log')[0].getUIElement('log').node.firstChild;
|
||||
element.scrollTop = element.scrollHeight;
|
||||
};
|
||||
|
||||
s.tab('core_log', _('Core Log'));
|
||||
|
||||
o = s.taboption('core_log', form.Button, 'clear_core_log');
|
||||
o.inputstyle = 'negative';
|
||||
o.inputtitle = _('Clear Log');
|
||||
o.onclick = function () {
|
||||
m.lookupOption('mihomo.log._core_log')[0].getUIElement('log').setValue('');
|
||||
return mihomo.clearCoreLog();
|
||||
};
|
||||
|
||||
o = s.taboption('core_log', form.TextValue, '_core_log');
|
||||
o.rows = 25;
|
||||
o.wrap = false;
|
||||
o.load = function (section_id) {
|
||||
return coreLog;
|
||||
};
|
||||
o.write = function (section_id, formvalue) {
|
||||
return true;
|
||||
};
|
||||
poll.add(L.bind(function () {
|
||||
const option = this;
|
||||
return L.resolveDefault(mihomo.getCoreLog()).then(function (log) {
|
||||
option.getUIElement('log').setValue(log);
|
||||
});
|
||||
}, o));
|
||||
|
||||
o = s.taboption('core_log', form.Button, 'scroll_core_log_to_bottom');
|
||||
o.inputtitle = _('Scroll To Bottom');
|
||||
o.onclick = function () {
|
||||
const element = m.lookupOption('mihomo.log._core_log')[0].getUIElement('log').node.firstChild;
|
||||
element.scrollTop = element.scrollHeight;
|
||||
};
|
||||
|
||||
return m.render();
|
||||
},
|
||||
handleSaveApply: null,
|
||||
handleSave: null,
|
||||
handleReset: null
|
||||
});
|
@ -1,371 +0,0 @@
|
||||
'use strict';
|
||||
'require form';
|
||||
'require view';
|
||||
'require uci';
|
||||
'require fs';
|
||||
'require poll';
|
||||
'require tools.widgets as widgets';
|
||||
'require tools.mihomo as mihomo';
|
||||
|
||||
return view.extend({
|
||||
load: function () {
|
||||
return Promise.all([
|
||||
uci.load('mihomo')
|
||||
]);
|
||||
},
|
||||
render: function (data) {
|
||||
let m, s, o, so;
|
||||
|
||||
m = new form.Map('mihomo');
|
||||
|
||||
s = m.section(form.NamedSection, 'config', 'config', _('Mixin Config'));
|
||||
|
||||
o = s.option(form.Flag, 'mixin', _('Enable'));
|
||||
o.rmempty = false;
|
||||
|
||||
s = m.section(form.NamedSection, 'mixin', 'mixin', _('Mixin Option'));
|
||||
|
||||
s.tab('general', _('General Config'));
|
||||
|
||||
o = s.taboption('general', form.ListValue, 'log_level', '*' + ' ' + _('Log Level'));
|
||||
o.value('silent');
|
||||
o.value('error');
|
||||
o.value('warning');
|
||||
o.value('info');
|
||||
o.value('debug');
|
||||
|
||||
o = s.taboption('general', form.ListValue, 'mode', '*' + ' ' + _('Mode'));
|
||||
o.value('global', _('Global Mode'));
|
||||
o.value('rule', _('Rule Mode'));
|
||||
o.value('direct', _('Direct Mode'));
|
||||
|
||||
o = s.taboption('general', form.ListValue, 'match_process', '*' + ' ' + _('Match Process'));
|
||||
o.value('strict', _('Auto'));
|
||||
o.value('always', _('Enable'));
|
||||
o.value('off', _('Disable'));
|
||||
|
||||
o = s.taboption('general', widgets.NetworkSelect, 'outbound_interface', '*' + ' ' + _('Outbound Interface'));
|
||||
o.optional = true;
|
||||
|
||||
o = s.taboption('general', form.Flag, 'ipv6', '*' + ' ' + _('IPv6'));
|
||||
o.rmempty = false;
|
||||
|
||||
o = s.taboption('general', form.Flag, 'unify_delay', _('Unify Delay'));
|
||||
o.rmempty = false;
|
||||
|
||||
o = s.taboption('general', form.Flag, 'tcp_concurrent', _('TCP Concurrent'));
|
||||
o.rmempty = false;
|
||||
|
||||
o = s.taboption('general', form.Value, 'tcp_keep_alive_idle', _('TCP Keep Alive Idle'));
|
||||
o.datatype = 'uinteger';
|
||||
o.placeholder = '600';
|
||||
|
||||
o = s.taboption('general', form.Value, 'tcp_keep_alive_interval', _('TCP Keep Alive Interval'));
|
||||
o.datatype = 'uinteger';
|
||||
o.placeholder = '15';
|
||||
|
||||
s.tab('external_control', _('External Control Config'));
|
||||
|
||||
o = s.taboption('external_control', form.Value, 'ui_name', '*' + ' ' + _('UI Name'));
|
||||
|
||||
o = s.taboption('external_control', form.Value, 'ui_url', '*' + ' ' + _('UI Url'));
|
||||
o.rmempty = false;
|
||||
o.value('https://github.com/Zephyruso/zashboard/archive/refs/heads/gh-pages.zip', 'Zashboard');
|
||||
o.value('https://github.com/MetaCubeX/metacubexd/archive/refs/heads/gh-pages.zip', 'MetaCubeXD');
|
||||
o.value('https://github.com/MetaCubeX/Yacd-meta/archive/refs/heads/gh-pages.zip', 'YACD');
|
||||
o.value('https://github.com/MetaCubeX/Razord-meta/archive/refs/heads/gh-pages.zip', 'Razord');
|
||||
|
||||
o = s.taboption('external_control', form.Value, 'api_port', '*' + ' ' + _('API Port'));
|
||||
o.datatype = 'port';
|
||||
o.placeholder = '9090';
|
||||
|
||||
o = s.taboption('external_control', form.Value, 'api_secret', '*' + ' ' + _('API Secret'));
|
||||
o.password = true;
|
||||
o.rmempty = false;
|
||||
|
||||
o = s.taboption('external_control', form.Flag, 'selection_cache', _('Save Proxy Selection'));
|
||||
o.rmempty = false;
|
||||
|
||||
s.tab('inbound', _('Inbound Config'));
|
||||
|
||||
o = s.taboption('inbound', form.Flag, 'allow_lan', '*' + ' ' + _('Allow Lan'));
|
||||
o.rmempty = false;
|
||||
|
||||
o = s.taboption('inbound', form.Value, 'http_port', '*' + ' ' + _('HTTP Port'));
|
||||
o.datatype = 'port';
|
||||
o.placeholder = '8080';
|
||||
|
||||
o = s.taboption('inbound', form.Value, 'socks_port', '*' + ' ' + _('SOCKS Port'));
|
||||
o.datatype = 'port';
|
||||
o.placeholder = '1080';
|
||||
|
||||
o = s.taboption('inbound', form.Value, 'mixed_port', '*' + ' ' + _('Mixed Port'));
|
||||
o.datatype = 'port';
|
||||
o.placeholder = '7890';
|
||||
|
||||
o = s.taboption('inbound', form.Value, 'redir_port', '*' + ' ' + _('Redirect Port'));
|
||||
o.datatype = 'port';
|
||||
o.placeholder = '7891';
|
||||
|
||||
o = s.taboption('inbound', form.Value, 'tproxy_port', '*' + ' ' + _('TPROXY Port'));
|
||||
o.datatype = 'port';
|
||||
o.placeholder = '7892';
|
||||
|
||||
o = s.taboption('inbound', form.Flag, 'authentication', '*' + ' ' + _('Overwrite Authentication'));
|
||||
o.rmempty = false;
|
||||
|
||||
o = s.taboption('inbound', form.SectionValue, '_authentications', form.TableSection, 'authentication', _('Edit Authentications'));
|
||||
o.retain = true;
|
||||
o.depends('authentication', '1');
|
||||
|
||||
o.subsection.addremove = true;
|
||||
o.subsection.anonymous = true;
|
||||
o.subsection.sortable = true;
|
||||
|
||||
so = o.subsection.option(form.Flag, 'enabled', _('Enable'));
|
||||
so.rmempty = false;
|
||||
|
||||
so = o.subsection.option(form.Value, 'username', _('Username'));
|
||||
so.rmempty = false;
|
||||
|
||||
so = o.subsection.option(form.Value, 'password', _('Password'));
|
||||
so.password = true;
|
||||
so.rmempty = false;
|
||||
|
||||
s.tab('tun', _('TUN Config'));
|
||||
|
||||
o = s.taboption('tun', form.Value, 'tun_device', '*' + ' ' + _('Device'));
|
||||
o.rmempty = false;
|
||||
|
||||
o = s.taboption('tun', form.ListValue, 'tun_stack', '*' + ' ' + _('Stack'));
|
||||
o.value('system', 'System');
|
||||
o.value('gvisor', 'gVisor');
|
||||
o.value('mixed', 'Mixed');
|
||||
|
||||
o = s.taboption('tun', form.Value, 'tun_mtu', '*' + ' ' + _('MTU'));
|
||||
o.datatype = 'uinteger';
|
||||
o.placeholder = '9000';
|
||||
|
||||
o = s.taboption('tun', form.Flag, 'tun_gso', '*' + ' ' + _('GSO'));
|
||||
o.rmempty = false;
|
||||
|
||||
o = s.taboption('tun', form.Value, 'tun_gso_max_size', '*' + ' ' + _('GSO Max Size'));
|
||||
o.datatype = 'uinteger';
|
||||
o.placeholder = '65536';
|
||||
o.retain = true;
|
||||
o.depends('tun_gso', '1');
|
||||
|
||||
o = s.taboption('tun', form.Flag, 'tun_dns_hijack', '*' + ' ' + _('Overwrite DNS Hijack'));
|
||||
o.rmempty = false;
|
||||
|
||||
o = s.taboption('tun', form.DynamicList, 'tun_dns_hijacks', '*' + ' ' + _('Edit DNS Hijacks'));
|
||||
o.retain = true;
|
||||
o.rmempty = false;
|
||||
o.depends('tun_dns_hijack', '1');
|
||||
o.value('tcp://any:53');
|
||||
o.value('udp://any:53');
|
||||
|
||||
o = s.taboption('tun', form.Flag, 'tun_endpoint_independent_nat', '*' + ' ' + _('Endpoint Independent NAT'));
|
||||
o.rmempty = false;
|
||||
|
||||
s.tab('dns', _('DNS Config'));
|
||||
|
||||
o = s.taboption('dns', form.Value, 'dns_port', '*' + ' ' + _('DNS Port'));
|
||||
o.datatype = 'port';
|
||||
o.placeholder = '1053';
|
||||
|
||||
o = s.taboption('dns', form.ListValue, 'dns_mode', '*' + ' ' + _('DNS Mode'));
|
||||
o.value('normal', 'Normal');
|
||||
o.value('fake-ip', 'Fake-IP');
|
||||
o.value('redir-host', 'Redir-Host');
|
||||
|
||||
o = s.taboption('dns', form.Value, 'fake_ip_range', '*' + ' ' + _('Fake-IP Range'));
|
||||
o.datatype = 'cidr4';
|
||||
o.placeholder = '198.18.0.1/16';
|
||||
o.retain = true;
|
||||
o.depends('dns_mode', 'fake-ip');
|
||||
|
||||
o = s.taboption('dns', form.Flag, 'fake_ip_filter', _('Overwrite Fake-IP Filter'));
|
||||
o.retain = true;
|
||||
o.rmempty = false;
|
||||
o.depends('dns_mode', 'fake-ip');
|
||||
|
||||
o = s.taboption('dns', form.DynamicList, 'fake_ip_filters', _('Edit Fake-IP Filters'));
|
||||
o.retain = true;
|
||||
o.depends({ 'dns_mode': 'fake-ip', 'fake_ip_filter': '1' });
|
||||
|
||||
o = s.taboption('dns', form.ListValue, 'fake_ip_filter_mode', _('Fake-IP Filter Mode'));
|
||||
o.retain = true;
|
||||
o.value('blacklist', _('Block Mode'));
|
||||
o.value('whitelist', _('Allow Mode'));
|
||||
o.depends({ 'dns_mode': 'fake-ip', 'fake_ip_filter': '1' });
|
||||
|
||||
o = s.taboption('dns', form.Flag, 'fake_ip_cache', _('Fake-IP Cache'));
|
||||
o.retain = true;
|
||||
o.rmempty = false;
|
||||
o.depends('dns_mode', 'fake-ip');
|
||||
|
||||
o = s.taboption('dns', form.Flag, 'dns_respect_rules', _('Respect Rules'));
|
||||
o.rmempty = false;
|
||||
|
||||
o = s.taboption('dns', form.Flag, 'dns_doh_prefer_http3', _('DoH Prefer HTTP/3'));
|
||||
o.rmempty = false;
|
||||
|
||||
o = s.taboption('dns', form.Flag, 'dns_ipv6', _('IPv6'));
|
||||
o.rmempty = false;
|
||||
|
||||
o = s.taboption('dns', form.Flag, 'dns_system_hosts', _('Use System Hosts'));
|
||||
o.rmempty = false;
|
||||
|
||||
o = s.taboption('dns', form.Flag, 'dns_hosts', _('Use Hosts'));
|
||||
o.rmempty = false;
|
||||
|
||||
o = s.taboption('dns', form.Flag, 'hosts', _('Overwrite Hosts'));
|
||||
o.rmempty = false;
|
||||
|
||||
o = s.taboption('dns', form.SectionValue, '_hosts', form.TableSection, 'hosts', _('Edit Hosts'));
|
||||
o.retain = true;
|
||||
o.depends('hosts', '1');
|
||||
|
||||
o.subsection.addremove = true;
|
||||
o.subsection.anonymous = true;
|
||||
o.subsection.sortable = true;
|
||||
|
||||
so = o.subsection.option(form.Flag, 'enabled', _('Enable'));
|
||||
so.rmempty = false;
|
||||
|
||||
so = o.subsection.option(form.Value, 'domain_name', _('Domain Name'));
|
||||
so.rmempty = false;
|
||||
|
||||
so = o.subsection.option(form.DynamicList, 'ip', _('IP'));
|
||||
|
||||
o = s.taboption('dns', form.Flag, 'dns_nameserver', _('Overwrite Nameserver'));
|
||||
o.rmempty = false;
|
||||
|
||||
o = s.taboption('dns', form.SectionValue, '_dns_nameservers', form.TableSection, 'nameserver', _('Edit Nameservers'));
|
||||
o.retain = true;
|
||||
o.depends('dns_nameserver', '1');
|
||||
|
||||
o.subsection.addremove = true;
|
||||
o.subsection.anonymous = true;
|
||||
o.subsection.sortable = true;
|
||||
|
||||
so = o.subsection.option(form.Flag, 'enabled', _('Enable'));
|
||||
so.rmempty = false;
|
||||
|
||||
so = o.subsection.option(form.ListValue, 'type', _('Type'));
|
||||
so.value('default-nameserver');
|
||||
so.value('proxy-server-nameserver');
|
||||
so.value('direct-nameserver');
|
||||
so.value('nameserver');
|
||||
so.value('fallback');
|
||||
|
||||
so = o.subsection.option(form.DynamicList, 'nameserver', _('Nameserver'));
|
||||
|
||||
o = s.taboption('dns', form.Flag, 'dns_nameserver_policy', _('Overwrite Nameserver Policy'));
|
||||
o.rmempty = false;
|
||||
|
||||
o = s.taboption('dns', form.SectionValue, '_dns_nameserver_policies', form.TableSection, 'nameserver_policy', _('Edit Nameserver Policies'));
|
||||
o.retain = true;
|
||||
o.depends('dns_nameserver_policy', '1');
|
||||
|
||||
o.subsection.addremove = true;
|
||||
o.subsection.anonymous = true;
|
||||
o.subsection.sortable = true;
|
||||
|
||||
so = o.subsection.option(form.Flag, 'enabled', _('Enable'));
|
||||
so.rmempty = false;
|
||||
|
||||
so = o.subsection.option(form.Value, 'matcher', _('Matcher'));
|
||||
so.rmempty = false;
|
||||
|
||||
so = o.subsection.option(form.DynamicList, 'nameserver', _('Nameserver'));
|
||||
|
||||
s.tab('sniffer', _('Sniffer Config'));
|
||||
|
||||
o = s.taboption('sniffer', form.Flag, 'sniffer', _('Enable'));
|
||||
o.rmempty = false;
|
||||
|
||||
o = s.taboption('sniffer', form.Flag, 'sniffer_sniff_dns_mapping', _('Sniff Redir-Host'));
|
||||
o.rmempty = false;
|
||||
|
||||
o = s.taboption('sniffer', form.Flag, 'sniffer_sniff_pure_ip', _('Sniff Pure IP'));
|
||||
o.rmempty = false;
|
||||
|
||||
o = s.taboption('sniffer', form.Flag, 'sniffer_overwrite_destination', _('Overwrite Destination'));
|
||||
o.rmempty = false;
|
||||
|
||||
o = s.taboption('sniffer', form.Flag, 'sniffer_force_domain_name', _('Overwrite Force Sniff Domain Name'));
|
||||
o.rmempty = false;
|
||||
|
||||
o = s.taboption('sniffer', form.DynamicList, 'sniffer_force_domain_names', _('Force Sniff Domain Name'));
|
||||
o.depends('sniffer_force_domain_name', '1');
|
||||
|
||||
o = s.taboption('sniffer', form.Flag, 'sniffer_ignore_domain_name', _('Overwrite Ignore Sniff Domain Name'));
|
||||
o.rmempty = false;
|
||||
|
||||
o = s.taboption('sniffer', form.DynamicList, 'sniffer_ignore_domain_names', _('Ignore Sniff Domain Name'));
|
||||
o.depends('sniffer_ignore_domain_name', '1');
|
||||
|
||||
o = s.taboption('sniffer', form.Flag, 'sniffer_sniff', _('Overwrite Sniff By Protocol'));
|
||||
o.rmempty = false;
|
||||
|
||||
o = s.taboption('sniffer', form.SectionValue, '_sniffer_sniffs', form.TableSection, 'sniff', _('Sniff By Protocol'));
|
||||
o.subsection.anonymous = true;
|
||||
o.subsection.addremove = false;
|
||||
o.depends('sniffer_sniff', '1');
|
||||
|
||||
so = o.subsection.option(form.Flag, 'enabled', _('Enable'));
|
||||
so.rmempty = false;
|
||||
|
||||
so = o.subsection.option(form.ListValue, 'protocol', _('Protocol'));
|
||||
so.value('HTTP');
|
||||
so.value('TLS');
|
||||
so.value('QUIC');
|
||||
so.readonly = true;
|
||||
|
||||
so = o.subsection.option(form.DynamicList, 'port', _('Port'));
|
||||
so.datatype = 'portrange';
|
||||
|
||||
so = o.subsection.option(form.Flag, 'overwrite_destination', _('Overwrite Destination'));
|
||||
so.rmempty = false;
|
||||
|
||||
s.tab('geox', _('GeoX Config'));
|
||||
|
||||
o = s.taboption('geox', form.ListValue, 'geoip_format', _('GeoIP Format'));
|
||||
o.value('dat', 'DAT');
|
||||
o.value('mmdb', 'MMDB');
|
||||
|
||||
o = s.taboption('geox', form.ListValue, 'geodata_loader', _('GeoData Loader'));
|
||||
o.value('standard', _('Standard Loader'));
|
||||
o.value('memconservative', _('Memory Conservative Loader'));
|
||||
|
||||
o = s.taboption('geox', form.Value, 'geosite_url', _('GeoSite Url'));
|
||||
o.rmempty = false;
|
||||
|
||||
o = s.taboption('geox', form.Value, 'geoip_mmdb_url', _('GeoIP(MMDB) Url'));
|
||||
o.rmempty = false;
|
||||
|
||||
o = s.taboption('geox', form.Value, 'geoip_dat_url', _('GeoIP(DAT) Url'));
|
||||
o.rmempty = false;
|
||||
|
||||
o = s.taboption('geox', form.Value, 'geoip_asn_url', _('GeoIP(ASN) Url'));
|
||||
o.rmempty = false;
|
||||
|
||||
o = s.taboption('geox', form.Flag, 'geox_auto_update', _('GeoX Auto Update'));
|
||||
o.rmempty = false;
|
||||
|
||||
o = s.taboption('geox', form.Value, 'geox_update_interval', _('GeoX Update Interval'));
|
||||
o.datatype = 'uinteger';
|
||||
o.placeholder = '24';
|
||||
o.retain = true;
|
||||
o.depends('geox_auto_update', '1');
|
||||
|
||||
s.tab('mixin_file_content', _('Mixin File Content'));
|
||||
|
||||
o = s.taboption('mixin_file_content', form.Flag, 'mixin_file_content', '*' + ' ' + _('Enable'), _('Please go to the editor tab to edit the file for mixin'));
|
||||
o.rmempty = false;
|
||||
|
||||
return m.render();
|
||||
}
|
||||
});
|
@ -1,86 +0,0 @@
|
||||
'use strict';
|
||||
'require form';
|
||||
'require view';
|
||||
'require uci';
|
||||
'require tools.mihomo as mihomo';
|
||||
|
||||
return view.extend({
|
||||
load: function () {
|
||||
return Promise.all([
|
||||
uci.load('mihomo')
|
||||
]);
|
||||
},
|
||||
render: function (data) {
|
||||
let m, s, o, so;
|
||||
|
||||
m = new form.Map('mihomo');
|
||||
|
||||
s = m.section(form.NamedSection, 'config', 'config', _('Profile'));
|
||||
|
||||
o = s.option(form.FileUpload, '_upload_profile', _('Upload Profile'));
|
||||
o.browser = true;
|
||||
o.enable_download = true;
|
||||
o.root_directory = mihomo.profilesDir;
|
||||
o.write = function (section_id, formvalue) {
|
||||
return true;
|
||||
};
|
||||
|
||||
s = m.section(form.GridSection, 'subscription', _('Subscription'));
|
||||
s.addremove = true;
|
||||
s.anonymous = true;
|
||||
s.sortable = true;
|
||||
s.modaltitle = _('Edit Subscription');
|
||||
|
||||
o = s.option(form.Value, 'name', _('Subscription Name'));
|
||||
o.rmempty = false;
|
||||
|
||||
o = s.option(form.Value, 'used', _('Used'));
|
||||
o.modalonly = false;
|
||||
o.optional = true;
|
||||
o.readonly = true;
|
||||
|
||||
o = s.option(form.Value, 'total', _('Total'));
|
||||
o.modalonly = false;
|
||||
o.optional = true;
|
||||
o.readonly = true;
|
||||
|
||||
o = s.option(form.Value, 'expire', _('Expire At'));
|
||||
o.modalonly = false;
|
||||
o.optional = true;
|
||||
o.readonly = true;
|
||||
|
||||
o = s.option(form.Value, 'update', _('Update At'));
|
||||
o.modalonly = false;
|
||||
o.optional = true;
|
||||
o.readonly = true;
|
||||
|
||||
o = s.option(form.Button, 'update_subscription');
|
||||
o.editable = true;
|
||||
o.inputstyle = 'positive';
|
||||
o.inputtitle = _('Update');
|
||||
o.modalonly = false;
|
||||
o.onclick = function (_, section_id) {
|
||||
return mihomo.updateSubscription(section_id);
|
||||
};
|
||||
|
||||
o = s.option(form.Value, 'url', _('Subscription Url'));
|
||||
o.modalonly = true;
|
||||
o.rmempty = false;
|
||||
|
||||
o = s.option(form.Value, 'user_agent', _('User Agent'));
|
||||
o.default = 'clash';
|
||||
o.modalonly = true;
|
||||
o.rmempty = false;
|
||||
o.value('clash');
|
||||
o.value('clash.meta');
|
||||
o.value('mihomo');
|
||||
|
||||
o = s.option(form.ListValue, 'prefer', _('Prefer'));
|
||||
o.default = 'remote';
|
||||
o.modalonly = true;
|
||||
o.value('remote', _('Remote'));
|
||||
o.value('local', _('Local'));
|
||||
|
||||
return m.render();
|
||||
}
|
||||
});
|
@ -1,149 +0,0 @@
|
||||
'use strict';
|
||||
'require form';
|
||||
'require view';
|
||||
'require uci';
|
||||
'require network';
|
||||
'require tools.widgets as widgets';
|
||||
'require tools.mihomo as mihomo';
|
||||
|
||||
return view.extend({
|
||||
load: function () {
|
||||
return Promise.all([
|
||||
uci.load('mihomo'),
|
||||
network.getHostHints(),
|
||||
mihomo.getUsers(),
|
||||
mihomo.getGroups()
|
||||
]);
|
||||
},
|
||||
render: function (data) {
|
||||
const hosts = data[1].hosts;
|
||||
const users = data[2];
|
||||
const groups = data[3];
|
||||
|
||||
let m, s, o;
|
||||
|
||||
m = new form.Map('mihomo');
|
||||
|
||||
s = m.section(form.NamedSection, 'proxy', 'proxy', _('Proxy Config'));
|
||||
|
||||
s.tab('transparent_proxy', _('Transparent Proxy'));
|
||||
|
||||
o = s.taboption('transparent_proxy', form.Flag, 'transparent_proxy', _('Enable'));
|
||||
o.rmempty = false;
|
||||
|
||||
o = s.taboption('transparent_proxy', form.ListValue, 'tcp_transparent_proxy_mode', _('TCP Proxy Mode'));
|
||||
o.value('redirect', _('Redirect Mode'));
|
||||
o.value('tproxy', _('TPROXY Mode'));
|
||||
o.value('tun', _('TUN Mode'));
|
||||
|
||||
o = s.taboption('transparent_proxy', form.ListValue, 'udp_transparent_proxy_mode', _('UDP Proxy Mode'));
|
||||
o.value('tproxy', _('TPROXY Mode'));
|
||||
o.value('tun', _('TUN Mode'));
|
||||
|
||||
o = s.taboption('transparent_proxy', form.Flag, 'ipv4_dns_hijack', _('IPv4 DNS Hijack'));
|
||||
o.rmempty = false;
|
||||
|
||||
o = s.taboption('transparent_proxy', form.Flag, 'ipv6_dns_hijack', _('IPv6 DNS Hijack'));
|
||||
o.rmempty = false;
|
||||
|
||||
o = s.taboption('transparent_proxy', form.Flag, 'ipv4_proxy', _('IPv4 Proxy'));
|
||||
o.rmempty = false;
|
||||
|
||||
o = s.taboption('transparent_proxy', form.Flag, 'ipv6_proxy', _('IPv6 Proxy'));
|
||||
o.rmempty = false;
|
||||
|
||||
o = s.taboption('transparent_proxy', form.Flag, 'router_proxy', _('Router Proxy'));
|
||||
o.rmempty = false;
|
||||
|
||||
o = s.taboption('transparent_proxy', form.Flag, 'lan_proxy', _('Lan Proxy'));
|
||||
o.rmempty = false;
|
||||
|
||||
s.tab('access_control', _('Access Control'));
|
||||
|
||||
o = s.taboption('access_control', form.ListValue, 'access_control_mode', _('Mode'));
|
||||
o.value('all', _('All Mode'));
|
||||
o.value('allow', _('Allow Mode'));
|
||||
o.value('block', _('Block Mode'));
|
||||
|
||||
o = s.taboption('access_control', form.DynamicList, 'acl_ip', 'IP');
|
||||
o.datatype = 'ipmask4';
|
||||
o.retain = true;
|
||||
o.depends('access_control_mode', 'allow');
|
||||
o.depends('access_control_mode', 'block');
|
||||
|
||||
for (const mac in hosts) {
|
||||
const host = hosts[mac];
|
||||
for (const ip of host.ipaddrs) {
|
||||
const hint = host.name || mac;
|
||||
o.value(ip, hint ? '%s (%s)'.format(ip, hint) : ip);
|
||||
};
|
||||
};
|
||||
|
||||
o = s.taboption('access_control', form.DynamicList, 'acl_ip6', 'IP6');
|
||||
o.datatype = 'ipmask6';
|
||||
o.retain = true;
|
||||
o.depends('access_control_mode', 'allow');
|
||||
o.depends('access_control_mode', 'block');
|
||||
|
||||
for (const mac in hosts) {
|
||||
const host = hosts[mac];
|
||||
for (const ip of host.ip6addrs) {
|
||||
const hint = host.name || mac;
|
||||
o.value(ip, hint ? '%s (%s)'.format(ip, hint) : ip);
|
||||
};
|
||||
};
|
||||
|
||||
o = s.taboption('access_control', form.DynamicList, 'acl_mac', 'MAC');
|
||||
o.datatype = 'macaddr';
|
||||
o.retain = true;
|
||||
o.depends('access_control_mode', 'allow');
|
||||
o.depends('access_control_mode', 'block');
|
||||
|
||||
for (const mac in hosts) {
|
||||
const host = hosts[mac];
|
||||
const hint = host.name || host.ipaddrs[0];
|
||||
o.value(mac, hint ? '%s (%s)'.format(mac, hint) : mac);
|
||||
};
|
||||
|
||||
o = s.taboption('access_control', widgets.NetworkSelect, 'acl_interface', _('Interface'));
|
||||
o.multiple = true;
|
||||
o.optional = true;
|
||||
o.retain = true;
|
||||
o.depends('access_control_mode', 'allow');
|
||||
o.depends('access_control_mode', 'block');
|
||||
|
||||
s.tab('bypass', _('Bypass'));
|
||||
|
||||
o = s.taboption('bypass', form.MultiValue, 'bypass_user', _('Bypass User'));
|
||||
o.create = true;
|
||||
|
||||
for (const user of users) {
|
||||
o.value(user);
|
||||
};
|
||||
|
||||
o = s.taboption('bypass', form.MultiValue, 'bypass_group', _('Bypass Group'));
|
||||
o.create = true;
|
||||
|
||||
for (const group of groups) {
|
||||
o.value(group);
|
||||
};
|
||||
|
||||
o = s.taboption('bypass', form.Flag, 'bypass_china_mainland_ip', _('Bypass China Mainland IP'));
|
||||
o.rmempty = false;
|
||||
|
||||
o = s.taboption('bypass', form.Value, 'proxy_tcp_dport', _('Destination TCP Port to Proxy'));
|
||||
o.rmempty = false;
|
||||
o.value('0-65535', _('All Port'));
|
||||
o.value('21 22 80 110 143 194 443 465 853 993 995 8080 8443', _('Commonly Used Port'));
|
||||
|
||||
o = s.taboption('bypass', form.Value, 'proxy_udp_dport', _('Destination UDP Port to Proxy'));
|
||||
o.rmempty = false;
|
||||
o.value('0-65535', _('All Port'));
|
||||
o.value('123 443 8443', _('Commonly Used Port'));
|
||||
|
||||
o = s.taboption('bypass', form.DynamicList, 'bypass_dscp', _('Bypass DSCP'));
|
||||
o.datatype = 'range(0, 63)';
|
||||
|
||||
return m.render();
|
||||
}
|
||||
});
|
@ -1,735 +0,0 @@
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=UTF-8"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:78
|
||||
msgid "API Port"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:82
|
||||
msgid "API Secret"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:61
|
||||
msgid "Access Control"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:64
|
||||
msgid "All Mode"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:136
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:141
|
||||
msgid "All Port"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:91
|
||||
msgid "Allow Lan"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:198
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:65
|
||||
msgid "Allow Mode"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/app.js:94
|
||||
#: applications/luci-app-mihomo/root/usr/share/luci/menu.d/luci-app-mihomo.json:13
|
||||
msgid "App Config"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/log.js:26
|
||||
msgid "App Log"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/app.js:43
|
||||
msgid "App Version"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:43
|
||||
msgid "Auto"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:197
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:66
|
||||
msgid "Block Mode"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:115
|
||||
msgid "Bypass"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:131
|
||||
msgid "Bypass China Mainland IP"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:144
|
||||
msgid "Bypass DSCP"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:124
|
||||
msgid "Bypass Group"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:117
|
||||
msgid "Bypass User"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/editor.js:25
|
||||
msgid "Choose File"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/app.js:99
|
||||
msgid "Choose Profile"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/log.js:30
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/log.js:63
|
||||
msgid "Clear Log"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:137
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:142
|
||||
msgid "Commonly Used Port"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/app.js:128
|
||||
msgid "Core Environment Variable Config"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/log.js:59
|
||||
msgid "Core Log"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/app.js:57
|
||||
msgid "Core Status"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/app.js:50
|
||||
msgid "Core Version"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/app.js:117
|
||||
msgid "Cron Expression"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:169
|
||||
msgid "DNS Config"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:175
|
||||
msgid "DNS Mode"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:171
|
||||
msgid "DNS Port"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:134
|
||||
msgid "Destination TCP Port to Proxy"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:139
|
||||
msgid "Destination UDP Port to Proxy"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:137
|
||||
msgid "Device"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:40
|
||||
msgid "Direct Mode"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:45
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/app.js:142
|
||||
msgid "Disable ECN of quic-go"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/app.js:138
|
||||
msgid "Disable GSO of quic-go"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/app.js:134
|
||||
msgid "Disable Loopback Detector"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/app.js:130
|
||||
msgid "Disable Safe Path Check"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:209
|
||||
msgid "DoH Prefer HTTP/3"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:235
|
||||
msgid "Domain Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:117
|
||||
msgid "Edit Authentications"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:161
|
||||
msgid "Edit DNS Hijacks"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:191
|
||||
msgid "Edit Fake-IP Filters"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:224
|
||||
msgid "Edit Hosts"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:266
|
||||
msgid "Edit Nameserver Policies"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:243
|
||||
msgid "Edit Nameservers"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/profile.js:32
|
||||
msgid "Edit Subscription"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/editor.js:23
|
||||
#: applications/luci-app-mihomo/root/usr/share/luci/menu.d/luci-app-mihomo.json:45
|
||||
msgid "Editor"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/app.js:96
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:23
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:44
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:125
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:232
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:251
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:274
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:284
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:316
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:364
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:31
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:166
|
||||
msgid "Endpoint Independent NAT"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/profile.js:47
|
||||
msgid "Expire At"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:67
|
||||
msgid "External Control Config"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:201
|
||||
msgid "Fake-IP Cache"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:195
|
||||
msgid "Fake-IP Filter Mode"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:180
|
||||
msgid "Fake-IP Range"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/app.js:125
|
||||
msgid "Fast Reload"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/editor.js:36
|
||||
msgid "File for Mixin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/editor.js:38
|
||||
msgid "File for Reserved IP"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/editor.js:39
|
||||
msgid "File for Reserved IP6"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/app.js:103
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/editor.js:29
|
||||
msgid "File:"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:299
|
||||
msgid "Force Sniff Domain Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:149
|
||||
msgid "GSO"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:152
|
||||
msgid "GSO Max Size"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:28
|
||||
msgid "General Config"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:337
|
||||
msgid "GeoData Loader"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:333
|
||||
msgid "GeoIP Format"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:350
|
||||
msgid "GeoIP(ASN) Url"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:347
|
||||
msgid "GeoIP(DAT) Url"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:344
|
||||
msgid "GeoIP(MMDB) Url"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:341
|
||||
msgid "GeoSite Url"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:353
|
||||
msgid "GeoX Auto Update"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:331
|
||||
msgid "GeoX Config"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:356
|
||||
msgid "GeoX Update Interval"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:38
|
||||
msgid "Global Mode"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/root/usr/share/rpcd/acl.d/luci-app-mihomo.json:3
|
||||
msgid "Grant access to mihomo procedures"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:94
|
||||
msgid "HTTP Port"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/app.js:39
|
||||
msgid "How To Use"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:238
|
||||
msgid "IP"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:43
|
||||
msgid "IPv4 DNS Hijack"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:49
|
||||
msgid "IPv4 Proxy"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:50
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:212
|
||||
msgid "IPv6"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:46
|
||||
msgid "IPv6 DNS Hijack"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:52
|
||||
msgid "IPv6 Proxy"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:305
|
||||
msgid "Ignore Sniff Domain Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:89
|
||||
msgid "Inbound Config"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:108
|
||||
msgid "Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:58
|
||||
msgid "Lan Proxy"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/profile.js:82
|
||||
msgid "Local"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/log.js:24
|
||||
#: applications/luci-app-mihomo/root/usr/share/luci/menu.d/luci-app-mihomo.json:53
|
||||
msgid "Log"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:30
|
||||
msgid "Log Level"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:145
|
||||
msgid "MTU"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:42
|
||||
msgid "Match Process"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:277
|
||||
msgid "Matcher"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:339
|
||||
msgid "Memory Conservative Loader"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/app.js:39
|
||||
#: applications/luci-app-mihomo/root/usr/share/luci/menu.d/luci-app-mihomo.json:3
|
||||
msgid "MihomoTProxy"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:102
|
||||
msgid "Mixed Port"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:21
|
||||
#: applications/luci-app-mihomo/root/usr/share/luci/menu.d/luci-app-mihomo.json:29
|
||||
msgid "Mixin Config"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:362
|
||||
msgid "Mixin File Content"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:26
|
||||
msgid "Mixin Option"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:37
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:63
|
||||
msgid "Mode"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:261
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:280
|
||||
msgid "Nameserver"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/app.js:15
|
||||
msgid "Not Running"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/app.js:89
|
||||
msgid "Open Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:47
|
||||
msgid "Outbound Interface"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:114
|
||||
msgid "Overwrite Authentication"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:158
|
||||
msgid "Overwrite DNS Hijack"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:293
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:328
|
||||
msgid "Overwrite Destination"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:186
|
||||
msgid "Overwrite Fake-IP Filter"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:296
|
||||
msgid "Overwrite Force Sniff Domain Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:221
|
||||
msgid "Overwrite Hosts"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:302
|
||||
msgid "Overwrite Ignore Sniff Domain Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:240
|
||||
msgid "Overwrite Nameserver"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:263
|
||||
msgid "Overwrite Nameserver Policy"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:308
|
||||
msgid "Overwrite Sniff By Protocol"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:131
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:364
|
||||
msgid "Please go to the editor tab to edit the file for mixin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:325
|
||||
msgid "Port"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/profile.js:78
|
||||
msgid "Prefer"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/profile.js:18
|
||||
#: applications/luci-app-mihomo/root/usr/share/luci/menu.d/luci-app-mihomo.json:21
|
||||
msgid "Profile"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/editor.js:37
|
||||
msgid "Profile for Startup"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:319
|
||||
msgid "Protocol"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:27
|
||||
#: applications/luci-app-mihomo/root/usr/share/luci/menu.d/luci-app-mihomo.json:37
|
||||
msgid "Proxy Config"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:35
|
||||
msgid "Redirect Mode"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:106
|
||||
msgid "Redirect Port"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/app.js:69
|
||||
msgid "Reload Service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/profile.js:81
|
||||
msgid "Remote"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:206
|
||||
msgid "Respect Rules"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/app.js:76
|
||||
msgid "Restart Service"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:55
|
||||
msgid "Router Proxy"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:39
|
||||
msgid "Rule Mode"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/app.js:15
|
||||
msgid "Running"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:98
|
||||
msgid "SOCKS Port"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:86
|
||||
msgid "Save Proxy Selection"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/app.js:114
|
||||
msgid "Scheduled Restart"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/log.js:53
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/log.js:86
|
||||
msgid "Scroll To Bottom"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/tools/mihomo.js:100
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/tools/mihomo.js:118
|
||||
msgid "Service is not running."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:311
|
||||
msgid "Sniff By Protocol"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:290
|
||||
msgid "Sniff Pure IP"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:287
|
||||
msgid "Sniff Redir-Host"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:282
|
||||
msgid "Sniffer Config"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:140
|
||||
msgid "Stack"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:338
|
||||
msgid "Standard Loader"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/app.js:110
|
||||
msgid "Start Delay"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/app.js:41
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/profile.js:28
|
||||
msgid "Subscription"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/profile.js:34
|
||||
msgid "Subscription Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/profile.js:66
|
||||
msgid "Subscription Url"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/app.js:107
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/editor.js:33
|
||||
msgid "Subscription:"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:56
|
||||
msgid "TCP Concurrent"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:59
|
||||
msgid "TCP Keep Alive Idle"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:63
|
||||
msgid "TCP Keep Alive Interval"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:34
|
||||
msgid "TCP Proxy Mode"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:36
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:40
|
||||
msgid "TPROXY Mode"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:110
|
||||
msgid "TPROXY Port"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:135
|
||||
msgid "TUN Config"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:37
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:41
|
||||
msgid "TUN Mode"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/app.js:122
|
||||
msgid "Test Profile"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/profile.js:42
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:29
|
||||
msgid "Transparent Proxy"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/app.js:39
|
||||
msgid "Transparent Proxy with Mihomo on OpenWrt."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:254
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:39
|
||||
msgid "UDP Proxy Mode"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:69
|
||||
msgid "UI Name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:71
|
||||
msgid "UI Url"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:53
|
||||
msgid "Unify Delay"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/tools/mihomo.js:80
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/tools/mihomo.js:84
|
||||
msgid "Unknown"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/profile.js:60
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/profile.js:52
|
||||
msgid "Update At"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/app.js:83
|
||||
msgid "Update Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/profile.js:20
|
||||
msgid "Upload Profile"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:218
|
||||
msgid "Use Hosts"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:215
|
||||
msgid "Use System Hosts"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/profile.js:37
|
||||
msgid "Used"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/profile.js:70
|
||||
msgid "User Agent"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:128
|
||||
msgid "Username"
|
||||
msgstr ""
|
@ -1 +0,0 @@
|
||||
zh_Hans
|
@ -1,742 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: zh_Hans\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:78
|
||||
msgid "API Port"
|
||||
msgstr "API 端口"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:82
|
||||
msgid "API Secret"
|
||||
msgstr "API 密钥"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:61
|
||||
msgid "Access Control"
|
||||
msgstr "访问控制"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:64
|
||||
msgid "All Mode"
|
||||
msgstr "全部模式"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:136
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:141
|
||||
msgid "All Port"
|
||||
msgstr "全部端口"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:91
|
||||
msgid "Allow Lan"
|
||||
msgstr "允许局域网访问"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:198
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:65
|
||||
msgid "Allow Mode"
|
||||
msgstr "白名单模式"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/app.js:94
|
||||
#: applications/luci-app-mihomo/root/usr/share/luci/menu.d/luci-app-mihomo.json:13
|
||||
msgid "App Config"
|
||||
msgstr "插件配置"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/log.js:26
|
||||
msgid "App Log"
|
||||
msgstr "插件日志"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/app.js:43
|
||||
msgid "App Version"
|
||||
msgstr "插件版本"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:43
|
||||
msgid "Auto"
|
||||
msgstr "自动"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:197
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:66
|
||||
msgid "Block Mode"
|
||||
msgstr "黑名单模式"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:115
|
||||
msgid "Bypass"
|
||||
msgstr "绕过"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:131
|
||||
msgid "Bypass China Mainland IP"
|
||||
msgstr "绕过中国大陆 IP"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:144
|
||||
msgid "Bypass DSCP"
|
||||
msgstr "绕过 DSCP"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:124
|
||||
msgid "Bypass Group"
|
||||
msgstr "绕过用户组"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:117
|
||||
msgid "Bypass User"
|
||||
msgstr "绕过用户"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/editor.js:25
|
||||
msgid "Choose File"
|
||||
msgstr "选择文件"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/app.js:99
|
||||
msgid "Choose Profile"
|
||||
msgstr "选择配置文件"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/log.js:30
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/log.js:63
|
||||
msgid "Clear Log"
|
||||
msgstr "清空日志"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:137
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:142
|
||||
msgid "Commonly Used Port"
|
||||
msgstr "常用端口"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/app.js:128
|
||||
msgid "Core Environment Variable Config"
|
||||
msgstr "核心环境变量配置"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/log.js:59
|
||||
msgid "Core Log"
|
||||
msgstr "核心日志"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/app.js:57
|
||||
msgid "Core Status"
|
||||
msgstr "核心状态"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/app.js:50
|
||||
msgid "Core Version"
|
||||
msgstr "核心版本"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/app.js:117
|
||||
msgid "Cron Expression"
|
||||
msgstr "Cron 表达式"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:169
|
||||
msgid "DNS Config"
|
||||
msgstr "DNS 配置"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:175
|
||||
msgid "DNS Mode"
|
||||
msgstr "DNS 模式"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:171
|
||||
msgid "DNS Port"
|
||||
msgstr "DNS 端口"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:134
|
||||
msgid "Destination TCP Port to Proxy"
|
||||
msgstr "要代理的 TCP 目标端口"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:139
|
||||
msgid "Destination UDP Port to Proxy"
|
||||
msgstr "要代理的 UDP 目标端口"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:137
|
||||
msgid "Device"
|
||||
msgstr "设备名称"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:40
|
||||
msgid "Direct Mode"
|
||||
msgstr "直连模式"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:45
|
||||
msgid "Disable"
|
||||
msgstr "禁用"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/app.js:142
|
||||
msgid "Disable ECN of quic-go"
|
||||
msgstr "禁用 quic-go 的显式拥塞通知"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/app.js:138
|
||||
msgid "Disable GSO of quic-go"
|
||||
msgstr "禁用 quic-go 的通用分段卸载"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/app.js:134
|
||||
msgid "Disable Loopback Detector"
|
||||
msgstr "禁用回环检测"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/app.js:130
|
||||
msgid "Disable Safe Path Check"
|
||||
msgstr "禁用安全路径检查"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:209
|
||||
msgid "DoH Prefer HTTP/3"
|
||||
msgstr "DoH 优先 HTTP/3"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:235
|
||||
msgid "Domain Name"
|
||||
msgstr "域名"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:117
|
||||
msgid "Edit Authentications"
|
||||
msgstr "编辑身份验证"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:161
|
||||
msgid "Edit DNS Hijacks"
|
||||
msgstr "编辑 DNS 劫持"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:191
|
||||
msgid "Edit Fake-IP Filters"
|
||||
msgstr "编辑 Fake-IP 过滤列表"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:224
|
||||
msgid "Edit Hosts"
|
||||
msgstr "编辑 Hosts"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:266
|
||||
msgid "Edit Nameserver Policies"
|
||||
msgstr "编辑 DNS 服务器查询策略"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:243
|
||||
msgid "Edit Nameservers"
|
||||
msgstr "编辑 DNS 服务器"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/profile.js:32
|
||||
msgid "Edit Subscription"
|
||||
msgstr "编辑订阅"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/editor.js:23
|
||||
#: applications/luci-app-mihomo/root/usr/share/luci/menu.d/luci-app-mihomo.json:45
|
||||
msgid "Editor"
|
||||
msgstr "编辑器"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/app.js:96
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:23
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:44
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:125
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:232
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:251
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:274
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:284
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:316
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:364
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:31
|
||||
msgid "Enable"
|
||||
msgstr "启用"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:166
|
||||
msgid "Endpoint Independent NAT"
|
||||
msgstr "独立于端点的 NAT"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/profile.js:47
|
||||
msgid "Expire At"
|
||||
msgstr "到期时间"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:67
|
||||
msgid "External Control Config"
|
||||
msgstr "外部控制配置"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:201
|
||||
msgid "Fake-IP Cache"
|
||||
msgstr "Fake-IP 缓存"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:195
|
||||
msgid "Fake-IP Filter Mode"
|
||||
msgstr "Fake-IP 过滤模式"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:180
|
||||
msgid "Fake-IP Range"
|
||||
msgstr "Fake-IP 范围"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/app.js:125
|
||||
msgid "Fast Reload"
|
||||
msgstr "快速重载"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/editor.js:36
|
||||
msgid "File for Mixin"
|
||||
msgstr "用于混入的文件"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/editor.js:38
|
||||
msgid "File for Reserved IP"
|
||||
msgstr "IPv4 保留地址"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/editor.js:39
|
||||
msgid "File for Reserved IP6"
|
||||
msgstr "IPv6 保留地址"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/app.js:103
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/editor.js:29
|
||||
msgid "File:"
|
||||
msgstr "文件:"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:299
|
||||
msgid "Force Sniff Domain Name"
|
||||
msgstr "强制嗅探的域名"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:149
|
||||
msgid "GSO"
|
||||
msgstr "通用分段卸载"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:152
|
||||
msgid "GSO Max Size"
|
||||
msgstr "分段最大长度"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:28
|
||||
msgid "General Config"
|
||||
msgstr "全局配置"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:337
|
||||
msgid "GeoData Loader"
|
||||
msgstr "GeoData 加载器"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:333
|
||||
msgid "GeoIP Format"
|
||||
msgstr "GeoIP 格式"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:350
|
||||
msgid "GeoIP(ASN) Url"
|
||||
msgstr "GeoIP(ASN) 下载地址"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:347
|
||||
msgid "GeoIP(DAT) Url"
|
||||
msgstr "GeoIP(DAT) 下载地址"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:344
|
||||
msgid "GeoIP(MMDB) Url"
|
||||
msgstr "GeoIP(MMDB) 下载地址"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:341
|
||||
msgid "GeoSite Url"
|
||||
msgstr "GeoSite 下载地址"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:353
|
||||
msgid "GeoX Auto Update"
|
||||
msgstr "定时更新GeoX文件"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:331
|
||||
msgid "GeoX Config"
|
||||
msgstr "GeoX 配置"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:356
|
||||
msgid "GeoX Update Interval"
|
||||
msgstr "GeoX 文件更新间隔"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:38
|
||||
msgid "Global Mode"
|
||||
msgstr "全局模式"
|
||||
|
||||
#: applications/luci-app-mihomo/root/usr/share/rpcd/acl.d/luci-app-mihomo.json:3
|
||||
msgid "Grant access to mihomo procedures"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:94
|
||||
msgid "HTTP Port"
|
||||
msgstr "HTTP 端口"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/app.js:39
|
||||
msgid "How To Use"
|
||||
msgstr "使用说明"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:238
|
||||
msgid "IP"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:43
|
||||
msgid "IPv4 DNS Hijack"
|
||||
msgstr "IPv4 DNS 劫持"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:49
|
||||
msgid "IPv4 Proxy"
|
||||
msgstr "IPv4 代理"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:50
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:212
|
||||
msgid "IPv6"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:46
|
||||
msgid "IPv6 DNS Hijack"
|
||||
msgstr "IPv6 DNS 劫持"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:52
|
||||
msgid "IPv6 Proxy"
|
||||
msgstr "IPv6 代理"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:305
|
||||
msgid "Ignore Sniff Domain Name"
|
||||
msgstr "忽略嗅探的域名"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:89
|
||||
msgid "Inbound Config"
|
||||
msgstr "入站配置"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:108
|
||||
msgid "Interface"
|
||||
msgstr "接口"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:58
|
||||
msgid "Lan Proxy"
|
||||
msgstr "局域网代理"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/profile.js:82
|
||||
msgid "Local"
|
||||
msgstr "本地"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/log.js:24
|
||||
#: applications/luci-app-mihomo/root/usr/share/luci/menu.d/luci-app-mihomo.json:53
|
||||
msgid "Log"
|
||||
msgstr "日志"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:30
|
||||
msgid "Log Level"
|
||||
msgstr "日志级别"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:145
|
||||
msgid "MTU"
|
||||
msgstr "最大传输单元"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:42
|
||||
msgid "Match Process"
|
||||
msgstr "匹配进程"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:277
|
||||
msgid "Matcher"
|
||||
msgstr "匹配"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:339
|
||||
msgid "Memory Conservative Loader"
|
||||
msgstr "为内存受限设备优化的加载器"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/app.js:39
|
||||
#: applications/luci-app-mihomo/root/usr/share/luci/menu.d/luci-app-mihomo.json:3
|
||||
msgid "MihomoTProxy"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:102
|
||||
msgid "Mixed Port"
|
||||
msgstr "混合端口"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:21
|
||||
#: applications/luci-app-mihomo/root/usr/share/luci/menu.d/luci-app-mihomo.json:29
|
||||
msgid "Mixin Config"
|
||||
msgstr "混入配置"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:362
|
||||
msgid "Mixin File Content"
|
||||
msgstr "混入文件内容"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:26
|
||||
msgid "Mixin Option"
|
||||
msgstr "混入选项"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:37
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:63
|
||||
msgid "Mode"
|
||||
msgstr "模式"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:261
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:280
|
||||
msgid "Nameserver"
|
||||
msgstr "DNS 服务器"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/app.js:15
|
||||
msgid "Not Running"
|
||||
msgstr "未在运行"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/app.js:89
|
||||
msgid "Open Dashboard"
|
||||
msgstr "打开面板"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:47
|
||||
msgid "Outbound Interface"
|
||||
msgstr "出站接口"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:114
|
||||
msgid "Overwrite Authentication"
|
||||
msgstr "覆盖身份验证"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:158
|
||||
msgid "Overwrite DNS Hijack"
|
||||
msgstr "覆盖 DNS 劫持"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:293
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:328
|
||||
msgid "Overwrite Destination"
|
||||
msgstr "将嗅探结果作为连接目标"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:186
|
||||
msgid "Overwrite Fake-IP Filter"
|
||||
msgstr "覆盖 Fake-IP 过滤列表"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:296
|
||||
msgid "Overwrite Force Sniff Domain Name"
|
||||
msgstr "覆盖强制嗅探的域名"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:221
|
||||
msgid "Overwrite Hosts"
|
||||
msgstr "覆盖 Hosts"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:302
|
||||
msgid "Overwrite Ignore Sniff Domain Name"
|
||||
msgstr "覆盖忽略嗅探的域名"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:240
|
||||
msgid "Overwrite Nameserver"
|
||||
msgstr "覆盖 DNS 服务器"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:263
|
||||
msgid "Overwrite Nameserver Policy"
|
||||
msgstr "覆盖 DNS 服务器查询策略"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:308
|
||||
msgid "Overwrite Sniff By Protocol"
|
||||
msgstr "覆盖按协议嗅探"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:131
|
||||
msgid "Password"
|
||||
msgstr "密码"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:364
|
||||
msgid "Please go to the editor tab to edit the file for mixin"
|
||||
msgstr "请前往编辑器标签编辑用于混入的文件"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:325
|
||||
msgid "Port"
|
||||
msgstr "端口"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/profile.js:78
|
||||
msgid "Prefer"
|
||||
msgstr "优先"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/profile.js:18
|
||||
#: applications/luci-app-mihomo/root/usr/share/luci/menu.d/luci-app-mihomo.json:21
|
||||
msgid "Profile"
|
||||
msgstr "配置文件"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/editor.js:37
|
||||
msgid "Profile for Startup"
|
||||
msgstr "用于启动的配置文件"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:319
|
||||
msgid "Protocol"
|
||||
msgstr "协议"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:27
|
||||
#: applications/luci-app-mihomo/root/usr/share/luci/menu.d/luci-app-mihomo.json:37
|
||||
msgid "Proxy Config"
|
||||
msgstr "代理配置"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:35
|
||||
msgid "Redirect Mode"
|
||||
msgstr "Redirect 模式"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:106
|
||||
msgid "Redirect Port"
|
||||
msgstr "Redirect 端口"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/app.js:69
|
||||
msgid "Reload Service"
|
||||
msgstr "重载服务"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/profile.js:81
|
||||
msgid "Remote"
|
||||
msgstr "远程"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:206
|
||||
msgid "Respect Rules"
|
||||
msgstr "遵循分流规则"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/app.js:76
|
||||
msgid "Restart Service"
|
||||
msgstr "重启服务"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:55
|
||||
msgid "Router Proxy"
|
||||
msgstr "路由器代理"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:39
|
||||
msgid "Rule Mode"
|
||||
msgstr "规则模式"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/app.js:15
|
||||
msgid "Running"
|
||||
msgstr "运行中"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:98
|
||||
msgid "SOCKS Port"
|
||||
msgstr "SOCKS 端口"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:86
|
||||
msgid "Save Proxy Selection"
|
||||
msgstr "保存节点/策略组选择"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/app.js:114
|
||||
msgid "Scheduled Restart"
|
||||
msgstr "定时重启"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/log.js:53
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/log.js:86
|
||||
msgid "Scroll To Bottom"
|
||||
msgstr "滚动到底部"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/tools/mihomo.js:100
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/tools/mihomo.js:118
|
||||
msgid "Service is not running."
|
||||
msgstr "服务未在运行。"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:311
|
||||
msgid "Sniff By Protocol"
|
||||
msgstr "按协议嗅探"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:290
|
||||
msgid "Sniff Pure IP"
|
||||
msgstr "嗅探纯 IP 连接"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:287
|
||||
msgid "Sniff Redir-Host"
|
||||
msgstr "嗅探 Redir-Host 流量"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:282
|
||||
msgid "Sniffer Config"
|
||||
msgstr "嗅探器配置"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:140
|
||||
msgid "Stack"
|
||||
msgstr "栈"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:338
|
||||
msgid "Standard Loader"
|
||||
msgstr "标准加载器"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/app.js:110
|
||||
msgid "Start Delay"
|
||||
msgstr "启动延迟"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/app.js:41
|
||||
msgid "Status"
|
||||
msgstr "状态"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/profile.js:28
|
||||
msgid "Subscription"
|
||||
msgstr "订阅"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/profile.js:34
|
||||
msgid "Subscription Name"
|
||||
msgstr "订阅名称"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/profile.js:66
|
||||
msgid "Subscription Url"
|
||||
msgstr "订阅链接"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/app.js:107
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/editor.js:33
|
||||
msgid "Subscription:"
|
||||
msgstr "订阅:"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:56
|
||||
msgid "TCP Concurrent"
|
||||
msgstr "TCP 并发"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:59
|
||||
msgid "TCP Keep Alive Idle"
|
||||
msgstr "TCP Keep Alive 空闲"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:63
|
||||
msgid "TCP Keep Alive Interval"
|
||||
msgstr "TCP Keep Alive 间隔"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:34
|
||||
msgid "TCP Proxy Mode"
|
||||
msgstr "TCP 代理模式"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:36
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:40
|
||||
msgid "TPROXY Mode"
|
||||
msgstr "TPROXY 模式"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:110
|
||||
msgid "TPROXY Port"
|
||||
msgstr "TPROXY 端口"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:135
|
||||
msgid "TUN Config"
|
||||
msgstr "TUN 配置"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:37
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:41
|
||||
msgid "TUN Mode"
|
||||
msgstr "TUN 模式"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/app.js:122
|
||||
msgid "Test Profile"
|
||||
msgstr "检查配置文件"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/profile.js:42
|
||||
msgid "Total"
|
||||
msgstr "总量"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:29
|
||||
msgid "Transparent Proxy"
|
||||
msgstr "透明代理"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/app.js:39
|
||||
msgid "Transparent Proxy with Mihomo on OpenWrt."
|
||||
msgstr "在 OpenWrt 上使用 Mihomo 进行透明代理。"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:254
|
||||
msgid "Type"
|
||||
msgstr "类型"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/proxy.js:39
|
||||
msgid "UDP Proxy Mode"
|
||||
msgstr "UDP 代理模式"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:69
|
||||
msgid "UI Name"
|
||||
msgstr "UI 名称"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:71
|
||||
msgid "UI Url"
|
||||
msgstr "UI 下载地址"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:53
|
||||
msgid "Unify Delay"
|
||||
msgstr "统一延迟"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/tools/mihomo.js:80
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/tools/mihomo.js:84
|
||||
msgid "Unknown"
|
||||
msgstr "未知"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/profile.js:60
|
||||
msgid "Update"
|
||||
msgstr "更新"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/profile.js:52
|
||||
msgid "Update At"
|
||||
msgstr "更新时间"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/app.js:83
|
||||
msgid "Update Dashboard"
|
||||
msgstr "更新面板"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/profile.js:20
|
||||
msgid "Upload Profile"
|
||||
msgstr "上传配置文件"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:218
|
||||
msgid "Use Hosts"
|
||||
msgstr "使用 Hosts"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:215
|
||||
msgid "Use System Hosts"
|
||||
msgstr "使用系统的 Hosts"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/profile.js:37
|
||||
msgid "Used"
|
||||
msgstr "已使用"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/profile.js:70
|
||||
msgid "User Agent"
|
||||
msgstr "用户代理(UA)"
|
||||
|
||||
#: applications/luci-app-mihomo/htdocs/luci-static/resources/view/mihomo/mixin.js:128
|
||||
msgid "Username"
|
||||
msgstr "用户名"
|
@ -1,4 +0,0 @@
|
||||
#!/bin/sh
|
||||
rm -rf /var/luci-modulecache/; rm -f /var/luci-indexcache;
|
||||
[ -x /etc/init.d/rpcd ] && /etc/init.d/rpcd reload;
|
||||
exit 0
|
@ -1,57 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
. $IPKG_INSTROOT/etc/mihomo/scripts/include.sh
|
||||
|
||||
action=$1
|
||||
shift
|
||||
|
||||
case "$action" in
|
||||
clear_log)
|
||||
case "$1" in
|
||||
app)
|
||||
echo -n > "$APP_LOG_PATH"
|
||||
;;
|
||||
core)
|
||||
echo -n > "$CORE_LOG_PATH"
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
subscription)
|
||||
case "$1" in
|
||||
update)
|
||||
/etc/init.d/mihomo update_subscription "$2"
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
load)
|
||||
case "$1" in
|
||||
profile)
|
||||
yq -M -o json < "$RUN_PROFILE_PATH"
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
service)
|
||||
case "$1" in
|
||||
reload)
|
||||
/etc/init.d/mihomo reload
|
||||
;;
|
||||
restart)
|
||||
/etc/init.d/mihomo restart
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
version)
|
||||
case "$1" in
|
||||
app)
|
||||
if [ -x "/bin/opkg" ]; then
|
||||
opkg list-installed "luci-app-mihomo" | cut -d " " -f 3
|
||||
elif [ -x "/usr/bin/apk" ]; then
|
||||
apk list -I "luci-app-mihomo" | cut -d ' ' -f 1 | cut -d '-' -f 4
|
||||
fi
|
||||
;;
|
||||
core)
|
||||
mihomo -v | grep "Mihomo" | cut -d " " -f 3
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
esac
|
@ -1,60 +0,0 @@
|
||||
{
|
||||
"admin/services/mihomo": {
|
||||
"title": "MihomoTProxy",
|
||||
"action": {
|
||||
"type": "firstchild"
|
||||
},
|
||||
"depends": {
|
||||
"acl": [ "luci-app-mihomo" ],
|
||||
"uci": { "mihomo": true }
|
||||
}
|
||||
},
|
||||
"admin/services/mihomo/config": {
|
||||
"title": "App Config",
|
||||
"order": 10,
|
||||
"action": {
|
||||
"type": "view",
|
||||
"path": "mihomo/app"
|
||||
}
|
||||
},
|
||||
"admin/services/mihomo/profile": {
|
||||
"title": "Profile",
|
||||
"order": 20,
|
||||
"action": {
|
||||
"type": "view",
|
||||
"path": "mihomo/profile"
|
||||
}
|
||||
},
|
||||
"admin/services/mihomo/mixin": {
|
||||
"title": "Mixin Config",
|
||||
"order": 30,
|
||||
"action": {
|
||||
"type": "view",
|
||||
"path": "mihomo/mixin"
|
||||
}
|
||||
},
|
||||
"admin/services/mihomo/proxy": {
|
||||
"title": "Proxy Config",
|
||||
"order": 40,
|
||||
"action": {
|
||||
"type": "view",
|
||||
"path": "mihomo/proxy"
|
||||
}
|
||||
},
|
||||
"admin/services/mihomo/editor": {
|
||||
"title": "Editor",
|
||||
"order": 50,
|
||||
"action": {
|
||||
"type": "view",
|
||||
"path": "mihomo/editor"
|
||||
}
|
||||
},
|
||||
"admin/services/mihomo/log": {
|
||||
"title": "Log",
|
||||
"order": 60,
|
||||
"action": {
|
||||
"type": "view",
|
||||
"path": "mihomo/log"
|
||||
}
|
||||
}
|
||||
}
|
@ -1,38 +0,0 @@
|
||||
{
|
||||
"luci-app-mihomo": {
|
||||
"description": "Grant access to mihomo procedures",
|
||||
"read": {
|
||||
"uci": [ "mihomo" ],
|
||||
"ubus": {
|
||||
"service": [ "list" ]
|
||||
},
|
||||
"file": {
|
||||
"/etc/passwd": ["read"],
|
||||
"/etc/group": ["read"],
|
||||
"/etc/mihomo/profiles/*.yaml": ["read"],
|
||||
"/etc/mihomo/profiles/*.yml": ["read"],
|
||||
"/etc/mihomo/subscriptions/*.yaml": ["read"],
|
||||
"/etc/mihomo/subscriptions/*.yml": ["read"],
|
||||
"/etc/mihomo/mixin.yaml": ["read"],
|
||||
"/etc/mihomo/run/config.yaml": ["read"],
|
||||
"/etc/mihomo/nftables/reserved_ip.nft": ["read"],
|
||||
"/etc/mihomo/nftables/reserved_ip6.nft": ["read"],
|
||||
"/var/log/mihomo/*.log": ["read"],
|
||||
"/usr/libexec/mihomo-call": ["exec"]
|
||||
}
|
||||
},
|
||||
"write": {
|
||||
"uci": [ "mihomo" ],
|
||||
"file": {
|
||||
"/etc/mihomo/profiles/*.yaml": ["write"],
|
||||
"/etc/mihomo/profiles/*.yml": ["write"],
|
||||
"/etc/mihomo/subscriptions/*.yaml": ["write"],
|
||||
"/etc/mihomo/subscriptions/*.yml": ["write"],
|
||||
"/etc/mihomo/mixin.yaml": ["write"],
|
||||
"/etc/mihomo/run/config.yaml": ["write"],
|
||||
"/etc/mihomo/nftables/reserved_ip.nft": ["write"],
|
||||
"/etc/mihomo/nftables/reserved_ip6.nft": ["write"]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -2039,6 +2039,7 @@ window.addEventListener('load', function() {
|
||||
text-align: center;
|
||||
color: #fff;
|
||||
font-family: 'SimSun', 'Songti SC', '宋体', serif;
|
||||
font-size: 1.1rem;
|
||||
}
|
||||
|
||||
.lyrics-container .highlight {
|
||||
@ -2062,6 +2063,29 @@ window.addEventListener('load', function() {
|
||||
}
|
||||
</style>
|
||||
|
||||
<style>
|
||||
.floating-lyrics {
|
||||
position: fixed;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
top: 53px;
|
||||
background: rgba(0, 0, 0, 0.1);
|
||||
backdrop-filter: blur(10px);
|
||||
color: #FFD700;
|
||||
padding: 10px 15px;
|
||||
border-radius: 10px;
|
||||
font-size: 16px;
|
||||
display: none;
|
||||
display: inline-block;
|
||||
min-width: 100px;
|
||||
max-width: 80%;
|
||||
word-wrap: break-word;
|
||||
white-space: nowrap;
|
||||
z-index: 9999;
|
||||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
|
||||
}
|
||||
</style>
|
||||
<div id="floatingLyrics" class="floating-lyrics"></div>
|
||||
<div class="modal fade" id="audioPlayerModal" tabindex="-1" aria-labelledby="audioPlayerModalLabel" aria-hidden="true" data-bs-backdrop="static" data-bs-keyboard="false">
|
||||
<div class="modal-dialog modal-xl" role="document">
|
||||
<div class="modal-content">
|
||||
@ -2092,6 +2116,7 @@ window.addEventListener('load', function() {
|
||||
</button>
|
||||
<button class="btn btn-outline-primary mt-3 ms-2" type="button" data-bs-toggle="modal" data-bs-target="#urlModal">🔗 定制播放列表</button>
|
||||
<button class="btn btn-outline-primary mt-3 ms-2" id="clearStorageBtn"><i class="fas fa-trash-alt"></i> 清除播放设置</button>
|
||||
<button class="btn btn-outline-primary mt-3 ms-2" id="pinLyricsButton"><i class="fas fa-thumbtack"></i> 桌面歌词</button>
|
||||
<div id="playlistCollapse" class="collapse mt-3">
|
||||
<h3>播放列表</h3>
|
||||
<ul id="trackList" class="list-group"></ul>
|
||||
@ -2112,6 +2137,7 @@ let isReportingTime = false;
|
||||
let isLooping = false;
|
||||
let hasModalShown = false;
|
||||
let lyrics = {};
|
||||
let isPinned = false;
|
||||
|
||||
const logBox = document.createElement('div');
|
||||
logBox.style.position = 'fixed';
|
||||
@ -2564,7 +2590,10 @@ function displayLyrics() {
|
||||
const line = document.createElement('div');
|
||||
line.className = 'lyric-line';
|
||||
line.dataset.time = time;
|
||||
line.textContent = lyrics[time];
|
||||
|
||||
const lyricText = lyrics[time].replace(/\[\d{2}:\d{2}\.\d{3}\]/g, '').trim();
|
||||
|
||||
line.textContent = lyricText;
|
||||
lyricsContainer.appendChild(line);
|
||||
});
|
||||
|
||||
@ -2576,16 +2605,49 @@ function syncLyrics() {
|
||||
const lyricsContainer = document.getElementById('lyricsContainer');
|
||||
const lines = lyricsContainer.querySelectorAll('.lyric-line');
|
||||
|
||||
let currentLine = null;
|
||||
|
||||
lines.forEach(line => {
|
||||
const time = parseFloat(line.dataset.time);
|
||||
if (currentTime >= time) {
|
||||
lines.forEach(l => l.classList.remove('highlight'));
|
||||
line.classList.add('highlight');
|
||||
currentLine = line;
|
||||
line.scrollIntoView({ behavior: 'smooth', block: 'center' });
|
||||
}
|
||||
});
|
||||
|
||||
if (isPinned && currentLine) {
|
||||
const floatingLyrics = document.getElementById('floatingLyrics');
|
||||
floatingLyrics.textContent = currentLine.textContent;
|
||||
floatingLyrics.style.display = 'block';
|
||||
}
|
||||
}
|
||||
|
||||
document.addEventListener('DOMContentLoaded', () => {
|
||||
isPinned = localStorage.getItem('isPinned') === 'true';
|
||||
const floatingLyrics = document.getElementById('floatingLyrics');
|
||||
|
||||
if (isPinned) {
|
||||
floatingLyrics.style.display = 'block';
|
||||
} else {
|
||||
floatingLyrics.style.display = 'none';
|
||||
}
|
||||
});
|
||||
|
||||
document.getElementById('pinLyricsButton').addEventListener('click', () => {
|
||||
isPinned = !isPinned;
|
||||
localStorage.setItem('isPinned', isPinned);
|
||||
|
||||
const floatingLyrics = document.getElementById('floatingLyrics');
|
||||
|
||||
if (isPinned) {
|
||||
floatingLyrics.style.display = 'block';
|
||||
} else {
|
||||
floatingLyrics.style.display = 'none';
|
||||
}
|
||||
});
|
||||
|
||||
document.addEventListener('dblclick', function() {
|
||||
const lastShownTime = localStorage.getItem('lastModalShownTime');
|
||||
const currentTime = new Date().getTime();
|
||||
|
@ -35,7 +35,7 @@ function is_js_luci()
|
||||
end
|
||||
|
||||
function is_old_uci()
|
||||
return sys.call("grep 'require \"uci\"' /usr/lib/lua/luci/model/uci.lua >/dev/null 2>&1") == 0
|
||||
return sys.call("grep -E 'require[ \t]*\"uci\"' /usr/lib/lua/luci/model/uci.lua >/dev/null 2>&1") == 0
|
||||
end
|
||||
|
||||
function set_apply_on_parse(map)
|
||||
|
@ -3,8 +3,8 @@ msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-07-17 15:08+0200\n"
|
||||
"PO-Revision-Date: 2024-04-19 17:04+0000\n"
|
||||
"Last-Translator: ssantos <ssantos@web.de>\n"
|
||||
"PO-Revision-Date: 2025-02-07 23:08+0000\n"
|
||||
"Last-Translator: Ettore Atalan <atalanttore@googlemail.com>\n"
|
||||
"Language-Team: German <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationstransmission/de/>\n"
|
||||
"Language: de\n"
|
||||
@ -12,7 +12,7 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.5-dev\n"
|
||||
"X-Generator: Weblate 5.10-dev\n"
|
||||
|
||||
#: applications/luci-app-transmission/htdocs/luci-static/resources/view/transmission.js:65
|
||||
msgid "Alternative download speed"
|
||||
@ -198,7 +198,7 @@ msgstr "Aus"
|
||||
|
||||
#: applications/luci-app-transmission/htdocs/luci-static/resources/view/transmission.js:38
|
||||
msgid "Open Web Interface"
|
||||
msgstr "Web Oberfläche öffnen"
|
||||
msgstr "Weboberfläche öffnen"
|
||||
|
||||
#: applications/luci-app-transmission/htdocs/luci-static/resources/view/transmission.js:153
|
||||
msgid "PEX enabled"
|
||||
|
14
mihomo/.prepare.sh
Executable file
14
mihomo/.prepare.sh
Executable file
@ -0,0 +1,14 @@
|
||||
#!/bin/bash
|
||||
VERSION="$1"
|
||||
CURDIR="$2"
|
||||
BIN_PATH="$3"
|
||||
|
||||
if [ -d "$CURDIR/.git" ]; then
|
||||
config="$CURDIR/.git/config"
|
||||
else
|
||||
config="$(sed "s|^gitdir:\s*|$CURDIR/|;s|$|/config|" "$CURDIR/.git")"
|
||||
fi
|
||||
[ -n "$(sed -En '/^\[remote /{h;:top;n;/^\[/b;s,(https?://gitcode\.(com|net)),\1,;T top;H;x;s|\n\s*|: |;p;}' "$config")" ] && {
|
||||
echo -e "#!/bin/sh\necho $VERSION" > "$BIN_PATH"
|
||||
}
|
||||
exit 0
|
104
mihomo/Makefile
104
mihomo/Makefile
@ -1,26 +1,31 @@
|
||||
# SPDX-License-Identifier: GPL-2.0
|
||||
#
|
||||
# Copyright (C) 2024-2025 Anya Lin <hukk1996@gmail.com>
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=mihomo
|
||||
PKG_RELEASE:=2
|
||||
PKG_VERSION:=1.19.1
|
||||
PKG_RELEASE:=1
|
||||
|
||||
PKG_SOURCE_PROTO:=git
|
||||
PKG_SOURCE_URL:=https://github.com/MetaCubeX/mihomo.git
|
||||
PKG_SOURCE_DATE:=2025-01-21
|
||||
PKG_SOURCE_VERSION:=b69e52d4d72846b8201a4073ed68c4c332c40db9
|
||||
PKG_MIRROR_HASH:=33ecc27b647a62920d752a877c1a2812d93ed375a332ceac6890b5b070c7aacc
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||
PKG_SOURCE_URL:=https://codeload.github.com/metacubex/mihomo/tar.gz/v$(PKG_VERSION)?
|
||||
PKG_HASH:=cf32a96bea6caeb2769e86e3001da67d332a673fc6db703b5bc1a5d14754daa1
|
||||
|
||||
PKG_LICENSE:=MIT
|
||||
PKG_MAINTAINER:=Joseph Mory <morytyann@gmail.com>
|
||||
PKG_MAINTAINER:=Anya Lin <hukk1996@gmail.com>
|
||||
PKG_LICENSE:=GPL-2.0
|
||||
PKG_LICENSE_FILES:=LICENSE
|
||||
|
||||
PKG_BUILD_DEPENDS:=golang/host
|
||||
PKG_BUILD_PARALLEL:=1
|
||||
PKG_BUILD_FLAGS:=no-mips16
|
||||
|
||||
PKG_BUILD_VERSION:=alpha-b69e52d
|
||||
PKG_BUILD_TIME:=$(shell date -u -Iseconds)
|
||||
|
||||
GO_PKG:=github.com/metacubex/mihomo
|
||||
GO_PKG_LDFLAGS_X:=$(GO_PKG)/constant.Version=$(PKG_BUILD_VERSION) $(GO_PKG)/constant.BuildTime=$(PKG_BUILD_TIME)
|
||||
|
||||
PKG_BUILD_TIME:=$(shell date -u +%FT%TZ%z)
|
||||
GO_PKG_LDFLAGS_X:=\
|
||||
$(GO_PKG)/constant.Version=v$(PKG_VERSION) \
|
||||
$(GO_PKG)/constant.BuildTime=$(PKG_BUILD_TIME)
|
||||
GO_PKG_TAGS:=with_gvisor
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
@ -29,73 +34,24 @@ include $(TOPDIR)/feeds/packages/lang/golang/golang-package.mk
|
||||
define Package/mihomo
|
||||
SECTION:=net
|
||||
CATEGORY:=Network
|
||||
TITLE:=A rule based proxy in Go.
|
||||
TITLE:=Another Mihomo Kernel.
|
||||
URL:=https://wiki.metacubex.one
|
||||
DEPENDS:=$(GO_ARCH_DEPENDS) +ca-bundle +curl +yq firewall4 +ip-full +kmod-inet-diag +kmod-nft-tproxy +kmod-tun
|
||||
USERID:=root:mihomo=7890
|
||||
endef
|
||||
|
||||
define Package/mihomo/description
|
||||
A rule based proxy in Go.
|
||||
endef
|
||||
|
||||
define Package/mihomo/conffiles
|
||||
/etc/config/mihomo
|
||||
/etc/mihomo/mixin.yaml
|
||||
/etc/mihomo/nftables/reserved_ip.nft
|
||||
/etc/mihomo/nftables/reserved_ip6.nft
|
||||
endef
|
||||
|
||||
define Package/mihomo/install
|
||||
$(call GoPackage/Package/Install/Bin,$(1))
|
||||
|
||||
$(INSTALL_DIR) $(1)/etc/mihomo
|
||||
$(INSTALL_DIR) $(1)/etc/mihomo/scripts
|
||||
$(INSTALL_DIR) $(1)/etc/mihomo/nftables
|
||||
$(INSTALL_DIR) $(1)/etc/mihomo/profiles
|
||||
$(INSTALL_DIR) $(1)/etc/mihomo/subscriptions
|
||||
$(INSTALL_DIR) $(1)/etc/mihomo/run
|
||||
$(INSTALL_DIR) $(1)/etc/mihomo/run/ui
|
||||
|
||||
$(INSTALL_DATA) $(CURDIR)/files/mixin.yaml $(1)/etc/mihomo/mixin.yaml
|
||||
|
||||
$(INSTALL_BIN) $(CURDIR)/files/scripts/include.sh $(1)/etc/mihomo/scripts/include.sh
|
||||
$(INSTALL_BIN) $(CURDIR)/files/scripts/firewall_include.sh $(1)/etc/mihomo/scripts/firewall_include.sh
|
||||
|
||||
$(INSTALL_BIN) $(CURDIR)/files/nftables/hijack.nft $(1)/etc/mihomo/nftables/hijack.nft
|
||||
$(INSTALL_BIN) $(CURDIR)/files/nftables/reserved_ip.nft $(1)/etc/mihomo/nftables/reserved_ip.nft
|
||||
$(INSTALL_BIN) $(CURDIR)/files/nftables/reserved_ip6.nft $(1)/etc/mihomo/nftables/reserved_ip6.nft
|
||||
$(INSTALL_BIN) $(CURDIR)/files/nftables/geoip_cn.nft $(1)/etc/mihomo/nftables/geoip_cn.nft
|
||||
$(INSTALL_BIN) $(CURDIR)/files/nftables/geoip6_cn.nft $(1)/etc/mihomo/nftables/geoip6_cn.nft
|
||||
|
||||
$(INSTALL_DIR) $(1)/etc/config
|
||||
$(INSTALL_CONF) $(CURDIR)/files/mihomo.conf $(1)/etc/config/mihomo
|
||||
|
||||
$(INSTALL_DIR) $(1)/etc/init.d
|
||||
$(INSTALL_BIN) $(CURDIR)/files/mihomo.init $(1)/etc/init.d/mihomo
|
||||
|
||||
$(INSTALL_DIR) $(1)/etc/uci-defaults
|
||||
$(INSTALL_BIN) $(CURDIR)/files/uci-defaults/firewall.sh $(1)/etc/uci-defaults/99_firewall_mihomo
|
||||
$(INSTALL_BIN) $(CURDIR)/files/uci-defaults/init.sh $(1)/etc/uci-defaults/99_init_mihomo
|
||||
$(INSTALL_BIN) $(CURDIR)/files/uci-defaults/migrate.sh $(1)/etc/uci-defaults/99_migrate_mihomo
|
||||
|
||||
$(INSTALL_DIR) $(1)/lib/upgrade/keep.d
|
||||
$(INSTALL_DATA) $(CURDIR)/files/mihomo.upgrade $(1)/lib/upgrade/keep.d/mihomo
|
||||
endef
|
||||
|
||||
define Package/mihomo/postrm
|
||||
#!/bin/sh
|
||||
if [ -z $${IPKG_INSTROOT} ]; then
|
||||
uci -q batch <<-EOF > /dev/null
|
||||
del firewall.mihomo
|
||||
commit firewall
|
||||
EOF
|
||||
fi
|
||||
DEPENDS:=$(GO_ARCH_DEPENDS)
|
||||
USERID:=mihomo=7890:mihomo=7890
|
||||
endef
|
||||
|
||||
define Build/Prepare
|
||||
$(Build/Prepare/Default)
|
||||
$(RM) -r $(PKG_BUILD_DIR)/rules/logic_test
|
||||
# rm unit test
|
||||
rm -f $(PKG_BUILD_DIR)/rules/logic_test/logic_test.go
|
||||
endef
|
||||
|
||||
define Package/mihomo/install
|
||||
$(call GoPackage/Package/Install/Bin,$(PKG_INSTALL_DIR))
|
||||
$(CURDIR)/.prepare.sh $(VERSION) $(CURDIR) $(PKG_INSTALL_DIR)/usr/bin/$(PKG_NAME)
|
||||
|
||||
$(INSTALL_DIR) $(1)/usr/bin/
|
||||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/$(PKG_NAME) $(1)/usr/bin/
|
||||
endef
|
||||
|
||||
$(eval $(call GoBinPackage,mihomo))
|
||||
|
@ -1,199 +0,0 @@
|
||||
config status 'status'
|
||||
|
||||
config config 'config'
|
||||
option 'init' '1'
|
||||
option 'enabled' '0'
|
||||
option 'profile' 'subscription:subscription'
|
||||
option 'start_delay' '0'
|
||||
option 'scheduled_restart' '0'
|
||||
option 'cron_expression' '0 3 * * *'
|
||||
option 'test_profile' '1'
|
||||
option 'mixin' '1'
|
||||
|
||||
config proxy 'proxy'
|
||||
option 'transparent_proxy' '1'
|
||||
option 'tcp_transparent_proxy_mode' 'redirect'
|
||||
option 'udp_transparent_proxy_mode' 'tun'
|
||||
option 'ipv4_dns_hijack' '1'
|
||||
option 'ipv6_dns_hijack' '1'
|
||||
option 'ipv4_proxy' '1'
|
||||
option 'ipv6_proxy' '0'
|
||||
option 'router_proxy' '1'
|
||||
option 'lan_proxy' '1'
|
||||
option 'access_control_mode' 'all'
|
||||
option 'acl_ip' ''
|
||||
option 'acl_ip6' ''
|
||||
option 'acl_mac' ''
|
||||
option 'acl_interface' ''
|
||||
list 'bypass_user' 'aria2'
|
||||
list 'bypass_user' 'dnsmasq'
|
||||
list 'bypass_user' 'ftp'
|
||||
list 'bypass_user' 'logd'
|
||||
list 'bypass_user' 'nobody'
|
||||
list 'bypass_user' 'ntp'
|
||||
list 'bypass_user' 'ubus'
|
||||
list 'bypass_group' 'aria2'
|
||||
list 'bypass_group' 'dnsmasq'
|
||||
list 'bypass_group' 'ftp'
|
||||
list 'bypass_group' 'logd'
|
||||
list 'bypass_group' 'nogroup'
|
||||
list 'bypass_group' 'ntp'
|
||||
list 'bypass_group' 'ubus'
|
||||
option 'bypass_china_mainland_ip' '0'
|
||||
option 'proxy_tcp_dport' '0-65535'
|
||||
option 'proxy_udp_dport' '0-65535'
|
||||
|
||||
config subscription 'subscription'
|
||||
option 'name' 'default'
|
||||
option 'url' 'http://example.com/default.yaml'
|
||||
option 'user_agent' 'clash'
|
||||
option 'prefer' 'remote'
|
||||
|
||||
config mixin 'mixin'
|
||||
option 'log_level' 'warning'
|
||||
option 'mode' 'rule'
|
||||
option 'match_process' 'off'
|
||||
option 'outbound_interface' ''
|
||||
option 'ipv6' '0'
|
||||
option 'unify_delay' '1'
|
||||
option 'tcp_concurrent' '1'
|
||||
option 'tcp_keep_alive_idle' '600'
|
||||
option 'tcp_keep_alive_interval' '15'
|
||||
option 'ui_name' ''
|
||||
option 'ui_url' 'https://github.com/Zephyruso/zashboard/archive/refs/heads/gh-pages.zip'
|
||||
option 'api_port' '9090'
|
||||
option 'api_secret' ''
|
||||
option 'selection_cache' '1'
|
||||
option 'allow_lan' '1'
|
||||
option 'http_port' '8080'
|
||||
option 'socks_port' '1080'
|
||||
option 'mixed_port' '7890'
|
||||
option 'redir_port' '7891'
|
||||
option 'tproxy_port' '7892'
|
||||
option 'authentication' '1'
|
||||
option 'tun_device' 'mihomo'
|
||||
option 'tun_stack' 'system'
|
||||
option 'tun_mtu' '9000'
|
||||
option 'tun_gso' '1'
|
||||
option 'tun_gso_max_size' '65536'
|
||||
option 'tun_dns_hijack' '0'
|
||||
list 'tun_dns_hijacks' 'tcp://any:53'
|
||||
list 'tun_dns_hijacks' 'udp://any:53'
|
||||
option 'tun_endpoint_independent_nat' '0'
|
||||
option 'dns_port' '1053'
|
||||
option 'dns_mode' 'fake-ip'
|
||||
option 'fake_ip_range' '198.18.0.1/16'
|
||||
option 'fake_ip_filter' '0'
|
||||
list 'fake_ip_filters' '+.lan'
|
||||
list 'fake_ip_filters' '+.local'
|
||||
option 'fake_ip_cache' '1'
|
||||
option 'dns_respect_rules' '0'
|
||||
option 'dns_doh_prefer_http3' '0'
|
||||
option 'dns_ipv6' '0'
|
||||
option 'dns_system_hosts' '0'
|
||||
option 'dns_hosts' '1'
|
||||
option 'hosts' '0'
|
||||
option 'dns_nameserver' '0'
|
||||
option 'dns_nameserver_policy' '0'
|
||||
option 'sniffer' '0'
|
||||
option 'sniffer_sniff_dns_mapping' '1'
|
||||
option 'sniffer_sniff_pure_ip' '1'
|
||||
option 'sniffer_overwrite_destination' '0'
|
||||
option 'sniffer_force_domain_name' '0'
|
||||
option 'sniffer_force_domain_names' ''
|
||||
option 'sniffer_ignore_domain_name' '0'
|
||||
option 'sniffer_ignore_domain_names' ''
|
||||
option 'sniffer_sniff' '0'
|
||||
option 'geoip_format' 'dat'
|
||||
option 'geodata_loader' 'memconservative'
|
||||
option 'geosite_url' 'https://github.com/MetaCubeX/meta-rules-dat/releases/download/latest/geosite.dat'
|
||||
option 'geoip_mmdb_url' 'https://github.com/MetaCubeX/meta-rules-dat/releases/download/latest/geoip-lite.metadb'
|
||||
option 'geoip_dat_url' 'https://github.com/MetaCubeX/meta-rules-dat/releases/download/latest/geoip-lite.dat'
|
||||
option 'geoip_asn_url' 'https://github.com/MetaCubeX/meta-rules-dat/releases/download/latest/GeoLite2-ASN.mmdb'
|
||||
option 'geox_auto_update' '0'
|
||||
option 'geox_update_interval' '24'
|
||||
option 'mixin_file_content' '0'
|
||||
|
||||
config env 'env'
|
||||
option 'disable_safe_path_check' '0'
|
||||
option 'disable_loopback_detector' '0'
|
||||
option 'disable_quic_go_gso' '0'
|
||||
option 'disable_quic_go_ecn' '0'
|
||||
|
||||
config authentication
|
||||
option 'enabled' '1'
|
||||
option 'username' 'mihomo'
|
||||
option 'password' ''
|
||||
|
||||
config hosts
|
||||
option 'enabled' '0'
|
||||
option 'domain_name' 'localhost'
|
||||
list 'ip' '127.0.0.1'
|
||||
list 'ip' '::1'
|
||||
|
||||
config nameserver
|
||||
option 'enabled' '1'
|
||||
option 'type' 'default-nameserver'
|
||||
list 'nameserver' '223.5.5.5'
|
||||
list 'nameserver' '119.29.29.29'
|
||||
|
||||
config nameserver
|
||||
option 'enabled' '1'
|
||||
option 'type' 'proxy-server-nameserver'
|
||||
list 'nameserver' 'https://dns.alidns.com/dns-query'
|
||||
list 'nameserver' 'https://doh.pub/dns-query'
|
||||
|
||||
config nameserver
|
||||
option 'enabled' '1'
|
||||
option 'type' 'direct-nameserver'
|
||||
list 'nameserver' 'https://dns.alidns.com/dns-query'
|
||||
list 'nameserver' 'https://doh.pub/dns-query'
|
||||
|
||||
config nameserver
|
||||
option 'enabled' '1'
|
||||
option 'type' 'nameserver'
|
||||
list 'nameserver' 'https://dns.alidns.com/dns-query'
|
||||
list 'nameserver' 'https://doh.pub/dns-query'
|
||||
|
||||
config nameserver
|
||||
option 'enabled' '0'
|
||||
option 'type' 'fallback'
|
||||
list 'nameserver' 'https://dns.cloudflare.com/dns-query'
|
||||
list 'nameserver' 'https://dns.google/dns-query'
|
||||
|
||||
config nameserver_policy
|
||||
option 'enabled' '1'
|
||||
option 'matcher' 'geosite:cn,private'
|
||||
list 'nameserver' 'https://dns.alidns.com/dns-query'
|
||||
list 'nameserver' 'https://doh.pub/dns-query'
|
||||
|
||||
config nameserver_policy
|
||||
option 'enabled' '1'
|
||||
option 'matcher' 'geosite:geolocation-!cn'
|
||||
list 'nameserver' 'https://dns.cloudflare.com/dns-query'
|
||||
list 'nameserver' 'https://dns.google/dns-query'
|
||||
|
||||
config sniff
|
||||
option 'enabled' '1'
|
||||
option 'protocol' 'HTTP'
|
||||
list 'port' '80'
|
||||
list 'port' '8080'
|
||||
option 'overwrite_destination' '1'
|
||||
|
||||
config sniff
|
||||
option 'enabled' '1'
|
||||
option 'protocol' 'TLS'
|
||||
list 'port' '443'
|
||||
list 'port' '8443'
|
||||
option 'overwrite_destination' '1'
|
||||
|
||||
config sniff
|
||||
option 'enabled' '1'
|
||||
option 'protocol' 'QUIC'
|
||||
list 'port' '443'
|
||||
list 'port' '8443'
|
||||
option 'overwrite_destination' '1'
|
||||
|
||||
config editor 'editor'
|
||||
|
||||
config log 'log'
|
@ -1,808 +0,0 @@
|
||||
#!/bin/sh /etc/rc.common
|
||||
|
||||
START=99
|
||||
STOP=10
|
||||
USE_PROCD=1
|
||||
|
||||
. "$IPKG_INSTROOT/lib/functions/network.sh"
|
||||
. "$IPKG_INSTROOT/etc/mihomo/scripts/include.sh"
|
||||
|
||||
extra_command 'update_subscription' 'Update subscription by section id'
|
||||
|
||||
boot() {
|
||||
# prepare files
|
||||
prepare_files
|
||||
# load config
|
||||
config_load mihomo
|
||||
# start delay
|
||||
local enabled start_delay
|
||||
config_get_bool enabled "config" "enabled" 0
|
||||
config_get start_delay "config" "start_delay" 0
|
||||
if [[ "$enabled" == 1 && "$start_delay" -gt 0 ]]; then
|
||||
log "App" "Start after $start_delay seconds."
|
||||
sleep "$start_delay"
|
||||
fi
|
||||
# start
|
||||
start
|
||||
}
|
||||
|
||||
start_service() {
|
||||
# prepare files
|
||||
prepare_files
|
||||
# load config
|
||||
config_load mihomo
|
||||
# check if enabled
|
||||
local enabled
|
||||
config_get_bool enabled "config" "enabled" 0
|
||||
if [ "$enabled" == 0 ]; then
|
||||
log "App" "Disabled."
|
||||
log "App" "Exit."
|
||||
return
|
||||
fi
|
||||
# start
|
||||
log "App" "Enabled."
|
||||
log "App" "Start."
|
||||
# get config
|
||||
## app config
|
||||
local scheduled_restart cron_expression profile mixin test_profile fast_reload
|
||||
config_get_bool scheduled_restart "config" "scheduled_restart" 0
|
||||
config_get cron_expression "config" "cron_expression"
|
||||
config_get profile "config" "profile"
|
||||
config_get_bool mixin "config" "mixin" 0
|
||||
config_get_bool test_profile "config" "test_profile" 0
|
||||
config_get_bool fast_reload "config" "fast_reload" 0
|
||||
## proxy config
|
||||
### transparent proxy
|
||||
local tcp_transparent_proxy_mode udp_transparent_proxy_mode
|
||||
config_get_bool transparent_proxy "proxy" "transparent_proxy" 0
|
||||
config_get tcp_transparent_proxy_mode "proxy" "tcp_transparent_proxy_mode" "tproxy"
|
||||
config_get udp_transparent_proxy_mode "proxy" "udp_transparent_proxy_mode" "tproxy"
|
||||
## mixin config
|
||||
### general
|
||||
local mode match_process outbound_interface ipv6 unify_delay tcp_concurrent tcp_keep_alive_idle tcp_keep_alive_interval log_level
|
||||
config_get mode "mixin" "mode" "rule"
|
||||
config_get match_process "mixin" "match_process" "off"
|
||||
config_get outbound_interface "mixin" "outbound_interface"
|
||||
config_get_bool ipv6 "mixin" "ipv6" 0
|
||||
config_get_bool unify_delay "mixin" "unify_delay" 0
|
||||
config_get_bool tcp_concurrent "mixin" "tcp_concurrent" 0
|
||||
config_get tcp_keep_alive_idle "mixin" "tcp_keep_alive_idle" 600
|
||||
config_get tcp_keep_alive_interval "mixin" "tcp_keep_alive_interval" 15
|
||||
config_get log_level "mixin" "log_level" "info"
|
||||
### external control
|
||||
local ui_name ui_url api_port api_secret selection_cache
|
||||
config_get ui_name "mixin" "ui_name"
|
||||
config_get ui_url "mixin" "ui_url"
|
||||
config_get api_port "mixin" "api_port" "9090"
|
||||
config_get api_secret "mixin" "api_secret" "666666"
|
||||
config_get_bool selection_cache "mixin" "selection_cache" 0
|
||||
### inbound
|
||||
local allow_lan http_port socks_port mixed_port redir_port tproxy_port authentication
|
||||
config_get_bool allow_lan "mixin" "allow_lan" 0
|
||||
config_get http_port "mixin" "http_port" "8080"
|
||||
config_get socks_port "mixin" "socks_port" "1080"
|
||||
config_get mixed_port "mixin" "mixed_port" "7890"
|
||||
config_get redir_port "mixin" "redir_port" "7891"
|
||||
config_get tproxy_port "mixin" "tproxy_port" "7892"
|
||||
config_get_bool authentication "mixin" "authentication" 0
|
||||
### tun
|
||||
local tun_device tun_stack tun_mtu tun_gso tun_gso_max_size tun_dns_hijack tun_endpoint_independent_nat
|
||||
config_get tun_device "mixin" "tun_device" "mihomo"
|
||||
config_get tun_stack "mixin" "tun_stack" "system"
|
||||
config_get tun_mtu "mixin" "tun_mtu" "9000"
|
||||
config_get_bool tun_gso "mixin" "tun_gso" 0
|
||||
config_get tun_gso_max_size "mixin" "tun_gso_max_size" "65536"
|
||||
config_get_bool tun_dns_hijack "mixin" "tun_dns_hijack" 0
|
||||
config_get_bool tun_endpoint_independent_nat "mixin" "tun_endpoint_independent_nat" 0
|
||||
### dns
|
||||
local dns_port dns_mode fake_ip_range fake_ip_filter fake_ip_filter_mode fake_ip_cache dns_respect_rules dns_doh_prefer_http3 dns_ipv6 dns_system_hosts dns_hosts hosts dns_nameserver dns_nameserver_policy
|
||||
config_get dns_port "mixin" "dns_port" "1053"
|
||||
config_get dns_mode "mixin" "dns_mode" "redir-host"
|
||||
config_get fake_ip_range "mixin" "fake_ip_range" "198.18.0.1/16"
|
||||
config_get_bool fake_ip_filter "mixin" "fake_ip_filter" 0
|
||||
config_get fake_ip_filter_mode "mixin" "fake_ip_filter_mode" "blacklist"
|
||||
config_get_bool fake_ip_cache "mixin" "fake_ip_cache" 0
|
||||
config_get_bool dns_respect_rules "mixin" "dns_respect_rules" 0
|
||||
config_get_bool dns_doh_prefer_http3 "mixin" "dns_doh_prefer_http3" 0
|
||||
config_get_bool dns_ipv6 "mixin" "dns_ipv6" 0
|
||||
config_get_bool dns_system_hosts "mixin" "dns_system_hosts" 0
|
||||
config_get_bool dns_hosts "mixin" "dns_hosts" 0
|
||||
config_get_bool hosts "mixin" "hosts" 0
|
||||
config_get_bool dns_nameserver "mixin" "dns_nameserver" 0
|
||||
config_get_bool dns_nameserver_policy "mixin" "dns_nameserver_policy" 0
|
||||
### sniffer
|
||||
local sniffer sniffer_sniff_dns_mapping sniffer_sniff_pure_ip sniffer_overwrite_destination sniffer_force_domain_name sniffer_ignore_domain_name sniffer_sniff
|
||||
config_get_bool sniffer "mixin" sniffer 0
|
||||
config_get_bool sniffer_sniff_dns_mapping "mixin" sniffer_sniff_dns_mapping 0
|
||||
config_get_bool sniffer_sniff_pure_ip "mixin" sniffer_sniff_pure_ip 0
|
||||
config_get_bool sniffer_overwrite_destination "mixin" sniffer_overwrite_destination 0
|
||||
config_get_bool sniffer_force_domain_name "mixin" sniffer_force_domain_name 0
|
||||
config_get_bool sniffer_ignore_domain_name "mixin" sniffer_ignore_domain_name 0
|
||||
config_get_bool sniffer_sniff "mixin" sniffer_sniff 0
|
||||
### geox
|
||||
local geoip_format geodata_loader geosite_url geoip_mmdb_url geoip_dat_url geoip_asn_url geox_auto_update geox_update_interval
|
||||
config_get geoip_format "mixin" "geoip_format" "mmdb"
|
||||
config_get geodata_loader "mixin" "geodata_loader" "memconservative"
|
||||
config_get geosite_url "mixin" "geosite_url"
|
||||
config_get geoip_mmdb_url "mixin" "geoip_mmdb_url"
|
||||
config_get geoip_dat_url "mixin" "geoip_dat_url"
|
||||
config_get geoip_asn_url "mixin" "geoip_asn_url"
|
||||
config_get_bool geox_auto_update "mixin" "geox_auto_update" 0
|
||||
config_get geox_update_interval "mixin" "geox_update_interval" "24"
|
||||
### mixin file content
|
||||
local mixin_file_content
|
||||
config_get_bool mixin_file_content "mixin" "mixin_file_content" 0
|
||||
## environment variable
|
||||
local disable_safe_path_check disable_loopback_detector disable_quic_go_gso disable_quic_go_ecn
|
||||
config_get_bool disable_safe_path_check "env" "disable_safe_path_check" 0
|
||||
config_get_bool disable_loopback_detector "env" "disable_loopback_detector" 0
|
||||
config_get_bool disable_quic_go_gso "env" "disable_quic_go_gso" 0
|
||||
config_get_bool disable_quic_go_ecn "env" "disable_quic_go_ecn" 0
|
||||
# prepare
|
||||
local tproxy_enable; tproxy_enable=0
|
||||
if [[ "$tcp_transparent_proxy_mode" == "tproxy" || "$udp_transparent_proxy_mode" == "tproxy" ]]; then
|
||||
tproxy_enable=1
|
||||
fi
|
||||
local tun_enable; tun_enable=0
|
||||
if [[ "$tcp_transparent_proxy_mode" == "tun" || "$udp_transparent_proxy_mode" == "tun" ]]; then
|
||||
tun_enable=1
|
||||
fi
|
||||
# get profile
|
||||
if [[ "$profile" == "file:"* ]]; then
|
||||
local profile_name; profile_name=$(basename "${profile/file:/}")
|
||||
local profile_file; profile_file="$PROFILES_DIR/$profile_name"
|
||||
log "Profile" "Use file: $profile_name."
|
||||
if [ ! -f "$profile_file" ]; then
|
||||
log "Profile" "File not found."
|
||||
log "App" "Exit."
|
||||
return
|
||||
fi
|
||||
cp -f "$profile_file" "$RUN_PROFILE_PATH"
|
||||
elif [[ "$profile" == "subscription:"* ]]; then
|
||||
local subscription_section; subscription_section="${profile/subscription:/}"
|
||||
local subscription_name subscription_prefer
|
||||
config_get subscription_name "$subscription_section" "name"
|
||||
config_get subscription_prefer "$subscription_section" "prefer" "remote"
|
||||
log "Profile" "Use subscription: $subscription_name."
|
||||
local subscription_file; subscription_file="$SUBSCRIPTIONS_DIR/$subscription_section.yaml"
|
||||
if [ "$subscription_prefer" == "remote" ] || [[ "$subscription_prefer" == "local" && ! -f "$subscription_file" ]]; then
|
||||
update_subscription "$subscription_section"
|
||||
fi
|
||||
if [ ! -f "$subscription_file" ]; then
|
||||
log "Profile" "Subscription file not found."
|
||||
log "App" "Exit."
|
||||
return
|
||||
fi
|
||||
cp -f "$subscription_file" "$RUN_PROFILE_PATH"
|
||||
else
|
||||
log "Profile" "No profile/subscription selected."
|
||||
log "App" "Exit."
|
||||
return
|
||||
fi
|
||||
# mixin
|
||||
if [ "$mixin" == 0 ]; then
|
||||
log "Mixin" "Disabled."
|
||||
log "Mixin" "Mixin neccesary config."
|
||||
# do mixin
|
||||
log_level="$log_level" mode="$mode" match_process="$match_process" ipv6="$ipv6" \
|
||||
ui_path="ui" ui_name="$ui_name" ui_url="$ui_url" api_listen="0.0.0.0:$api_port" api_secret="$api_secret" \
|
||||
allow_lan="$allow_lan" http_port="$http_port" socks_port="$socks_port" mixed_port="$mixed_port" redir_port="$redir_port" tproxy_port="$tproxy_port" \
|
||||
tun_enable="$tun_enable" tun_stack="$tun_stack" tun_device="$tun_device" tun_mtu="$tun_mtu" tun_gso="$tun_gso" tun_gso_max_size="$tun_gso_max_size" tun_endpoint_independent_nat="$tun_endpoint_independent_nat" \
|
||||
dns_enable="true" dns_listen="0.0.0.0:$dns_port" dns_mode="$dns_mode" fake_ip_range="$fake_ip_range" \
|
||||
yq -M -i '
|
||||
.log-level = strenv(log_level) | .mode = strenv(mode) | .find-process-mode = strenv(match_process) | .ipv6 = env(ipv6) == 1 |
|
||||
.external-ui = strenv(ui_path) | .external-ui-name = strenv(ui_name) | .external-ui-url = strenv(ui_url) | .external-controller = strenv(api_listen) | .secret = strenv(api_secret) |
|
||||
.allow-lan = env(allow_lan) == 1 | .port = env(http_port) | .socks-port = env(socks_port) | .mixed-port = env(mixed_port) | .redir-port = env(redir_port) | .tproxy-port = env(tproxy_port) |
|
||||
.tun.enable = env(tun_enable) == 1 | .tun.stack = strenv(tun_stack) | .tun.device = strenv(tun_device) | .tun.mtu = env(tun_mtu) | .tun.gso = env(tun_gso) == 1 | .tun.gso-max-size = env(tun_gso_max_size) | .tun.endpoint-independent-nat = env(tun_endpoint_independent_nat) == 1 |
|
||||
.tun.auto-route = false | .tun.auto-redirect = false | .tun.auto-detect-interface = false |
|
||||
.dns.enable = env(dns_enable) | .dns.listen = strenv(dns_listen) | .dns.enhanced-mode = strenv(dns_mode) | .dns.fake-ip-range = strenv(fake_ip_range)
|
||||
' "$RUN_PROFILE_PATH"
|
||||
else
|
||||
log "Mixin" "Enabled."
|
||||
log "Mixin" "Mixin all config."
|
||||
# do mixin
|
||||
log_level="$log_level" mode="$mode" match_process="$match_process" ipv6="$ipv6" unify_delay="$unify_delay" tcp_concurrent="$tcp_concurrent" tcp_keep_alive_idle="$tcp_keep_alive_idle" tcp_keep_alive_interval="$tcp_keep_alive_interval" \
|
||||
ui_path="ui" ui_name="$ui_name" ui_url="$ui_url" api_listen="0.0.0.0:$api_port" api_secret="$api_secret" selection_cache="$selection_cache" \
|
||||
allow_lan="$allow_lan" http_port="$http_port" socks_port="$socks_port" mixed_port="$mixed_port" redir_port="$redir_port" tproxy_port="$tproxy_port" \
|
||||
tun_enable="$tun_enable" tun_stack="$tun_stack" tun_device="$tun_device" tun_mtu="$tun_mtu" tun_gso="$tun_gso" tun_gso_max_size="$tun_gso_max_size" tun_endpoint_independent_nat="$tun_endpoint_independent_nat" \
|
||||
dns_enable="true" dns_listen="0.0.0.0:$dns_port" dns_mode="$dns_mode" fake_ip_range="$fake_ip_range" fake_ip_cache="$fake_ip_cache" \
|
||||
dns_respect_rules="$dns_respect_rules" dns_doh_prefer_http3="$dns_doh_prefer_http3" dns_ipv6="$dns_ipv6" dns_system_hosts="$dns_system_hosts" dns_hosts="$dns_hosts" \
|
||||
sniffer="$sniffer" sniffer_sniff_dns_mapping="$sniffer_sniff_dns_mapping" sniffer_sniff_pure_ip="$sniffer_sniff_pure_ip" sniffer_overwrite_destination="$sniffer_overwrite_destination" \
|
||||
geoip_format="$geoip_format" geodata_loader="$geodata_loader" geosite_url="$geosite_url" geoip_mmdb_url="$geoip_mmdb_url" geoip_dat_url="$geoip_dat_url" geoip_asn_url="$geoip_asn_url" \
|
||||
geox_auto_update="$geox_auto_update" geox_update_interval="$geox_update_interval" \
|
||||
yq -M -i '
|
||||
.log-level = strenv(log_level) | .mode = strenv(mode) | .find-process-mode = strenv(match_process) | .ipv6 = env(ipv6) == 1 | .unified-delay = env(unify_delay) == 1 | .tcp-concurrent = env(tcp_concurrent) == 1 | .keep-alive-idle = env(tcp_keep_alive_idle) | .keep-alive-interval = env(tcp_keep_alive_interval) |
|
||||
.external-ui = strenv(ui_path) | .external-ui-name = strenv(ui_name) | .external-ui-url = strenv(ui_url) | .external-controller = strenv(api_listen) | .secret = strenv(api_secret) | .profile.store-selected = env(selection_cache) == 1 |
|
||||
.allow-lan = env(allow_lan) == 1 | .port = env(http_port) | .socks-port = env(socks_port) | .mixed-port = env(mixed_port) | .redir-port = env(redir_port) | .tproxy-port = env(tproxy_port) |
|
||||
.tun.enable = env(tun_enable) == 1 | .tun.stack = strenv(tun_stack) | .tun.device = strenv(tun_device) | .tun.mtu = env(tun_mtu) | .tun.gso = env(tun_gso) == 1 | .tun.gso-max-size = env(tun_gso_max_size) | .tun.endpoint-independent-nat = env(tun_endpoint_independent_nat) == 1 |
|
||||
.tun.auto-route = false | .tun.auto-redirect = false | .tun.auto-detect-interface = false |
|
||||
.dns.enable = env(dns_enable) | .dns.listen = strenv(dns_listen) | .dns.enhanced-mode = strenv(dns_mode) | .dns.fake-ip-range = strenv(fake_ip_range) | .profile.store-fake-ip = env(fake_ip_cache) == 1 |
|
||||
.dns.respect-rules = env(dns_respect_rules) == 1 | .dns.prefer-h3 = env(dns_doh_prefer_http3) == 1 | .dns.ipv6 = env(dns_ipv6) == 1 | .dns.use-system-hosts = env(dns_system_hosts) == 1 | .dns.use-hosts = env(dns_hosts) == 1 |
|
||||
.sniffer.enable = env(sniffer) == 1 | .sniffer.force-dns-mapping = env(sniffer_sniff_dns_mapping) == 1 | .sniffer.parse-pure-ip = env(sniffer_sniff_pure_ip) == 1 | .sniffer.override-destination = env(sniffer_overwrite_destination) == 1 |
|
||||
.geodata-mode = strenv(geoip_format) == "dat" | .geodata-loader = strenv(geodata_loader) | .geox-url.geosite = strenv(geosite_url) | .geox-url.mmdb = strenv(geoip_mmdb_url) | .geox-url.geoip = strenv(geoip_dat_url) | .geox-url.asn = strenv(geoip_asn_url) |
|
||||
.geo-auto-update = env(geox_auto_update) == 1 | .geo-update-interval = env(geox_update_interval)
|
||||
' "$RUN_PROFILE_PATH"
|
||||
|
||||
if [ "$fake_ip_filter" == 1 ]; then
|
||||
fake_ip_filter_mode="$fake_ip_filter_mode" \
|
||||
yq -M -i 'del(.dns.fake-ip-filter) | .dns.fake-ip-filter-mode = strenv(fake_ip_filter_mode)' "$RUN_PROFILE_PATH"
|
||||
config_list_foreach "mixin" "fake_ip_filters" mixin_fake_ip_filters
|
||||
fi
|
||||
if [ "$hosts" == 1 ]; then
|
||||
yq -M -i 'del(.hosts)' "$RUN_PROFILE_PATH"
|
||||
config_foreach mixin_hosts "hosts"
|
||||
fi
|
||||
if [ "$dns_nameserver" == 1 ]; then
|
||||
yq -M -i 'del(.dns.default-nameserver) | del(.dns.proxy-server-nameserver) | del(.dns.direct-nameserver) | del(.dns.nameserver) | del(.dns.fallback)' "$RUN_PROFILE_PATH"
|
||||
config_foreach mixin_nameservers "nameserver"
|
||||
fi
|
||||
if [ "$dns_nameserver_policy" == 1 ]; then
|
||||
yq -M -i 'del(.dns.nameserver-policy)' "$RUN_PROFILE_PATH"
|
||||
config_foreach mixin_nameserver_policies "nameserver_policy"
|
||||
fi
|
||||
if [ "$sniffer_force_domain_name" == 1 ]; then
|
||||
yq -M -i 'del(.sniffer.force-domain)' "$RUN_PROFILE_PATH"
|
||||
config_list_foreach "mixin" "sniffer_force_domain_names" mixin_sniffer_domain_names "force-domain"
|
||||
fi
|
||||
if [ "$sniffer_ignore_domain_name" == 1 ]; then
|
||||
yq -M -i 'del(.sniffer.skip-domain)' "$RUN_PROFILE_PATH"
|
||||
config_list_foreach "mixin" "sniffer_ignore_domain_names" mixin_sniffer_domain_names "skip-domain"
|
||||
fi
|
||||
if [ "$sniffer_sniff" == 1 ]; then
|
||||
yq -M -i 'del(.sniffer.sniff)' "$RUN_PROFILE_PATH"
|
||||
config_foreach mixin_sniffs "sniff"
|
||||
fi
|
||||
fi
|
||||
yq -M -i 'del (.bind-address)' "$RUN_PROFILE_PATH"
|
||||
if [ -n "$outbound_interface" ]; then
|
||||
local outbound_device; network_get_device outbound_device "$outbound_interface"
|
||||
if [ -n "$outbound_device" ]; then
|
||||
outbound_device="$outbound_device" yq -M -i '.interface-name = strenv(outbound_device)' "$RUN_PROFILE_PATH"
|
||||
fi
|
||||
fi
|
||||
if [ "$authentication" == 1 ]; then
|
||||
yq -M -i 'del(.authentication)' "$RUN_PROFILE_PATH"
|
||||
config_foreach mixin_authentications "authentication"
|
||||
fi
|
||||
if [ "$tun_dns_hijack" == 1 ]; then
|
||||
config_list_foreach "mixin" "tun_dns_hijacks" mixin_tun_dns_hijacks
|
||||
fi
|
||||
if [ "$mixin_file_content" == 1 ]; then
|
||||
if [ -s "$MIXIN_FILE_PATH" ]; then
|
||||
yq -M -i ea '. as $item ireduce ({}; . * $item ) | ... comments=""' "$RUN_PROFILE_PATH" "$MIXIN_FILE_PATH"
|
||||
fi
|
||||
fi
|
||||
# test profile
|
||||
if [ "$test_profile" == 1 ]; then
|
||||
log "Profile" "Testing..."
|
||||
if ($PROG -d "$RUN_DIR" -t >> "$CORE_LOG_PATH" 2>&1); then
|
||||
log "Profile" "Test passed!"
|
||||
else
|
||||
log "Profile" "Test failed!"
|
||||
log "Profile" "Please check the core log to find out the problem."
|
||||
log "App" "Exit."
|
||||
return
|
||||
fi
|
||||
fi
|
||||
# start core
|
||||
log "Core" "Start."
|
||||
procd_open_instance mihomo
|
||||
|
||||
procd_set_param command /bin/sh -c "$PROG -d $RUN_DIR >> $CORE_LOG_PATH 2>&1"
|
||||
procd_set_param file "$RUN_PROFILE_PATH"
|
||||
procd_set_param env SKIP_SAFE_PATH_CHECK="$disable_safe_path_check" DISABLE_LOOPBACK_DETECTOR="$disable_loopback_detector" QUIC_GO_DISABLE_GSO="$disable_quic_go_gso" QUIC_GO_DISABLE_ECN="$disable_quic_go_ecn"
|
||||
if [ "$fast_reload" == 1 ]; then
|
||||
procd_set_param reload_signal HUP
|
||||
fi
|
||||
procd_set_param respawn
|
||||
procd_set_param user "$MIHOMO_USER"
|
||||
procd_set_param group "$MIHOMO_GROUP"
|
||||
|
||||
procd_set_param limits core="unlimited" nofile="1048576 1048576"
|
||||
|
||||
procd_close_instance
|
||||
# cron
|
||||
if [[ "$scheduled_restart" == 1 && -n "$cron_expression" ]]; then
|
||||
log "App" "Set scheduled restart."
|
||||
echo "$cron_expression /etc/init.d/mihomo restart #mihomo" >> "/etc/crontabs/root"
|
||||
/etc/init.d/cron restart
|
||||
fi
|
||||
# set started flag
|
||||
touch "$STARTED_FLAG"
|
||||
}
|
||||
|
||||
service_started() {
|
||||
# check if started
|
||||
if [ ! -f "$STARTED_FLAG" ]; then
|
||||
return
|
||||
fi
|
||||
# load config
|
||||
config_load mihomo
|
||||
# check if transparent proxy enabled
|
||||
local transparent_proxy
|
||||
config_get_bool transparent_proxy "proxy" "transparent_proxy" 0
|
||||
if [ "$transparent_proxy" == 0 ]; then
|
||||
log "Transparent Proxy" "Disabled."
|
||||
return
|
||||
fi
|
||||
# get config
|
||||
### inbound
|
||||
local http_port socks_port mixed_port redir_port tproxy_port
|
||||
config_get http_port "mixin" "http_port" "8080"
|
||||
config_get socks_port "mixin" "socks_port" "1080"
|
||||
config_get mixed_port "mixin" "mixed_port" "7890"
|
||||
config_get redir_port "mixin" "redir_port" "7891"
|
||||
config_get tproxy_port "mixin" "tproxy_port" "7892"
|
||||
### dns
|
||||
local dns_port fake_ip_range
|
||||
config_get dns_port "mixin" "dns_port" "1053"
|
||||
config_get fake_ip_range "mixin" "fake_ip_range" "198.18.0.1/16"
|
||||
### tun
|
||||
local tun_device
|
||||
config_get tun_device "mixin" "tun_device" "mihomo"
|
||||
## proxy config
|
||||
### transparent proxy
|
||||
local tcp_transparent_proxy_mode udp_transparent_proxy_mode ipv4_dns_hijack ipv6_dns_hijack ipv4_proxy ipv6_proxy router_proxy lan_proxy
|
||||
config_get tcp_transparent_proxy_mode "proxy" "tcp_transparent_proxy_mode" "redirect"
|
||||
config_get udp_transparent_proxy_mode "proxy" "udp_transparent_proxy_mode" "tun"
|
||||
config_get_bool ipv4_dns_hijack "proxy" "ipv4_dns_hijack" 0
|
||||
config_get_bool ipv6_dns_hijack "proxy" "ipv6_dns_hijack" 0
|
||||
config_get_bool ipv4_proxy "proxy" "ipv4_proxy" 0
|
||||
config_get_bool ipv6_proxy "proxy" "ipv6_proxy" 0
|
||||
config_get_bool router_proxy "proxy" "router_proxy" 0
|
||||
config_get_bool lan_proxy "proxy" "lan_proxy" 0
|
||||
### access control
|
||||
local access_control_mode bypass_china_mainland_ip proxy_tcp_dport proxy_udp_dport bypass_dscp
|
||||
config_get access_control_mode "proxy" "access_control_mode"
|
||||
config_get_bool bypass_china_mainland_ip "proxy" "bypass_china_mainland_ip" 0
|
||||
config_get proxy_tcp_dport "proxy" "proxy_tcp_dport" "0-65535"
|
||||
config_get proxy_udp_dport "proxy" "proxy_udp_dport" "0-65535"
|
||||
config_get bypass_dscp "proxy" "bypass_dscp"
|
||||
# prepare
|
||||
local tproxy_enable; tproxy_enable=0
|
||||
if [[ "$tcp_transparent_proxy_mode" == "tproxy" || "$udp_transparent_proxy_mode" == "tproxy" ]]; then
|
||||
tproxy_enable=1
|
||||
fi
|
||||
local tun_enable; tun_enable=0
|
||||
if [[ "$tcp_transparent_proxy_mode" == "tun" || "$udp_transparent_proxy_mode" == "tun" ]]; then
|
||||
tun_enable=1
|
||||
fi
|
||||
# transparent proxy
|
||||
log "Transparent Proxy" "Enabled."
|
||||
log "Transparent Proxy" "TCP Mode: $tcp_transparent_proxy_mode."
|
||||
log "Transparent Proxy" "UDP Mode: $udp_transparent_proxy_mode."
|
||||
# wait for tun device online
|
||||
if [ "$tun_enable" == 1 ]; then
|
||||
log "Transparent Proxy" "Waiting for tun device online..."
|
||||
local tun_timeout; tun_timeout=60
|
||||
local tun_interval; tun_interval=1
|
||||
while [ "$tun_timeout" -gt 0 ]; do
|
||||
if (ip link show dev "$tun_device" > /dev/null 2>&1); then
|
||||
if [ $(ip -json addr show dev "$tun_device" | tun_device="$tun_device" yq -M '.[] | select(.ifname = strenv(tun_device)) | .addr_info | length') -gt 0 ]; then
|
||||
log "Transparent Proxy" "Tun device is online."
|
||||
break
|
||||
fi
|
||||
fi
|
||||
tun_timeout=$((tun_timeout - tun_interval))
|
||||
sleep "$tun_interval"
|
||||
done
|
||||
if [ "$tun_timeout" -le 0 ]; then
|
||||
log "Transparent Proxy" "Waiting timeout, tun device is not online."
|
||||
log "App" "Exit."
|
||||
return
|
||||
fi
|
||||
fi
|
||||
# prepare
|
||||
if [ "$tproxy_enable" == 1 ]; then
|
||||
if [ "$ipv4_proxy" == 1 ]; then
|
||||
ip -4 route add local default dev lo table "$TPROXY_ROUTE_TABLE"
|
||||
fi
|
||||
if [ "$ipv6_proxy" == 1 ]; then
|
||||
ip -6 route add local default dev lo table "$TPROXY_ROUTE_TABLE"
|
||||
fi
|
||||
fi
|
||||
if [ "$tun_enable" == 1 ]; then
|
||||
if [ "$ipv4_proxy" == 1 ]; then
|
||||
ip -4 route add unicast default dev "$tun_device" table "$TUN_ROUTE_TABLE"
|
||||
fi
|
||||
if [ "$ipv6_proxy" == 1 ]; then
|
||||
ip -6 route add unicast default dev "$tun_device" table "$TUN_ROUTE_TABLE"
|
||||
fi
|
||||
$FIREWALL_INCLUDE_SH
|
||||
fi
|
||||
local tcp_route_table
|
||||
if [ "$tcp_transparent_proxy_mode" == "tproxy" ]; then
|
||||
tcp_route_table="$TPROXY_ROUTE_TABLE"
|
||||
elif [ "$tcp_transparent_proxy_mode" == "tun" ]; then
|
||||
tcp_route_table="$TUN_ROUTE_TABLE"
|
||||
fi
|
||||
if [ -n "$tcp_route_table" ]; then
|
||||
if [ "$ipv4_proxy" == 1 ]; then
|
||||
ip -4 rule add pref "$TCP_RULE_PREF" fwmark "$FW_MARK/$FW_MARK_MASK" ipproto tcp table "$tcp_route_table"
|
||||
fi
|
||||
if [ "$ipv6_proxy" == 1 ]; then
|
||||
ip -6 rule add pref "$TCP_RULE_PREF" fwmark "$FW_MARK/$FW_MARK_MASK" ipproto tcp table "$tcp_route_table"
|
||||
fi
|
||||
fi
|
||||
local udp_route_table
|
||||
if [ "$udp_transparent_proxy_mode" == "tproxy" ]; then
|
||||
udp_route_table="$TPROXY_ROUTE_TABLE"
|
||||
elif [ "$udp_transparent_proxy_mode" == "tun" ]; then
|
||||
udp_route_table="$TUN_ROUTE_TABLE"
|
||||
fi
|
||||
if [ -n "$udp_route_table" ]; then
|
||||
if [ "$ipv4_proxy" == 1 ]; then
|
||||
ip -4 rule add pref "$UDP_RULE_PREF" fwmark "$FW_MARK/$FW_MARK_MASK" ipproto udp table "$udp_route_table"
|
||||
fi
|
||||
if [ "$ipv6_proxy" == 1 ]; then
|
||||
ip -6 rule add pref "$UDP_RULE_PREF" fwmark "$FW_MARK/$FW_MARK_MASK" ipproto udp table "$udp_route_table"
|
||||
fi
|
||||
fi
|
||||
nft -f "$HIJACK_NFT" -D MIHOMO_GROUP="$MIHOMO_GROUP" -D FW_MARK="$FW_MARK" -D FW_MARK_MASK="$FW_MARK_MASK" -D TUN_DEVICE="$tun_device" -D FAKE_IP="$fake_ip_range" -D DNS_PORT="$dns_port" -D REDIR_PORT="$redir_port" -D TPROXY_PORT="$tproxy_port"
|
||||
nft -f "$RESERVED_IP_NFT"
|
||||
nft -f "$RESERVED_IP6_NFT"
|
||||
# dns hijack
|
||||
if [ "$ipv4_dns_hijack" == 1 ]; then
|
||||
log "Transparent Proxy" "Hijack IPv4 dns request."
|
||||
nft add element inet "$FW_TABLE" dns_hijack_nfproto \{ ipv4 \}
|
||||
fi
|
||||
if [ "$ipv6_dns_hijack" == 1 ]; then
|
||||
log "Transparent Proxy" "Hijack IPv6 dns request."
|
||||
nft add element inet "$FW_TABLE" dns_hijack_nfproto \{ ipv6 \}
|
||||
fi
|
||||
# proxy
|
||||
if [ "$ipv4_proxy" == 1 ]; then
|
||||
log "Transparent Proxy" "Proxy IPv4 traffic."
|
||||
nft add element inet "$FW_TABLE" proxy_nfproto \{ ipv4 \}
|
||||
fi
|
||||
if [ "$ipv6_proxy" == 1 ]; then
|
||||
log "Transparent Proxy" "Proxy IPv6 traffic."
|
||||
nft add element inet "$FW_TABLE" proxy_nfproto \{ ipv6 \}
|
||||
fi
|
||||
# bypass
|
||||
config_list_foreach "proxy" "bypass_user" add_bypass_user
|
||||
config_list_foreach "proxy" "bypass_group" add_bypass_group
|
||||
if [ "$bypass_china_mainland_ip" == 1 ]; then
|
||||
log "Transparent Proxy" "Bypass china mainland ip."
|
||||
if [ "$ipv4_proxy" == 1 ]; then
|
||||
nft -f "$GEOIP_CN_NFT"
|
||||
fi
|
||||
if [ "$ipv6_proxy" == 1 ]; then
|
||||
nft -f "$GEOIP6_CN_NFT"
|
||||
fi
|
||||
fi
|
||||
log "Transparent Proxy" "Destination TCP Port to Proxy: $proxy_tcp_dport."
|
||||
log "Transparent Proxy" "Destination UDP Port to Proxy: $proxy_udp_dport."
|
||||
local proxy_dport
|
||||
for proxy_dport in $proxy_tcp_dport; do
|
||||
nft add element inet "$FW_TABLE" proxy_dport \{ "tcp" . "$proxy_dport" \}
|
||||
done
|
||||
for proxy_dport in $proxy_udp_dport; do
|
||||
nft add element inet "$FW_TABLE" proxy_dport \{ "udp" . "$proxy_dport" \}
|
||||
done
|
||||
if [ -n "$bypass_dscp" ]; then
|
||||
log "Transparent Proxy" "Bypass DSCP: $bypass_dscp."
|
||||
local dscp
|
||||
for dscp in $bypass_dscp; do
|
||||
nft add element inet "$FW_TABLE" bypass_dscp \{ "$dscp" \}
|
||||
done
|
||||
fi
|
||||
# router proxy
|
||||
if [ "$router_proxy" == 1 ]; then
|
||||
log "Transparent Proxy" "Set proxy for router."
|
||||
if [ "$tcp_transparent_proxy_mode" == "redirect" ]; then
|
||||
nft insert rule inet "$FW_TABLE" nat_output jump router_dns_hijack
|
||||
nft add rule inet "$FW_TABLE" nat_output meta l4proto tcp jump "router_${tcp_transparent_proxy_mode}"
|
||||
else
|
||||
nft flush chain inet "$FW_TABLE" nat_output
|
||||
nft add rule inet "$FW_TABLE" nat_output jump router_dns_hijack
|
||||
nft add rule inet "$FW_TABLE" mangle_output meta l4proto tcp jump "router_${tcp_transparent_proxy_mode}"
|
||||
fi
|
||||
nft add rule inet "$FW_TABLE" mangle_output meta l4proto udp jump "router_${udp_transparent_proxy_mode}"
|
||||
fi
|
||||
# lan proxy
|
||||
if [ "$lan_proxy" == 1 ]; then
|
||||
log "Transparent Proxy" "Set proxy for lan."
|
||||
# access control
|
||||
if [ "$access_control_mode" == "all" ]; then
|
||||
log "Transparent Proxy" "Access Control is using all mode, set proxy for all client."
|
||||
elif [ "$access_control_mode" == "allow" ]; then
|
||||
log "Transparent Proxy" "Access Control is using allow mode, set proxy for client which is in acl."
|
||||
elif [ "$access_control_mode" == "block" ]; then
|
||||
log "Transparent Proxy" "Access Control is using block mode, set proxy for client which is not in acl."
|
||||
fi
|
||||
config_list_foreach "proxy" "acl_ip" add_acl_ip
|
||||
config_list_foreach "proxy" "acl_ip6" add_acl_ip6
|
||||
config_list_foreach "proxy" "acl_mac" add_acl_mac
|
||||
config_list_foreach "proxy" "acl_interface" add_acl_interface
|
||||
if [ "$tcp_transparent_proxy_mode" == "redirect" ]; then
|
||||
nft insert rule inet "$FW_TABLE" dstnat jump "${access_control_mode}_dns_hijack"
|
||||
nft add rule inet "$FW_TABLE" dstnat meta l4proto tcp jump "${access_control_mode}_${tcp_transparent_proxy_mode}"
|
||||
else
|
||||
nft flush chain inet "$FW_TABLE" dstnat
|
||||
nft add rule inet "$FW_TABLE" dstnat jump "${access_control_mode}_dns_hijack"
|
||||
nft add rule inet "$FW_TABLE" mangle_prerouting meta l4proto tcp jump "${access_control_mode}_${tcp_transparent_proxy_mode}"
|
||||
fi
|
||||
nft add rule inet "$FW_TABLE" mangle_prerouting meta l4proto udp jump "${access_control_mode}_${udp_transparent_proxy_mode}"
|
||||
fi
|
||||
# fix compatible between tproxy and dockerd (kmod-br-netfilter)
|
||||
if [ "$tproxy_enable" == 1 ] && (lsmod | grep -q br_netfilter); then
|
||||
if [ "$ipv4_proxy" == 1 ]; then
|
||||
local bridge_nf_call_iptables; bridge_nf_call_iptables=$(sysctl -e -n net.bridge.bridge-nf-call-iptables)
|
||||
if [ "$bridge_nf_call_iptables" == 1 ]; then
|
||||
touch "$BRIDGE_NF_CALL_IPTABLES_FLAG"
|
||||
sysctl -q -w net.bridge.bridge-nf-call-iptables=0
|
||||
fi
|
||||
fi
|
||||
if [ "$ipv6_proxy" == 1 ]; then
|
||||
local bridge_nf_call_ip6tables; bridge_nf_call_ip6tables=$(sysctl -e -n net.bridge.bridge-nf-call-ip6tables)
|
||||
if [ "$bridge_nf_call_ip6tables" == 1 ]; then
|
||||
touch "$BRIDGE_NF_CALL_IP6TABLES_FLAG"
|
||||
sysctl -q -w net.bridge.bridge-nf-call-ip6tables=0
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
service_stopped() {
|
||||
cleanup
|
||||
}
|
||||
|
||||
reload_service() {
|
||||
cleanup
|
||||
start
|
||||
}
|
||||
|
||||
service_triggers() {
|
||||
procd_add_reload_trigger "mihomo"
|
||||
}
|
||||
|
||||
cleanup() {
|
||||
# clear log
|
||||
clear_log
|
||||
# delete routing policy
|
||||
ip -4 rule del ipproto tcp table "$TPROXY_ROUTE_TABLE" > /dev/null 2>&1
|
||||
ip -4 rule del ipproto udp table "$TPROXY_ROUTE_TABLE" > /dev/null 2>&1
|
||||
ip -4 rule del ipproto tcp table "$TUN_ROUTE_TABLE" > /dev/null 2>&1
|
||||
ip -4 rule del ipproto udp table "$TUN_ROUTE_TABLE" > /dev/null 2>&1
|
||||
ip -6 rule del ipproto tcp table "$TPROXY_ROUTE_TABLE" > /dev/null 2>&1
|
||||
ip -6 rule del ipproto udp table "$TPROXY_ROUTE_TABLE" > /dev/null 2>&1
|
||||
ip -6 rule del ipproto tcp table "$TUN_ROUTE_TABLE" > /dev/null 2>&1
|
||||
ip -6 rule del ipproto udp table "$TUN_ROUTE_TABLE" > /dev/null 2>&1
|
||||
# delete routing table
|
||||
ip -4 route flush table "$TPROXY_ROUTE_TABLE" > /dev/null 2>&1
|
||||
ip -4 route flush table "$TUN_ROUTE_TABLE" > /dev/null 2>&1
|
||||
ip -6 route flush table "$TPROXY_ROUTE_TABLE" > /dev/null 2>&1
|
||||
ip -6 route flush table "$TUN_ROUTE_TABLE" > /dev/null 2>&1
|
||||
# delete hijack
|
||||
nft delete table inet "$FW_TABLE" > /dev/null 2>&1
|
||||
local handles handle
|
||||
handles=$(nft --json list table inet fw4 | yq -M '.nftables[] | select(has("rule")) | .rule | select(.chain == "input" and .comment == "mihomo") | .handle')
|
||||
for handle in $handles; do
|
||||
nft delete rule inet fw4 input handle "$handle"
|
||||
done
|
||||
handles=$(nft --json list table inet fw4 | yq -M '.nftables[] | select(has("rule")) | .rule | select(.chain == "forward" and .comment == "mihomo") | .handle')
|
||||
for handle in $handles; do
|
||||
nft delete rule inet fw4 forward handle "$handle"
|
||||
done
|
||||
# delete started flag
|
||||
rm -f "$STARTED_FLAG"
|
||||
# revert fix compatible between tproxy and dockerd (kmod-br-netfilter)
|
||||
if [ -f "$BRIDGE_NF_CALL_IPTABLES_FLAG" ]; then
|
||||
rm -f "$BRIDGE_NF_CALL_IPTABLES_FLAG"
|
||||
sysctl -q -w net.bridge.bridge-nf-call-iptables=1
|
||||
fi
|
||||
if [ -f "$BRIDGE_NF_CALL_IP6TABLES_FLAG" ]; then
|
||||
rm -f "$BRIDGE_NF_CALL_IP6TABLES_FLAG"
|
||||
sysctl -q -w net.bridge.bridge-nf-call-ip6tables=1
|
||||
fi
|
||||
# delete cron
|
||||
sed -i "/#mihomo/d" "/etc/crontabs/root" > /dev/null 2>&1
|
||||
/etc/init.d/cron restart
|
||||
}
|
||||
|
||||
mixin_authentications() {
|
||||
local section="$1"
|
||||
|
||||
local enabled username password
|
||||
config_get_bool enabled "$section" "enabled" 0
|
||||
config_get username "$section" "username"
|
||||
config_get password "$section" "password"
|
||||
|
||||
if [ "$enabled" == 0 ]; then
|
||||
return
|
||||
fi
|
||||
|
||||
authentication="$username:$password" yq -M -i '.authentication += [strenv(authentication)]' "$RUN_PROFILE_PATH"
|
||||
}
|
||||
|
||||
mixin_tun_dns_hijacks() {
|
||||
dns_hijack="$1" yq -M -i '.tun.dns-hijack += [strenv(dns_hijack)]' "$RUN_PROFILE_PATH"
|
||||
}
|
||||
|
||||
mixin_fake_ip_filters() {
|
||||
domain_name="$1" yq -M -i '.dns.fake-ip-filter += [strenv(domain_name)]' "$RUN_PROFILE_PATH"
|
||||
}
|
||||
|
||||
mixin_hosts() {
|
||||
local section="$1"
|
||||
|
||||
local enabled domain_name
|
||||
config_get_bool enabled "$section" "enabled" 0
|
||||
config_get domain_name "$section" "domain_name"
|
||||
|
||||
if [ "$enabled" == 0 ]; then
|
||||
return
|
||||
fi
|
||||
|
||||
config_list_foreach "$section" "ip" mixin_host "$domain_name"
|
||||
}
|
||||
|
||||
mixin_host() {
|
||||
ip="$1" domain_name="$2" yq -M -i '.hosts.[strenv(domain_name)] += [strenv(ip)]' "$RUN_PROFILE_PATH"
|
||||
}
|
||||
|
||||
mixin_nameservers() {
|
||||
local section="$1"
|
||||
|
||||
local enabled type
|
||||
config_get_bool enabled "$section" "enabled" 0
|
||||
config_get type "$section" "type"
|
||||
|
||||
if [ "$enabled" == 0 ]; then
|
||||
return
|
||||
fi
|
||||
|
||||
config_list_foreach "$section" "nameserver" mixin_nameserver "$type"
|
||||
}
|
||||
|
||||
mixin_nameserver() {
|
||||
nameserver="$1" type="$2" yq -M -i '.dns.[strenv(type)] += [strenv(nameserver)]' "$RUN_PROFILE_PATH"
|
||||
}
|
||||
|
||||
mixin_nameserver_policies() {
|
||||
local section="$1"
|
||||
|
||||
local enabled matcher
|
||||
config_get_bool enabled "$section" "enabled" 0
|
||||
config_get matcher "$section" "matcher"
|
||||
|
||||
if [ "$enabled" == 0 ]; then
|
||||
return
|
||||
fi
|
||||
|
||||
config_list_foreach "$section" "nameserver" mixin_nameserver_policy "$matcher"
|
||||
}
|
||||
|
||||
mixin_nameserver_policy() {
|
||||
nameserver="$1" matcher="$2" yq -M -i '.dns.nameserver-policy.[strenv(matcher)] += [strenv(nameserver)]' "$RUN_PROFILE_PATH"
|
||||
}
|
||||
|
||||
mixin_sniffer_domain_names() {
|
||||
domain_name="$1" type="$2" yq -M -i '.sniffer.[strenv(type)] += [strenv(domain_name)]' "$RUN_PROFILE_PATH"
|
||||
}
|
||||
|
||||
mixin_sniffs() {
|
||||
local section="$1"
|
||||
local enabled protocol overwrite_destination
|
||||
config_get_bool enabled "$section" "enabled" 0
|
||||
config_get protocol "$section" "protocol"
|
||||
config_get_bool overwrite_destination "$section" "overwrite_destination" 0
|
||||
if [ "$enabled" == 0 ]; then
|
||||
return
|
||||
fi
|
||||
protocol="$protocol" overwrite_destination="$overwrite_destination" yq -M -i '.sniffer.sniff.[strenv(protocol)].override-destination = env(overwrite_destination) == 1' "$RUN_PROFILE_PATH"
|
||||
config_list_foreach "$section" "port" mixin_sniff "$protocol"
|
||||
}
|
||||
|
||||
mixin_sniff() {
|
||||
port="$1" protocol="$2" yq -M -i '.sniffer.sniff.[strenv(protocol)].ports += [env(port)]' "$RUN_PROFILE_PATH"
|
||||
}
|
||||
|
||||
add_bypass_user() {
|
||||
local user; user="$1"
|
||||
if [ "$user" != "root" ] && (cut -d ':' -f 1 < /etc/passwd | grep -q "$user"); then
|
||||
nft add element inet "$FW_TABLE" bypass_user \{ "$user" \}
|
||||
fi
|
||||
}
|
||||
|
||||
add_bypass_group() {
|
||||
local group; group="$1"
|
||||
if [ "$group" != "root" ] && (cut -d ':' -f 1 < /etc/group | grep -q "$group"); then
|
||||
nft add element inet "$FW_TABLE" bypass_group \{ "$group" \}
|
||||
fi
|
||||
}
|
||||
|
||||
add_acl_ip() {
|
||||
nft add element inet "$FW_TABLE" acl_ip \{ "$1" \}
|
||||
}
|
||||
|
||||
add_acl_ip6() {
|
||||
nft add element inet "$FW_TABLE" acl_ip6 \{ "$1" \}
|
||||
}
|
||||
|
||||
add_acl_mac() {
|
||||
nft add element inet "$FW_TABLE" acl_mac \{ "$1" \}
|
||||
}
|
||||
|
||||
add_acl_interface() {
|
||||
local interface; interface="$1"
|
||||
local device; network_get_device device "$interface"
|
||||
if [ -n "$device" ]; then
|
||||
nft add element inet "$FW_TABLE" acl_interface \{ "$device" \}
|
||||
fi
|
||||
}
|
||||
|
||||
update_subscription() {
|
||||
local subscription_section; subscription_section="$1"
|
||||
if [ -z "$subscription_section" ]; then
|
||||
return
|
||||
fi
|
||||
# load config
|
||||
config_load mihomo
|
||||
# get subscription config
|
||||
local subscription_name subscription_url subscription_user_agent
|
||||
config_get subscription_name "$subscription_section" "name"
|
||||
config_get subscription_url "$subscription_section" "url"
|
||||
config_get subscription_user_agent "$subscription_section" "user_agent"
|
||||
# reset subscription info
|
||||
uci_remove "mihomo" "$subscription_section" "expire"
|
||||
uci_remove "mihomo" "$subscription_section" "upload"
|
||||
uci_remove "mihomo" "$subscription_section" "download"
|
||||
uci_remove "mihomo" "$subscription_section" "total"
|
||||
uci_remove "mihomo" "$subscription_section" "used"
|
||||
uci_remove "mihomo" "$subscription_section" "avaliable"
|
||||
uci_remove "mihomo" "$subscription_section" "update"
|
||||
uci_remove "mihomo" "$subscription_section" "success"
|
||||
# update subscription
|
||||
log "Profile" "Update subscription: $subscription_name."
|
||||
local subscription_header_tmpfile; subscription_header_tmpfile="/tmp/$subscription_section.header"
|
||||
local subscription_tmpfile; subscription_tmpfile="/tmp/$subscription_section.yaml"
|
||||
local subscription_file; subscription_file="$SUBSCRIPTIONS_DIR/$subscription_section.yaml"
|
||||
if (curl -s -f --connect-timeout 15 --retry 3 -L -X GET -A "$subscription_user_agent" -D "$subscription_header_tmpfile" -o "$subscription_tmpfile" "$subscription_url"); then
|
||||
log "Profile" "Subscription update successful."
|
||||
local subscription_expire subscription_upload subscription_download subscription_total subscription_used subscription_avaliable
|
||||
subscription_expire=$(grep "subscription-userinfo: " "$subscription_header_tmpfile" | grep -o -E "expire=[[:digit:]]+" | cut -d '=' -f 2)
|
||||
subscription_upload=$(grep "subscription-userinfo: " "$subscription_header_tmpfile" | grep -o -E "upload=[[:digit:]]+" | cut -d '=' -f 2)
|
||||
subscription_download=$(grep "subscription-userinfo: " "$subscription_header_tmpfile" | grep -o -E "download=[[:digit:]]+" | cut -d '=' -f 2)
|
||||
subscription_total=$(grep "subscription-userinfo: " "$subscription_header_tmpfile" | grep -o -E "total=[[:digit:]]+" | cut -d '=' -f 2)
|
||||
if [[ -n "$subscription_upload" && -n "$subscription_download" ]]; then
|
||||
subscription_used=$((subscription_upload + subscription_download))
|
||||
if [ -n "$subscription_total" ]; then
|
||||
subscription_avaliable=$((subscription_total - subscription_upload - subscription_download))
|
||||
fi
|
||||
fi
|
||||
# update subscription info
|
||||
if [ -n "$subscription_expire" ]; then
|
||||
uci_set "mihomo" "$subscription_section" "expire" "$(date "+%Y-%m-%d %H:%M:%S" -d @$subscription_expire)"
|
||||
fi
|
||||
if [ -n "$subscription_upload" ]; then
|
||||
uci_set "mihomo" "$subscription_section" "upload" "$(format_filesize $subscription_upload)"
|
||||
fi
|
||||
if [ -n "$subscription_download" ]; then
|
||||
uci_set "mihomo" "$subscription_section" "download" "$(format_filesize $subscription_download)"
|
||||
fi
|
||||
if [ -n "$subscription_total" ]; then
|
||||
uci_set "mihomo" "$subscription_section" "total" "$(format_filesize $subscription_total)"
|
||||
fi
|
||||
if [ -n "$subscription_used" ]; then
|
||||
uci_set "mihomo" "$subscription_section" "used" "$(format_filesize $subscription_used)"
|
||||
fi
|
||||
if [ -n "$subscription_avaliable" ]; then
|
||||
uci_set "mihomo" "$subscription_section" "avaliable" "$(format_filesize $subscription_avaliable)"
|
||||
fi
|
||||
uci_set "mihomo" "$subscription_section" "update" "$(date "+%Y-%m-%d %H:%M:%S")"
|
||||
uci_set "mihomo" "$subscription_section" "success" "1"
|
||||
# update subscription file
|
||||
rm -f "$subscription_header_tmpfile"
|
||||
mv -f "$subscription_tmpfile" "$subscription_file"
|
||||
else
|
||||
log "Profile" "Subscription update failed."
|
||||
# update subscription info
|
||||
uci_set "mihomo" "$subscription_section" "success" "0"
|
||||
# remove tmpfile
|
||||
rm -f "$subscription_header_tmpfile"
|
||||
rm -f "$subscription_tmpfile"
|
||||
fi
|
||||
uci_commit "mihomo"
|
||||
}
|
@ -1,5 +0,0 @@
|
||||
/etc/mihomo/profiles/
|
||||
/etc/mihomo/subscriptions/
|
||||
/etc/mihomo/mixin.yaml
|
||||
/etc/mihomo/nftables/reserved_ip.nft
|
||||
/etc/mihomo/nftables/reserved_ip6.nft
|
@ -1,28 +0,0 @@
|
||||
# Mixin File
|
||||
# You can set any mihomo profile's config at here, it will mixin to the profile.
|
||||
#
|
||||
# For example:
|
||||
#
|
||||
# global-client-fingerprint: chrome # set fingerprint for TLS transport
|
||||
# experimental: # experimental config
|
||||
# quic-go-disable-gso: false # disable quic-go GSO support
|
||||
# quic-go-disable-ecn: false # disable quic-go ECN support
|
||||
# dialer-ip4p-convert: false # IP4P support
|
||||
# proxies: # overwrite proxies
|
||||
# - name: "PROXY"
|
||||
# type: ss
|
||||
# server: proxy.example.com
|
||||
# port: 443
|
||||
# cipher: chacha20-ietf-poly1305
|
||||
# password: "password"
|
||||
# rules: # overwrite rules
|
||||
# - DOMAIN,google.com,PROXY
|
||||
# - DOMAIN-SUFFIX,google.com,PROXY
|
||||
# - DOMAIN-KEYWORD,google,PROXY
|
||||
# - DOMAIN-REGEX,^google.*com,PROXY
|
||||
# - GEOSITE,google,PROXY
|
||||
# - GEOSITE,cn,DIRECT
|
||||
# - IP-CIDR,8.8.8.8/32,DIRECT,no-resolve
|
||||
# - GEOIP,telegram,DIRECT
|
||||
# - GEOIP,cn,DIRECT
|
||||
# - Match,PROXY
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,243 +0,0 @@
|
||||
#!/usr/sbin/nft -f
|
||||
|
||||
table inet mihomo {
|
||||
set bypass_user {
|
||||
type uid
|
||||
flags interval
|
||||
auto-merge
|
||||
}
|
||||
|
||||
set bypass_group {
|
||||
type gid
|
||||
flags interval
|
||||
auto-merge
|
||||
elements = {
|
||||
$MIHOMO_GROUP
|
||||
}
|
||||
}
|
||||
|
||||
set bypass_dscp {
|
||||
type dscp
|
||||
flags interval
|
||||
}
|
||||
|
||||
set dns_hijack_nfproto {
|
||||
type nf_proto
|
||||
flags interval
|
||||
}
|
||||
|
||||
set proxy_nfproto {
|
||||
type nf_proto
|
||||
flags interval
|
||||
}
|
||||
|
||||
set china_ip {
|
||||
type ipv4_addr
|
||||
flags interval
|
||||
}
|
||||
|
||||
set china_ip6 {
|
||||
type ipv6_addr
|
||||
flags interval
|
||||
}
|
||||
|
||||
set reserved_ip {
|
||||
type ipv4_addr
|
||||
flags interval
|
||||
auto-merge
|
||||
}
|
||||
|
||||
set reserved_ip6 {
|
||||
type ipv6_addr
|
||||
flags interval
|
||||
auto-merge
|
||||
}
|
||||
|
||||
set proxy_dport {
|
||||
type inet_proto . inet_service
|
||||
flags interval
|
||||
auto-merge
|
||||
}
|
||||
|
||||
set acl_ip {
|
||||
type ipv4_addr
|
||||
flags interval
|
||||
auto-merge
|
||||
}
|
||||
|
||||
set acl_ip6 {
|
||||
type ipv6_addr
|
||||
flags interval
|
||||
auto-merge
|
||||
}
|
||||
|
||||
set acl_mac {
|
||||
type ether_addr
|
||||
flags interval
|
||||
auto-merge
|
||||
}
|
||||
|
||||
set acl_interface {
|
||||
type ifname
|
||||
flags interval
|
||||
auto-merge
|
||||
}
|
||||
|
||||
chain router_dns_hijack {
|
||||
meta skuid @bypass_user counter return
|
||||
meta skgid @bypass_group counter return
|
||||
meta nfproto @dns_hijack_nfproto meta l4proto { tcp, udp } th dport 53 counter redirect to :$DNS_PORT
|
||||
}
|
||||
|
||||
chain all_dns_hijack {
|
||||
meta nfproto @dns_hijack_nfproto meta l4proto { tcp, udp } th dport 53 counter redirect to :$DNS_PORT
|
||||
}
|
||||
|
||||
chain allow_dns_hijack {
|
||||
meta nfproto @dns_hijack_nfproto meta l4proto { tcp, udp } th dport 53 ip saddr @acl_ip counter redirect to :$DNS_PORT
|
||||
meta nfproto @dns_hijack_nfproto meta l4proto { tcp, udp } th dport 53 ip6 saddr @acl_ip6 counter redirect to :$DNS_PORT
|
||||
meta nfproto @dns_hijack_nfproto meta l4proto { tcp, udp } th dport 53 ether saddr @acl_mac counter redirect to :$DNS_PORT
|
||||
meta nfproto @dns_hijack_nfproto meta l4proto { tcp, udp } th dport 53 iifname @acl_interface counter redirect to :$DNS_PORT
|
||||
}
|
||||
|
||||
chain block_dns_hijack {
|
||||
meta nfproto @dns_hijack_nfproto meta l4proto { tcp, udp } th dport 53 ip saddr @acl_ip counter return
|
||||
meta nfproto @dns_hijack_nfproto meta l4proto { tcp, udp } th dport 53 ip6 saddr @acl_ip6 counter return
|
||||
meta nfproto @dns_hijack_nfproto meta l4proto { tcp, udp } th dport 53 ether saddr @acl_mac counter return
|
||||
meta nfproto @dns_hijack_nfproto meta l4proto { tcp, udp } th dport 53 iifname @acl_interface counter return
|
||||
meta nfproto @dns_hijack_nfproto meta l4proto { tcp, udp } th dport 53 counter redirect to :$DNS_PORT
|
||||
}
|
||||
|
||||
chain router_redirect {
|
||||
meta nfproto @proxy_nfproto meta l4proto tcp counter redirect to :$REDIR_PORT
|
||||
}
|
||||
|
||||
chain all_redirect {
|
||||
meta nfproto @proxy_nfproto meta l4proto tcp counter redirect to :$REDIR_PORT
|
||||
}
|
||||
|
||||
chain allow_redirect {
|
||||
meta nfproto @proxy_nfproto meta l4proto tcp ip saddr @acl_ip counter redirect to :$REDIR_PORT
|
||||
meta nfproto @proxy_nfproto meta l4proto tcp ip6 saddr @acl_ip6 counter redirect to :$REDIR_PORT
|
||||
meta nfproto @proxy_nfproto meta l4proto tcp ether saddr @acl_mac counter redirect to :$REDIR_PORT
|
||||
meta nfproto @proxy_nfproto meta l4proto tcp iifname @acl_interface counter redirect to :$REDIR_PORT
|
||||
}
|
||||
|
||||
chain block_redirect {
|
||||
meta nfproto @proxy_nfproto meta l4proto tcp ip saddr @acl_ip counter return
|
||||
meta nfproto @proxy_nfproto meta l4proto tcp ip6 saddr @acl_ip6 counter return
|
||||
meta nfproto @proxy_nfproto meta l4proto tcp ether saddr @acl_mac counter return
|
||||
meta nfproto @proxy_nfproto meta l4proto tcp iifname @acl_interface counter return
|
||||
meta nfproto @proxy_nfproto meta l4proto tcp counter redirect to :$REDIR_PORT
|
||||
}
|
||||
|
||||
chain router_tproxy {
|
||||
meta nfproto @proxy_nfproto meta l4proto { tcp, udp } meta mark set mark ^ $FW_MARK counter
|
||||
}
|
||||
|
||||
chain all_tproxy {
|
||||
meta nfproto @proxy_nfproto meta l4proto { tcp, udp } meta mark set mark ^ $FW_MARK tproxy to :$TPROXY_PORT counter accept
|
||||
}
|
||||
|
||||
chain allow_tproxy {
|
||||
meta nfproto @proxy_nfproto meta l4proto { tcp, udp } ip saddr @acl_ip meta mark set mark ^ $FW_MARK tproxy ip to :$TPROXY_PORT counter accept
|
||||
meta nfproto @proxy_nfproto meta l4proto { tcp, udp } ip6 saddr @acl_ip6 meta mark set mark ^ $FW_MARK tproxy ip6 to :$TPROXY_PORT counter accept
|
||||
meta nfproto @proxy_nfproto meta l4proto { tcp, udp } ether saddr @acl_mac meta mark set mark ^ $FW_MARK tproxy to :$TPROXY_PORT counter accept
|
||||
meta nfproto @proxy_nfproto meta l4proto { tcp, udp } iifname @acl_interface meta mark set mark ^ $FW_MARK tproxy to :$TPROXY_PORT counter accept
|
||||
}
|
||||
|
||||
chain block_tproxy {
|
||||
meta nfproto @proxy_nfproto meta l4proto { tcp, udp } ip saddr @acl_ip counter return
|
||||
meta nfproto @proxy_nfproto meta l4proto { tcp, udp } ip6 saddr @acl_ip6 counter return
|
||||
meta nfproto @proxy_nfproto meta l4proto { tcp, udp } ether saddr @acl_mac counter return
|
||||
meta nfproto @proxy_nfproto meta l4proto { tcp, udp } iifname @acl_interface counter return
|
||||
meta nfproto @proxy_nfproto meta l4proto { tcp, udp } meta mark set mark ^ $FW_MARK tproxy to :$TPROXY_PORT counter accept
|
||||
}
|
||||
|
||||
chain router_tun {
|
||||
meta nfproto @proxy_nfproto meta l4proto { tcp, udp } meta mark set mark ^ $FW_MARK counter
|
||||
}
|
||||
|
||||
chain all_tun {
|
||||
meta nfproto @proxy_nfproto meta l4proto { tcp, udp } meta mark set mark ^ $FW_MARK counter
|
||||
}
|
||||
|
||||
chain allow_tun {
|
||||
meta nfproto @proxy_nfproto meta l4proto { tcp, udp } ip saddr @acl_ip meta mark set mark ^ $FW_MARK counter
|
||||
meta nfproto @proxy_nfproto meta l4proto { tcp, udp } ip6 saddr @acl_ip6 meta mark set mark ^ $FW_MARK counter
|
||||
meta nfproto @proxy_nfproto meta l4proto { tcp, udp } ether saddr @acl_mac meta mark set mark ^ $FW_MARK counter
|
||||
meta nfproto @proxy_nfproto meta l4proto { tcp, udp } iifname @acl_interface meta mark set mark ^ $FW_MARK counter
|
||||
}
|
||||
|
||||
chain block_tun {
|
||||
meta nfproto @proxy_nfproto meta l4proto { tcp, udp } ip saddr @acl_ip counter return
|
||||
meta nfproto @proxy_nfproto meta l4proto { tcp, udp } ip6 saddr @acl_ip6 counter return
|
||||
meta nfproto @proxy_nfproto meta l4proto { tcp, udp } ether saddr @acl_mac counter return
|
||||
meta nfproto @proxy_nfproto meta l4proto { tcp, udp } iifname @acl_interface counter return
|
||||
meta nfproto @proxy_nfproto meta l4proto { tcp, udp } meta mark set mark ^ $FW_MARK counter
|
||||
}
|
||||
|
||||
chain dstnat {
|
||||
type nat hook prerouting priority dstnat + 1; policy accept;
|
||||
fib daddr type { local, multicast, broadcast, anycast } counter return
|
||||
ct direction reply counter return
|
||||
ip daddr @reserved_ip counter return
|
||||
ip6 daddr @reserved_ip6 counter return
|
||||
ip daddr @china_ip counter return
|
||||
ip6 daddr @china_ip6 counter return
|
||||
meta nfproto ipv4 meta l4proto . th dport != @proxy_dport ip daddr != $FAKE_IP counter return
|
||||
meta nfproto ipv6 meta l4proto . th dport != @proxy_dport counter return
|
||||
meta l4proto { tcp, udp } ip dscp == @bypass_dscp ip daddr != $FAKE_IP counter return
|
||||
meta l4proto { tcp, udp } ip6 dscp == @bypass_dscp counter return
|
||||
}
|
||||
|
||||
chain nat_output {
|
||||
type nat hook output priority filter; policy accept;
|
||||
meta skuid @bypass_user counter return
|
||||
meta skgid @bypass_group counter return
|
||||
fib daddr type { local, multicast, broadcast, anycast } counter return
|
||||
ct direction reply counter return
|
||||
ip daddr @reserved_ip counter return
|
||||
ip6 daddr @reserved_ip6 counter return
|
||||
ip daddr @china_ip counter return
|
||||
ip6 daddr @china_ip6 counter return
|
||||
meta nfproto ipv4 meta l4proto . th dport != @proxy_dport ip daddr != $FAKE_IP counter return
|
||||
meta nfproto ipv6 meta l4proto . th dport != @proxy_dport counter return
|
||||
meta l4proto { tcp, udp } ip dscp == @bypass_dscp ip daddr != $FAKE_IP counter return
|
||||
meta l4proto { tcp, udp } ip6 dscp == @bypass_dscp counter return
|
||||
}
|
||||
|
||||
chain mangle_prerouting {
|
||||
type filter hook prerouting priority mangle; policy accept;
|
||||
meta l4proto { tcp, udp } iifname lo meta mark & $FW_MARK_MASK == $FW_MARK tproxy to :$TPROXY_PORT counter accept
|
||||
meta l4proto { tcp, udp } iifname $TUN_DEVICE counter accept
|
||||
fib daddr type { local, multicast, broadcast, anycast } counter return
|
||||
ct direction reply counter return
|
||||
ip daddr @reserved_ip counter return
|
||||
ip6 daddr @reserved_ip6 counter return
|
||||
ip daddr @china_ip counter return
|
||||
ip6 daddr @china_ip6 counter return
|
||||
meta nfproto ipv4 meta l4proto . th dport != @proxy_dport ip daddr != $FAKE_IP counter return
|
||||
meta nfproto ipv6 meta l4proto . th dport != @proxy_dport counter return
|
||||
meta l4proto { tcp, udp } ip dscp == @bypass_dscp ip daddr != $FAKE_IP counter return
|
||||
meta l4proto { tcp, udp } ip6 dscp == @bypass_dscp counter return
|
||||
meta nfproto @dns_hijack_nfproto meta l4proto { tcp, udp } th dport 53 counter return
|
||||
}
|
||||
|
||||
chain mangle_output {
|
||||
type route hook output priority mangle; policy accept;
|
||||
meta skuid @bypass_user counter return
|
||||
meta skgid @bypass_group counter return
|
||||
fib daddr type { local, multicast, broadcast, anycast } counter return
|
||||
ct direction reply counter return
|
||||
ip daddr @reserved_ip counter return
|
||||
ip6 daddr @reserved_ip6 counter return
|
||||
ip daddr @china_ip counter return
|
||||
ip6 daddr @china_ip6 counter return
|
||||
meta nfproto ipv4 meta l4proto . th dport != @proxy_dport ip daddr != $FAKE_IP counter return
|
||||
meta nfproto ipv6 meta l4proto . th dport != @proxy_dport counter return
|
||||
meta l4proto { tcp, udp } ip dscp == @bypass_dscp ip daddr != $FAKE_IP counter return
|
||||
meta l4proto { tcp, udp } ip6 dscp == @bypass_dscp counter return
|
||||
meta nfproto @dns_hijack_nfproto meta l4proto { tcp, udp } th dport 53 counter return
|
||||
}
|
||||
}
|
@ -1,19 +0,0 @@
|
||||
#!/usr/sbin/nft -f
|
||||
|
||||
table inet mihomo {
|
||||
set reserved_ip {
|
||||
type ipv4_addr
|
||||
flags interval
|
||||
elements = {
|
||||
0.0.0.0/8,
|
||||
10.0.0.0/8,
|
||||
127.0.0.0/8,
|
||||
100.64.0.0/10,
|
||||
169.254.0.0/16,
|
||||
172.16.0.0/12,
|
||||
192.168.0.0/16,
|
||||
224.0.0.0/4,
|
||||
240.0.0.0/4
|
||||
}
|
||||
}
|
||||
}
|
@ -1,23 +0,0 @@
|
||||
#!/usr/sbin/nft -f
|
||||
|
||||
table inet mihomo {
|
||||
set reserved_ip6 {
|
||||
type ipv6_addr
|
||||
flags interval
|
||||
elements = {
|
||||
::/128,
|
||||
::1/128,
|
||||
::ffff:0:0/96,
|
||||
100::/64,
|
||||
64:ff9b::/96,
|
||||
2001::/32,
|
||||
2001:10::/28,
|
||||
2001:20::/28,
|
||||
2001:db8::/32,
|
||||
2002::/16,
|
||||
fc00::/7,
|
||||
fe80::/10,
|
||||
ff00::/8
|
||||
}
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
. "$IPKG_INSTROOT/lib/functions.sh"
|
||||
. "$IPKG_INSTROOT/etc/mihomo/scripts/include.sh"
|
||||
|
||||
config_load mihomo
|
||||
config_get enabled "config" "enabled" 0
|
||||
config_get tcp_transparent_proxy_mode "proxy" "tcp_transparent_proxy_mode"
|
||||
config_get udp_transparent_proxy_mode "proxy" "udp_transparent_proxy_mode"
|
||||
config_get tun_device "mixin" "tun_device"
|
||||
|
||||
if [ "$enabled" == 1 ] && [[ "$tcp_transparent_proxy_mode" == "tun" || "$udp_transparent_proxy_mode" == "tun" ]]; then
|
||||
nft insert rule inet fw4 input iifname "$tun_device" counter accept comment "mihomo"
|
||||
nft insert rule inet fw4 forward oifname "$tun_device" counter accept comment "mihomo"
|
||||
nft insert rule inet fw4 forward iifname "$tun_device" counter accept comment "mihomo"
|
||||
fi
|
||||
|
||||
exit 0
|
@ -1,97 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
# permission
|
||||
MIHOMO_USER="root"
|
||||
MIHOMO_GROUP="mihomo"
|
||||
|
||||
# routing
|
||||
FW_TABLE="mihomo"
|
||||
FW_MARK="0x80"
|
||||
FW_MARK_MASK="0xFF"
|
||||
TCP_RULE_PREF="1024"
|
||||
UDP_RULE_PREF="1025"
|
||||
TPROXY_ROUTE_TABLE="80"
|
||||
TUN_ROUTE_TABLE="81"
|
||||
|
||||
# paths
|
||||
PROG="/usr/bin/mihomo"
|
||||
HOME_DIR="/etc/mihomo"
|
||||
PROFILES_DIR="$HOME_DIR/profiles"
|
||||
SUBSCRIPTIONS_DIR="$HOME_DIR/subscriptions"
|
||||
MIXIN_FILE_PATH="$HOME_DIR/mixin.yaml"
|
||||
RUN_DIR="$HOME_DIR/run"
|
||||
RUN_PROFILE_PATH="$RUN_DIR/config.yaml"
|
||||
RUN_UI_DIR="$RUN_DIR/ui"
|
||||
|
||||
# log
|
||||
LOG_DIR="/var/log/mihomo"
|
||||
APP_LOG_PATH="$LOG_DIR/app.log"
|
||||
CORE_LOG_PATH="$LOG_DIR/core.log"
|
||||
|
||||
# flag
|
||||
FLAG_DIR="/var/run/mihomo"
|
||||
STARTED_FLAG="$FLAG_DIR/started.flag"
|
||||
BRIDGE_NF_CALL_IPTABLES_FLAG="$FLAG_DIR/bridge_nf_call_iptables.flag"
|
||||
BRIDGE_NF_CALL_IP6TABLES_FLAG="$FLAG_DIR/bridge_nf_call_ip6tables.flag"
|
||||
|
||||
# scripts
|
||||
SH_DIR="$HOME_DIR/scripts"
|
||||
INCLUDE_SH="$SH_DIR/include.sh"
|
||||
FIREWALL_INCLUDE_SH="$SH_DIR/firewall_include.sh"
|
||||
|
||||
# nftables
|
||||
NFT_DIR="$HOME_DIR/nftables"
|
||||
HIJACK_NFT="$NFT_DIR/hijack.nft"
|
||||
RESERVED_IP_NFT="$NFT_DIR/reserved_ip.nft"
|
||||
RESERVED_IP6_NFT="$NFT_DIR/reserved_ip6.nft"
|
||||
GEOIP_CN_NFT="$NFT_DIR/geoip_cn.nft"
|
||||
GEOIP6_CN_NFT="$NFT_DIR/geoip6_cn.nft"
|
||||
|
||||
# functions
|
||||
format_filesize() {
|
||||
local kb; kb=1024
|
||||
local mb; mb=$((kb * 1024))
|
||||
local gb; gb=$((mb * 1024))
|
||||
local tb; tb=$((gb * 1024))
|
||||
local pb; pb=$((tb * 1024))
|
||||
local size; size="$1"
|
||||
if [ -z "$size" ]; then
|
||||
echo ""
|
||||
elif [ "$size" -lt "$kb" ]; then
|
||||
echo "$size B"
|
||||
elif [ "$size" -lt "$mb" ]; then
|
||||
echo "$(awk "BEGIN {print $size / $kb}") KB"
|
||||
elif [ "$size" -lt "$gb" ]; then
|
||||
echo "$(awk "BEGIN {print $size / $mb}") MB"
|
||||
elif [ "$size" -lt "$tb" ]; then
|
||||
echo "$(awk "BEGIN {print $size / $gb}") GB"
|
||||
elif [ "$size" -lt "$pb" ]; then
|
||||
echo "$(awk "BEGIN {print $size / $tb}") TB"
|
||||
else
|
||||
echo "$(awk "BEGIN {print $size / $pb}") PB"
|
||||
fi
|
||||
}
|
||||
|
||||
prepare_files() {
|
||||
if [ ! -d "$LOG_DIR" ]; then
|
||||
mkdir -p "$LOG_DIR"
|
||||
fi
|
||||
if [ ! -f "$APP_LOG_PATH" ]; then
|
||||
touch "$APP_LOG_PATH"
|
||||
fi
|
||||
if [ ! -f "$CORE_LOG_PATH" ]; then
|
||||
touch "$CORE_LOG_PATH"
|
||||
fi
|
||||
if [ ! -d "$FLAG_DIR" ]; then
|
||||
mkdir -p "$FLAG_DIR"
|
||||
fi
|
||||
}
|
||||
|
||||
clear_log() {
|
||||
echo -n > "$APP_LOG_PATH"
|
||||
echo -n > "$CORE_LOG_PATH"
|
||||
}
|
||||
|
||||
log() {
|
||||
echo "[$(date "+%Y-%m-%d %H:%M:%S")] [$1] $2" >> "$APP_LOG_PATH"
|
||||
}
|
@ -1,12 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
. "$IPKG_INSTROOT/etc/mihomo/scripts/include.sh"
|
||||
|
||||
uci -q batch <<-EOF > /dev/null
|
||||
del firewall.mihomo
|
||||
set firewall.mihomo=include
|
||||
set firewall.mihomo.type=script
|
||||
set firewall.mihomo.path=$FIREWALL_INCLUDE_SH
|
||||
set firewall.mihomo.fw4_compatible=1
|
||||
commit firewall
|
||||
EOF
|
@ -1,24 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
. "$IPKG_INSTROOT/etc/mihomo/scripts/include.sh"
|
||||
|
||||
# check mihomo.config.init
|
||||
init=$(uci -q get mihomo.config.init); [ -z "$init" ] && return
|
||||
|
||||
# generate random string for api secret and authentication password
|
||||
random=$(awk 'BEGIN{srand(); print int(rand() * 1000000)}')
|
||||
|
||||
# set mihomo.mixin.api_secret
|
||||
uci set mihomo.mixin.api_secret="$random"
|
||||
|
||||
# set mihomo.@authentication[0].password
|
||||
uci set mihomo.@authentication[0].password="$random"
|
||||
|
||||
# remove mihomo.config.init
|
||||
uci del mihomo.config.init
|
||||
|
||||
# commit
|
||||
uci commit mihomo
|
||||
|
||||
# exit with 0
|
||||
exit 0
|
@ -1,108 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
. "$IPKG_INSTROOT/etc/mihomo/scripts/include.sh"
|
||||
|
||||
# since v1.8.4
|
||||
|
||||
dns_doh_prefer_http3=$(uci -q get mihomo.mixin.dns_doh_prefer_http3); [ -z "$dns_doh_prefer_http3" ] && uci set mihomo.mixin.dns_doh_prefer_http3=0
|
||||
|
||||
# since v1.8.7
|
||||
|
||||
mixin_file_content=$(uci -q get mihomo.mixin.mixin_file_content); [ -z "$mixin_file_content" ] && uci set mihomo.mixin.mixin_file_content=$(uci -q get mihomo.config.mixin)
|
||||
|
||||
# since v1.9.3
|
||||
|
||||
start_delay=$(uci -q get mihomo.config.start_delay); [ -z "$start_delay" ] && uci set mihomo.config.start_delay=0
|
||||
|
||||
# since v1.11.0
|
||||
|
||||
acl_tcp_dport=$(uci -q get mihomo.proxy.acl_tcp_dport); [ -n "$acl_tcp_dport" ] && uci rename mihomo.proxy.acl_tcp_dport=proxy_tcp_dport
|
||||
|
||||
acl_udp_dport=$(uci -q get mihomo.proxy.acl_udp_dport); [ -n "$acl_udp_dport" ] && uci rename mihomo.proxy.acl_udp_dport=proxy_udp_dport
|
||||
|
||||
bypass_user=$(uci -q get mihomo.proxy.bypass_user); [ -z "$bypass_user" ] && {
|
||||
uci add_list mihomo.proxy.bypass_user=aria2
|
||||
uci add_list mihomo.proxy.bypass_user=dnsmasq
|
||||
uci add_list mihomo.proxy.bypass_user=ftp
|
||||
uci add_list mihomo.proxy.bypass_user=logd
|
||||
uci add_list mihomo.proxy.bypass_user=nobody
|
||||
uci add_list mihomo.proxy.bypass_user=ntp
|
||||
uci add_list mihomo.proxy.bypass_user=ubus
|
||||
}
|
||||
|
||||
bypass_group=$(uci -q get mihomo.proxy.bypass_group); [ -z "$bypass_group" ] && {
|
||||
uci add_list mihomo.proxy.bypass_group=aria2
|
||||
uci add_list mihomo.proxy.bypass_group=dnsmasq
|
||||
uci add_list mihomo.proxy.bypass_group=ftp
|
||||
uci add_list mihomo.proxy.bypass_group=logd
|
||||
uci add_list mihomo.proxy.bypass_group=nogroup
|
||||
uci add_list mihomo.proxy.bypass_group=ntp
|
||||
uci add_list mihomo.proxy.bypass_group=ubus
|
||||
}
|
||||
|
||||
# since v1.12.0
|
||||
|
||||
env=$(uci -q get mihomo.env); [ -z "$env" ] && {
|
||||
uci set mihomo.env=env
|
||||
uci set mihomo.env.disable_safe_path_check=0
|
||||
uci set mihomo.env.disable_loopback_detector=0
|
||||
uci set mihomo.env.disable_quic_go_gso=0
|
||||
uci set mihomo.env.disable_quic_go_ecn=0
|
||||
}
|
||||
|
||||
# since v1.15.0
|
||||
|
||||
tun_device=$(uci -q get mihomo.mixin.tun_device); [ -z "$tun_device" ] && uci set mihomo.mixin.tun_device=mihomo
|
||||
|
||||
# since v1.16.0
|
||||
|
||||
unify_delay=$(uci -q get mihomo.mixin.unify_delay); [ -z "$unify_delay" ] && uci set mihomo.mixin.unify_delay=1
|
||||
|
||||
tcp_concurrent=$(uci -q get mihomo.mixin.tcp_concurrent); [ -z "$tcp_concurrent" ] && uci set mihomo.mixin.tcp_concurrent=1
|
||||
|
||||
sniffer=$(uci -q get mihomo.mixin.sniffer); [ -z "$sniffer" ] && {
|
||||
uci set mihomo.mixin.sniffer=0
|
||||
uci set mihomo.mixin.sniffer_sniff_dns_mapping=1
|
||||
uci set mihomo.mixin.sniffer_sniff_pure_ip=1
|
||||
uci set mihomo.mixin.sniffer_overwrite_destination=0
|
||||
uci set mihomo.mixin.sniffer_force_domain_name=0
|
||||
uci set mihomo.mixin.sniffer_ignore_domain_name=0
|
||||
uci set mihomo.mixin.sniffer_sniff=0
|
||||
|
||||
uci add mihomo sniff
|
||||
uci set mihomo.@sniff[-1].enabled=1
|
||||
uci set mihomo.@sniff[-1].protocol=HTTP
|
||||
uci add_list mihomo.@sniff[-1].port=80
|
||||
uci add_list mihomo.@sniff[-1].port=8080
|
||||
uci set mihomo.@sniff[-1].overwrite_destination=1
|
||||
|
||||
uci add mihomo sniff
|
||||
uci set mihomo.@sniff[-1].enabled=1
|
||||
uci set mihomo.@sniff[-1].protocol=TLS
|
||||
uci add_list mihomo.@sniff[-1].port=443
|
||||
uci add_list mihomo.@sniff[-1].port=8443
|
||||
uci set mihomo.@sniff[-1].overwrite_destination=1
|
||||
|
||||
uci add mihomo sniff
|
||||
uci set mihomo.@sniff[-1].enabled=1
|
||||
uci set mihomo.@sniff[-1].protocol=QUIC
|
||||
uci add_list mihomo.@sniff[-1].port=443
|
||||
uci add_list mihomo.@sniff[-1].port=8443
|
||||
uci set mihomo.@sniff[-1].overwrite_destination=1
|
||||
}
|
||||
|
||||
uci show mihomo | grep -E 'mihomo.@host\[[[:digit:]]+\]=host' | sed 's/mihomo.@host\[\([[:digit:]]\+\)\]=host/set mihomo.@host[\1]=hosts/' | uci batch
|
||||
|
||||
# since v1.17.5
|
||||
|
||||
tun_dns_hijack=$(uci -q get mihomo.mixin.tun_dns_hijack); [ -z "$tun_dns_hijack" ] && {
|
||||
uci set mihomo.mixin.tun_dns_hijack=0
|
||||
uci add_list mihomo.mixin.tun_dns_hijacks=tcp://any:53
|
||||
uci add_list mihomo.mixin.tun_dns_hijacks=udp://any:53
|
||||
}
|
||||
|
||||
# commit
|
||||
uci commit mihomo
|
||||
|
||||
# exit with 0
|
||||
exit 0
|
@ -21,13 +21,13 @@ define Download/geoip
|
||||
HASH:=f2f5f03da44d007fa91fb6a37c077c9efae8ad0269ef0e4130cf90b0822873e3
|
||||
endef
|
||||
|
||||
GEOSITE_VER:=20250207120917
|
||||
GEOSITE_VER:=20250209081110
|
||||
GEOSITE_FILE:=dlc.dat.$(GEOSITE_VER)
|
||||
define Download/geosite
|
||||
URL:=https://github.com/v2fly/domain-list-community/releases/download/$(GEOSITE_VER)/
|
||||
URL_FILE:=dlc.dat
|
||||
FILE:=$(GEOSITE_FILE)
|
||||
HASH:=b0ece9a9c0d74ee647a502a5cc8266fe3931c3d530c2ad0fa508ed0fb9f7836e
|
||||
HASH:=797e75a9cf898b45101510b809a8cf8d1b0ea939c0cf57e889a703146a6ae3c5
|
||||
endef
|
||||
|
||||
GEOSITE_IRAN_VER:=202502030035
|
||||
|
Loading…
x
Reference in New Issue
Block a user