Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f90ab7f468 | ||
|
|
e4bfd447ce | ||
|
|
fbdd759b83 | ||
|
|
2488bc30b1 | ||
|
|
dcc12cf920 | ||
|
|
c99cef9f27 | ||
|
|
8a68f3fcc2 |
10
README.md
10
README.md
@@ -1,6 +1,6 @@
|
|||||||
# Вещи, которые вам нужно знать перед установкой
|
# Вещи, которые вам нужно знать перед установкой
|
||||||
|
|
||||||
- Это альфа версия, которая находится в активной разработке. Из версии в версию что-то может меняться.
|
- Это бета-версия, которая находится в активной разработке. Из версии в версию что-то может меняться.
|
||||||
- При возникновении проблем, нужен технически грамотный фидбэк в чат.
|
- При возникновении проблем, нужен технически грамотный фидбэк в чат.
|
||||||
- При обновлении **обязательно** [сбрасывайте кэш LuCI](https://podkop.net/docs/clearbrowsercache/).
|
- При обновлении **обязательно** [сбрасывайте кэш LuCI](https://podkop.net/docs/clearbrowsercache/).
|
||||||
- Также при обновлении всегда заходите в конфигурацию и проверяйте свои настройки. Конфигурация может измениться.
|
- Также при обновлении всегда заходите в конфигурацию и проверяйте свои настройки. Конфигурация может измениться.
|
||||||
@@ -38,10 +38,10 @@ sh <(wget -qO- https://raw.githubusercontent.com/itdoginfo/podkop/refs/heads/mai
|
|||||||
|
|
||||||
## Списки
|
## Списки
|
||||||
- [ ] Speedtest
|
- [ ] Speedtest
|
||||||
- [ ] Google AI
|
- [x] Google AI
|
||||||
- [ ] Google PlayMarket. Здесь уточнить, что точно не работает через корректную настройку FakeIP, а не dnsmasq+nft.
|
- [x] Google PlayMarket. Здесь уточнить, что точно не работает через корректную настройку FakeIP, а не dnsmasq+nft.
|
||||||
- [ ] Hetzner ASN (AS24940)
|
- [x] Hetzner ASN (AS24940)
|
||||||
- [ ] OVH ASN (AS16276)
|
- [x] OVH ASN (AS16276)
|
||||||
|
|
||||||
## Будущее
|
## Будущее
|
||||||
- [ ] После наполнения вики про туннели, убрать всё что связано с их установкой из скрипта. Только с AWG что-то решить, лучше чтоб был скрипт в сторонем репозитории.
|
- [ ] После наполнения вики про туннели, убрать всё что связано с их установкой из скрипта. Только с AWG что-то решить, лучше чтоб был скрипт в сторонем репозитории.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=luci-app-podkop
|
PKG_NAME:=luci-app-podkop
|
||||||
PKG_VERSION:=0.3.50
|
PKG_VERSION:=0.4.0
|
||||||
PKG_RELEASE:=1
|
PKG_RELEASE:=1
|
||||||
|
|
||||||
LUCI_TITLE:=LuCI podkop app
|
LUCI_TITLE:=LuCI podkop app
|
||||||
|
|||||||
@@ -681,7 +681,7 @@ const showConfigModal = async (command, title) => {
|
|||||||
E('button', {
|
E('button', {
|
||||||
'class': 'btn',
|
'class': 'btn',
|
||||||
'id': 'copy-button',
|
'id': 'copy-button',
|
||||||
'click': ev => copyToClipboard(document.getElementById('modal-content-pre').innerText, ev.target)
|
'click': ev => copyToClipboard('```txt\n' + document.getElementById('modal-content-pre').innerText + '\n```', ev.target)
|
||||||
}, _('Copy to Clipboard')),
|
}, _('Copy to Clipboard')),
|
||||||
E('button', {
|
E('button', {
|
||||||
'class': 'btn',
|
'class': 'btn',
|
||||||
@@ -847,7 +847,7 @@ const createStatusPanel = (title, status, buttons, extraData = {}) => {
|
|||||||
ButtonFactory.createModalButton({
|
ButtonFactory.createModalButton({
|
||||||
label: E('strong', _('Global check')),
|
label: E('strong', _('Global check')),
|
||||||
command: 'global_check',
|
command: 'global_check',
|
||||||
title: _('Click here for all the info')
|
title: _('Global check')
|
||||||
}),
|
}),
|
||||||
ButtonFactory.createModalButton({
|
ButtonFactory.createModalButton({
|
||||||
label: 'View Logs',
|
label: 'View Logs',
|
||||||
@@ -1126,6 +1126,64 @@ function stopErrorPolling() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async function checkFakeIP() {
|
||||||
|
const createStatus = (state, message, color) => ({
|
||||||
|
state,
|
||||||
|
message: _(message),
|
||||||
|
color: STATUS_COLORS[color]
|
||||||
|
});
|
||||||
|
|
||||||
|
try {
|
||||||
|
const controller = new AbortController();
|
||||||
|
const timeoutId = setTimeout(() => controller.abort(), FETCH_TIMEOUT);
|
||||||
|
|
||||||
|
try {
|
||||||
|
const response = await fetch('https://fakeip.podkop.fyi/check', { signal: controller.signal });
|
||||||
|
const data = await response.json();
|
||||||
|
clearTimeout(timeoutId);
|
||||||
|
|
||||||
|
if (data.fakeip === true) {
|
||||||
|
return createStatus('working', 'working', 'SUCCESS');
|
||||||
|
} else {
|
||||||
|
return createStatus('not_working', 'not working', 'ERROR');
|
||||||
|
}
|
||||||
|
} catch (fetchError) {
|
||||||
|
clearTimeout(timeoutId);
|
||||||
|
const message = fetchError.name === 'AbortError' ? 'timeout' : 'check error';
|
||||||
|
return createStatus('error', message, 'WARNING');
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
return createStatus('error', 'check error', 'WARNING');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async function checkFakeIPCLI() {
|
||||||
|
const createStatus = (state, message, color) => ({
|
||||||
|
state,
|
||||||
|
message: _(message),
|
||||||
|
color: STATUS_COLORS[color]
|
||||||
|
});
|
||||||
|
|
||||||
|
try {
|
||||||
|
const singboxStatusResult = await safeExec('/usr/bin/podkop', ['get_sing_box_status']);
|
||||||
|
const singboxStatus = JSON.parse(singboxStatusResult.stdout || '{"running":0,"dns_configured":0}');
|
||||||
|
|
||||||
|
if (!singboxStatus.running) {
|
||||||
|
return createStatus('not_working', 'sing-box not running', 'ERROR');
|
||||||
|
}
|
||||||
|
|
||||||
|
const result = await safeExec('nslookup', ['-timeout=2', 'fakeip.podkop.fyi', '127.0.0.42']);
|
||||||
|
|
||||||
|
if (result.stdout && result.stdout.includes('198.18')) {
|
||||||
|
return createStatus('working', 'working on router', 'SUCCESS');
|
||||||
|
} else {
|
||||||
|
return createStatus('not_working', 'not working on router', 'ERROR');
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
return createStatus('error', 'CLI check error', 'WARNING');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return view.extend({
|
return view.extend({
|
||||||
async render() {
|
async render() {
|
||||||
document.head.insertAdjacentHTML('beforeend', `
|
document.head.insertAdjacentHTML('beforeend', `
|
||||||
@@ -1374,81 +1432,6 @@ return view.extend({
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function checkFakeIP() {
|
|
||||||
const createStatus = (state, message, color) => ({
|
|
||||||
state,
|
|
||||||
message: _(message),
|
|
||||||
color: STATUS_COLORS[color]
|
|
||||||
});
|
|
||||||
|
|
||||||
return new Promise(async (resolve) => {
|
|
||||||
try {
|
|
||||||
const singboxStatusResult = await safeExec('/usr/bin/podkop', ['get_sing_box_status']);
|
|
||||||
const singboxStatus = JSON.parse(singboxStatusResult.stdout || '{"running":0,"dns_configured":0}');
|
|
||||||
|
|
||||||
if (!singboxStatus.running) {
|
|
||||||
return resolve(createStatus('not_working', 'sing-box not running', 'ERROR'));
|
|
||||||
}
|
|
||||||
if (!singboxStatus.dns_configured) {
|
|
||||||
return resolve(createStatus('not_working', 'DNS not configured', 'ERROR'));
|
|
||||||
}
|
|
||||||
|
|
||||||
const controller = new AbortController();
|
|
||||||
const timeoutId = setTimeout(() => controller.abort(), FETCH_TIMEOUT);
|
|
||||||
|
|
||||||
try {
|
|
||||||
const response = await fetch('https://fakeip.podkop.fyi/check', { signal: controller.signal });
|
|
||||||
const data = await response.json();
|
|
||||||
clearTimeout(timeoutId);
|
|
||||||
|
|
||||||
if (data.fakeip === true) {
|
|
||||||
return resolve(createStatus('working', 'working', 'SUCCESS'));
|
|
||||||
} else {
|
|
||||||
return resolve(createStatus('not_working', 'not working', 'ERROR'));
|
|
||||||
}
|
|
||||||
} catch (fetchError) {
|
|
||||||
clearTimeout(timeoutId);
|
|
||||||
const message = fetchError.name === 'AbortError' ? 'timeout' : 'check error';
|
|
||||||
return resolve(createStatus('error', message, 'WARNING'));
|
|
||||||
}
|
|
||||||
} catch (error) {
|
|
||||||
return resolve(createStatus('error', 'check error', 'WARNING'));
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
function checkFakeIPCLI() {
|
|
||||||
const createStatus = (state, message, color) => ({
|
|
||||||
state,
|
|
||||||
message: _(message),
|
|
||||||
color: STATUS_COLORS[color]
|
|
||||||
});
|
|
||||||
|
|
||||||
return new Promise(async (resolve) => {
|
|
||||||
try {
|
|
||||||
const singboxStatusResult = await safeExec('/usr/bin/podkop', ['get_sing_box_status']);
|
|
||||||
const singboxStatus = JSON.parse(singboxStatusResult.stdout || '{"running":0,"dns_configured":0}');
|
|
||||||
|
|
||||||
if (!singboxStatus.running) {
|
|
||||||
return resolve(createStatus('not_working', 'sing-box not running', 'ERROR'));
|
|
||||||
}
|
|
||||||
if (!singboxStatus.dns_configured) {
|
|
||||||
return resolve(createStatus('not_working', 'DNS not configured', 'ERROR'));
|
|
||||||
}
|
|
||||||
|
|
||||||
const result = await safeExec('nslookup', ['-timeout=2', 'fakeip.podkop.fyi', '127.0.0.42']);
|
|
||||||
|
|
||||||
if (result.stdout && result.stdout.includes('198.18')) {
|
|
||||||
return resolve(createStatus('working', 'working on router', 'SUCCESS'));
|
|
||||||
} else {
|
|
||||||
return resolve(createStatus('not_working', 'not working on router', 'ERROR'));
|
|
||||||
}
|
|
||||||
} catch (error) {
|
|
||||||
return resolve(createStatus('error', 'CLI check error', 'WARNING'));
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
function checkBypass() {
|
function checkBypass() {
|
||||||
const createStatus = (state, message, color) => ({
|
const createStatus = (state, message, color) => ({
|
||||||
state,
|
state,
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=podkop
|
PKG_NAME:=podkop
|
||||||
PKG_VERSION:=0.3.50
|
PKG_VERSION:=0.4.0
|
||||||
PKG_RELEASE:=1
|
PKG_RELEASE:=1
|
||||||
|
|
||||||
PKG_MAINTAINER:=ITDog <podkop@itdog.info>
|
PKG_MAINTAINER:=ITDog <podkop@itdog.info>
|
||||||
|
|||||||
@@ -2464,6 +2464,40 @@ global_check() {
|
|||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
show_help() {
|
||||||
|
cat << EOF
|
||||||
|
Usage: $0 COMMAND
|
||||||
|
|
||||||
|
Available commands:
|
||||||
|
start Start podkop service
|
||||||
|
stop Stop podkop service
|
||||||
|
reload Reload podkop configuration
|
||||||
|
restart Restart podkop service
|
||||||
|
enable Enable podkop autostart
|
||||||
|
disable Disable podkop autostart
|
||||||
|
main Run main podkop process
|
||||||
|
list_update Update domain lists
|
||||||
|
check_proxy Check proxy connectivity
|
||||||
|
check_nft Check NFT rules
|
||||||
|
check_github Check GitHub connectivity
|
||||||
|
check_logs Show podkop logs from system journal
|
||||||
|
check_sing_box_connections Show active sing-box connections
|
||||||
|
check_sing_box_logs Show sing-box logs
|
||||||
|
check_fakeip Check FakeIP DNS functionality
|
||||||
|
check_dnsmasq Check DNSMasq configuration
|
||||||
|
show_config Display current podkop configuration
|
||||||
|
show_version Show podkop version
|
||||||
|
show_sing_box_config Show sing-box configuration
|
||||||
|
show_luci_version Show LuCI app version
|
||||||
|
show_sing_box_version Show sing-box version
|
||||||
|
show_system_info Show system information
|
||||||
|
get_status Get podkop service status
|
||||||
|
get_sing_box_status Get sing-box service status
|
||||||
|
check_dns_available Check DNS server availability
|
||||||
|
global_check Run global system check
|
||||||
|
EOF
|
||||||
|
}
|
||||||
|
|
||||||
case "$1" in
|
case "$1" in
|
||||||
start)
|
start)
|
||||||
start
|
start
|
||||||
@@ -2538,7 +2572,7 @@ case "$1" in
|
|||||||
global_check
|
global_check
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
echo "Usage: $0 {start|stop|reload|restart|enable|disable|main|list_update|check_proxy|check_nft|check_github|check_logs|check_sing_box_connections|check_sing_box_logs|check_fakeip|check_dnsmasq|show_config|show_version|show_sing_box_config|show_luci_version|show_sing_box_version|show_system_info|get_status|get_sing_box_status|check_dns_available|global_check}"
|
show_help
|
||||||
exit 1
|
exit 1
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
Reference in New Issue
Block a user