From 50044435a70244a83a5496f4bdb62881203fb1c8 Mon Sep 17 00:00:00 2001 From: CodeRoK7 <58553260+CodeRoK7@users.noreply.github.com> Date: Sun, 27 Jul 2025 20:34:43 +0000 Subject: [PATCH] Add config file dns-failsafe-proxy --- config_files/dns-failsafe-proxy | 11 +++++++++++ universal_config_new_podkop.sh | 5 +++-- 2 files changed, 14 insertions(+), 2 deletions(-) create mode 100644 config_files/dns-failsafe-proxy diff --git a/config_files/dns-failsafe-proxy b/config_files/dns-failsafe-proxy new file mode 100644 index 0000000..d12e259 --- /dev/null +++ b/config_files/dns-failsafe-proxy @@ -0,0 +1,11 @@ + +config dns-failsafe-proxy 'main' + option listen_ip '127.0.0.1' + option listen_port '5359' + option dns_ip '127.0.0.42' + option dns_port '53' + option failback_ip '127.0.0.1' + option failback_port '5453' + option connect_timeout '150' + option session_timeout '2000' + diff --git a/universal_config_new_podkop.sh b/universal_config_new_podkop.sh index d6a311e..ce8f973 100644 --- a/universal_config_new_podkop.sh +++ b/universal_config_new_podkop.sh @@ -515,7 +515,8 @@ config_files="network firewall https-dns-proxy youtubeUnblock -dhcp" +dhcp +dns-failsafe-proxy" URL="https://raw.githubusercontent.com/routerich/RouterichAX3000_configs/refs/heads/beta_alt" checkPackageAndInstall "https-dns-proxy" "0" @@ -532,7 +533,7 @@ then for file in $config_files do - if [ "$file" == "https-dns-proxy" ] + if [ "$file" == "https-dns-proxy" ] || [ "$file" == "dns-failsafe-proxy" ] then wget -O "$DIR/$file" "$URL/config_files/$file" fi