003 File Manager
Current Path:
/usr/src/contrib/unbound/contrib
usr
/
src
/
contrib
/
unbound
/
contrib
/
📁
..
📄
README
(3.49 KB)
📄
aaaa-filter-iterator.patch
(14.98 KB)
📁
android
📄
build-unbound-localzone-from-hosts.pl
(1.18 KB)
📄
create_unbound_ad_servers.cmd
(1.1 KB)
📄
create_unbound_ad_servers.sh
(1.02 KB)
📄
drop-tld.diff
(3.13 KB)
📄
drop2rpz
(1009 B)
📄
fastrpz.patch
(106.8 KB)
📁
ios
📄
libunbound.pc.in
(416 B)
📄
libunbound.so.conf
(2.03 KB)
📄
metrics.awk
(10.13 KB)
📄
parseunbound.pl
(5.58 KB)
📄
patch_rsamd5_enable.diff
(542 B)
📄
rc_d_unbound
(586 B)
📄
redirect-bogus.patch
(12.57 KB)
📁
selinux
📄
unbound-fuzzers.tar.bz2
(1.61 KB)
📄
unbound-fuzzme.patch
(6.43 KB)
📄
unbound-host.nagios.patch
(3.17 KB)
📄
unbound-querycachedb.py
(2.71 KB)
📄
unbound.init
(3.45 KB)
📄
unbound.init_fedora
(2.77 KB)
📄
unbound.plist
(926 B)
📄
unbound.service.in
(3.43 KB)
📄
unbound.socket.in
(142 B)
📄
unbound.spec
(3.79 KB)
📄
unbound.spec_fedora
(14.83 KB)
📄
unbound_cache.cmd
(2.56 KB)
📄
unbound_cache.sh
(3.38 KB)
📄
unbound_cacti.tar.gz
(71.5 KB)
📄
unbound_munin_
(17.57 KB)
📄
unbound_portable.service.in
(1.38 KB)
📄
unbound_smf23.tar.gz
(4.54 KB)
📄
update-anchor.sh
(4.25 KB)
📄
validation-reporter.sh
(2.27 KB)
📄
warmup.cmd
(2.47 KB)
📄
warmup.sh
(2.13 KB)
Editing: unbound_cache.cmd
@echo off rem -------------------------------------------------------------- rem -- DNS cache save/load script rem -- rem -- Version 1.2 rem -- By Yuri Voinov (c) 2014 rem -------------------------------------------------------------- rem Variables set prefix="C:\Program Files (x86)" set program_path=%prefix%\Unbound set uc=%program_path%\unbound-control.exe set fname="unbound_cache.dmp" rem Check Unbound installed if exist %uc% goto start echo Unbound control not found. Exiting... exit 1 :start rem arg1 - command (optional) rem arg2 - file name (optional) set arg1=%1 set arg2=%2 if /I "%arg1%" == "-h" goto help if "%arg1%" == "" ( echo Loading cache from %program_path%\%fname% dir /a %program_path%\%fname% type %program_path%\%fname%|%uc% load_cache goto end ) if defined %arg2% (goto Not_Defined) else (goto Defined) rem If file not specified; use default dump file :Not_defined if /I "%arg1%" == "-s" ( echo Saving cache to %program_path%\%fname% %uc% dump_cache>%program_path%\%fname% dir /a %program_path%\%fname% echo ok goto end ) if /I "%arg1%" == "-l" ( echo Loading cache from %program_path%\%fname% dir /a %program_path%\%fname% type %program_path%\%fname%|%uc% load_cache goto end ) if /I "%arg1%" == "-r" ( echo Saving cache to %program_path%\%fname% dir /a %program_path%\%fname% %uc% dump_cache>%program_path%\%fname% echo ok echo Loading cache from %program_path%\%fname% type %program_path%\%fname%|%uc% load_cache goto end ) rem If file name specified; use this filename :Defined if /I "%arg1%" == "-s" ( echo Saving cache to %arg2% %uc% dump_cache>%arg2% dir /a %arg2% echo ok goto end ) if /I "%arg1%" == "-l" ( echo Loading cache from %arg2% dir /a %arg2% type %arg2%|%uc% load_cache goto end ) if /I "%arg1%" == "-r" ( echo Saving cache to %arg2% dir /a %arg2% %uc% dump_cache>%arg2% echo ok echo Loading cache from %arg2% type %arg2%|%uc% load_cache goto end ) :help echo Usage: unbound_cache.cmd [-s] or [-l] or [-r] or [-h] [filename] echo. echo l - Load - default mode. Warming up Unbound DNS cache from saved file. cache-ttl must be high value. echo s - Save - save Unbound DNS cache contents to plain file with domain names. echo r - Reload - reloadind new cache entries and refresh existing cache echo h - this screen. echo filename - file to save/load dumped cache. If not specified, %program_path%\%fname% will be used instead. echo Note: Run without any arguments will be in default mode. echo Also, unbound-control must be configured. exit 1 :end exit 0
Upload File
Create Folder