├── 404.html ├── Gemfile ├── Gemfile.lock ├── README.md ├── _categories ├── android.md ├── announcement.md ├── keamanan.md ├── linux.md ├── mikrotik.md ├── openwrt.md └── routers.md ├── _config.yml ├── _data ├── devices.yml ├── documentation.yml ├── files.yml └── posts.json ├── _includes ├── alert-danger.html ├── alert-dark.html ├── alert-info.html ├── alert-light.html ├── alert-primary.html ├── alert-secondary.html ├── alert-success.html ├── alert-warning.html ├── coding.html ├── comments.html ├── footer.html ├── head.html ├── iklan.html ├── javascript.html ├── navbar.html ├── sidebar.html ├── toc.html ├── tos.html └── youtube.html ├── _layouts ├── cari.html ├── category.html ├── default.html ├── dokuments.html ├── openwrts.html ├── page.html ├── post.html └── yt.html ├── _posts └── 2024-11-24-wellcome-to-masterwifinetworksolution.md ├── ads.txt ├── assets ├── css │ ├── custom.css │ └── syntax.css ├── images │ ├── 20241029_041810.png │ ├── banner.jpg │ ├── command-linux.jpg │ ├── favicon.ico │ ├── hs-dan-pppoe.jpg │ ├── install-tailscale-openwrt.jpg │ ├── pengenalan-linux.jpg │ ├── setting-cpe220.jpg │ └── setting-wr840n.jpg └── js │ ├── adblock-check.js │ └── anti-adblock.js ├── categories.html ├── feed.xml ├── googled41425154ba52776.html ├── index.html ├── marketplace.html ├── openwrt.html ├── openwrt └── x86.html ├── pages ├── contact.html ├── disclaimer.html ├── documentation.html ├── donate.html ├── files.html ├── privacy-policy.html ├── profile.html ├── safelink │ ├── download-config-simaster-meta.html │ ├── download-termux-autoplane.html │ ├── download-termux-boot.html │ └── download-termux.html ├── search.html ├── sitemap.html └── videos.html ├── robot.txt ├── sitemap.xml └── update.sh /404.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Page Not Found 7 | 44 | 45 | 46 |

Page Not Found

47 |

Sorry, but the page you were trying to view does not exist. Try searching for it or looking at the URL to see if it looks correct.

48 | Back To Home 49 | 50 | 51 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'jekyll-feed' 4 | gem 'jekyll-seo-tag' 5 | gem 'jekyll-paginate' 6 | gem 'jekyll-sitemap' 7 | gem 'jekyll-toc' 8 | gem 'jekyll-reading-time' 9 | gem 'jekyll-time-to-read' 10 | gem 'jekyll-google_search_console_verification_file' 11 | gem 'faraday-retry' 12 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- 1 | GEM 2 | remote: https://rubygems.org/ 3 | specs: 4 | addressable (2.8.7) 5 | public_suffix (>= 2.0.2, < 7.0) 6 | base64 (0.2.0) 7 | bigdecimal (3.1.9) 8 | colorator (1.1.0) 9 | concurrent-ruby (1.3.5) 10 | csv (3.3.2) 11 | em-websocket (0.5.3) 12 | eventmachine (>= 0.12.9) 13 | http_parser.rb (~> 0) 14 | eventmachine (1.2.7) 15 | faraday (2.12.2) 16 | faraday-net_http (>= 2.0, < 3.5) 17 | json 18 | logger 19 | faraday-net_http (3.4.0) 20 | net-http (>= 0.5.0) 21 | faraday-retry (2.2.1) 22 | faraday (~> 2.0) 23 | ffi (1.17.1) 24 | ffi (1.17.1-aarch64-linux-gnu) 25 | ffi (1.17.1-aarch64-linux-musl) 26 | ffi (1.17.1-arm-linux-gnu) 27 | ffi (1.17.1-arm-linux-musl) 28 | ffi (1.17.1-arm64-darwin) 29 | ffi (1.17.1-x86-linux-gnu) 30 | ffi (1.17.1-x86-linux-musl) 31 | ffi (1.17.1-x86_64-darwin) 32 | ffi (1.17.1-x86_64-linux-gnu) 33 | ffi (1.17.1-x86_64-linux-musl) 34 | forwardable-extended (2.6.0) 35 | google-protobuf (4.29.3) 36 | bigdecimal 37 | rake (>= 13) 38 | google-protobuf (4.29.3-aarch64-linux) 39 | bigdecimal 40 | rake (>= 13) 41 | google-protobuf (4.29.3-arm64-darwin) 42 | bigdecimal 43 | rake (>= 13) 44 | google-protobuf (4.29.3-x86-linux) 45 | bigdecimal 46 | rake (>= 13) 47 | google-protobuf (4.29.3-x86_64-darwin) 48 | bigdecimal 49 | rake (>= 13) 50 | google-protobuf (4.29.3-x86_64-linux) 51 | bigdecimal 52 | rake (>= 13) 53 | http_parser.rb (0.8.0) 54 | i18n (1.14.7) 55 | concurrent-ruby (~> 1.0) 56 | jekyll (4.4.1) 57 | addressable (~> 2.4) 58 | base64 (~> 0.2) 59 | colorator (~> 1.0) 60 | csv (~> 3.0) 61 | em-websocket (~> 0.5) 62 | i18n (~> 1.0) 63 | jekyll-sass-converter (>= 2.0, < 4.0) 64 | jekyll-watch (~> 2.0) 65 | json (~> 2.6) 66 | kramdown (~> 2.3, >= 2.3.1) 67 | kramdown-parser-gfm (~> 1.0) 68 | liquid (~> 4.0) 69 | mercenary (~> 0.3, >= 0.3.6) 70 | pathutil (~> 0.9) 71 | rouge (>= 3.0, < 5.0) 72 | safe_yaml (~> 1.0) 73 | terminal-table (>= 1.8, < 4.0) 74 | webrick (~> 1.7) 75 | jekyll-feed (0.17.0) 76 | jekyll (>= 3.7, < 5.0) 77 | jekyll-google_search_console_verification_file (1.1.0) 78 | jekyll (>= 3.7, < 5.0) 79 | jekyll-paginate (1.1.0) 80 | jekyll-reading-time (0.1.0) 81 | jekyll 82 | jekyll-sass-converter (3.0.0) 83 | sass-embedded (~> 1.54) 84 | jekyll-seo-tag (2.8.0) 85 | jekyll (>= 3.8, < 5.0) 86 | jekyll-sitemap (1.4.0) 87 | jekyll (>= 3.7, < 5.0) 88 | jekyll-time-to-read (0.1.2) 89 | jekyll 90 | jekyll-toc (0.19.0) 91 | jekyll (>= 3.9) 92 | nokogiri (~> 1.12) 93 | jekyll-watch (2.2.1) 94 | listen (~> 3.0) 95 | json (2.9.1) 96 | kramdown (2.5.1) 97 | rexml (>= 3.3.9) 98 | kramdown-parser-gfm (1.1.0) 99 | kramdown (~> 2.0) 100 | liquid (4.0.4) 101 | listen (3.9.0) 102 | rb-fsevent (~> 0.10, >= 0.10.3) 103 | rb-inotify (~> 0.9, >= 0.9.10) 104 | logger (1.6.5) 105 | mercenary (0.4.0) 106 | mini_portile2 (2.8.8) 107 | net-http (0.6.0) 108 | uri 109 | nokogiri (1.18.2) 110 | mini_portile2 (~> 2.8.2) 111 | racc (~> 1.4) 112 | nokogiri (1.18.2-aarch64-linux-gnu) 113 | racc (~> 1.4) 114 | nokogiri (1.18.2-aarch64-linux-musl) 115 | racc (~> 1.4) 116 | nokogiri (1.18.2-arm-linux-gnu) 117 | racc (~> 1.4) 118 | nokogiri (1.18.2-arm-linux-musl) 119 | racc (~> 1.4) 120 | nokogiri (1.18.2-arm64-darwin) 121 | racc (~> 1.4) 122 | nokogiri (1.18.2-x86_64-darwin) 123 | racc (~> 1.4) 124 | nokogiri (1.18.2-x86_64-linux-gnu) 125 | racc (~> 1.4) 126 | nokogiri (1.18.2-x86_64-linux-musl) 127 | racc (~> 1.4) 128 | pathutil (0.16.2) 129 | forwardable-extended (~> 2.6) 130 | public_suffix (6.0.1) 131 | racc (1.8.1) 132 | rake (13.2.1) 133 | rb-fsevent (0.11.2) 134 | rb-inotify (0.11.1) 135 | ffi (~> 1.0) 136 | rexml (3.4.0) 137 | rouge (4.5.1) 138 | safe_yaml (1.0.5) 139 | sass-embedded (1.83.4) 140 | google-protobuf (~> 4.29) 141 | rake (>= 13) 142 | sass-embedded (1.83.4-aarch64-linux-android) 143 | google-protobuf (~> 4.29) 144 | sass-embedded (1.83.4-aarch64-linux-gnu) 145 | google-protobuf (~> 4.29) 146 | sass-embedded (1.83.4-aarch64-linux-musl) 147 | google-protobuf (~> 4.29) 148 | sass-embedded (1.83.4-aarch64-mingw-ucrt) 149 | google-protobuf (~> 4.29) 150 | sass-embedded (1.83.4-arm-linux-androideabi) 151 | google-protobuf (~> 4.29) 152 | sass-embedded (1.83.4-arm-linux-gnueabihf) 153 | google-protobuf (~> 4.29) 154 | sass-embedded (1.83.4-arm-linux-musleabihf) 155 | google-protobuf (~> 4.29) 156 | sass-embedded (1.83.4-arm64-darwin) 157 | google-protobuf (~> 4.29) 158 | sass-embedded (1.83.4-riscv64-linux-android) 159 | google-protobuf (~> 4.29) 160 | sass-embedded (1.83.4-riscv64-linux-gnu) 161 | google-protobuf (~> 4.29) 162 | sass-embedded (1.83.4-riscv64-linux-musl) 163 | google-protobuf (~> 4.29) 164 | sass-embedded (1.83.4-x86_64-cygwin) 165 | google-protobuf (~> 4.29) 166 | sass-embedded (1.83.4-x86_64-darwin) 167 | google-protobuf (~> 4.29) 168 | sass-embedded (1.83.4-x86_64-linux-android) 169 | google-protobuf (~> 4.29) 170 | sass-embedded (1.83.4-x86_64-linux-gnu) 171 | google-protobuf (~> 4.29) 172 | sass-embedded (1.83.4-x86_64-linux-musl) 173 | google-protobuf (~> 4.29) 174 | terminal-table (3.0.2) 175 | unicode-display_width (>= 1.1.1, < 3) 176 | unicode-display_width (2.6.0) 177 | uri (1.0.2) 178 | webrick (1.9.1) 179 | 180 | PLATFORMS 181 | aarch64-linux 182 | aarch64-linux-android 183 | aarch64-linux-gnu 184 | aarch64-linux-musl 185 | aarch64-mingw-ucrt 186 | arm-linux-androideabi 187 | arm-linux-gnu 188 | arm-linux-gnueabihf 189 | arm-linux-musl 190 | arm-linux-musleabihf 191 | arm64-darwin 192 | riscv64-linux-android 193 | riscv64-linux-gnu 194 | riscv64-linux-musl 195 | ruby 196 | x86-linux 197 | x86-linux-gnu 198 | x86-linux-musl 199 | x86_64-cygwin 200 | x86_64-darwin 201 | x86_64-linux 202 | x86_64-linux-android 203 | x86_64-linux-gnu 204 | x86_64-linux-musl 205 | 206 | DEPENDENCIES 207 | faraday-retry 208 | jekyll-feed 209 | jekyll-google_search_console_verification_file 210 | jekyll-paginate 211 | jekyll-reading-time 212 | jekyll-seo-tag 213 | jekyll-sitemap 214 | jekyll-time-to-read 215 | jekyll-toc 216 | 217 | BUNDLED WITH 218 | 2.5.22 219 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # webserver 2 | -------------------------------------------------------------------------------- /_categories/android.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: category 3 | title: "android" 4 | --- -------------------------------------------------------------------------------- /_categories/announcement.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: category 3 | title: "announcement" 4 | --- 5 | -------------------------------------------------------------------------------- /_categories/keamanan.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: category 3 | title: "keamanan" 4 | --- 5 | -------------------------------------------------------------------------------- /_categories/linux.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: category 3 | title: "linux" 4 | --- -------------------------------------------------------------------------------- /_categories/mikrotik.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: category 3 | title: "mikrotik" 4 | --- 5 | -------------------------------------------------------------------------------- /_categories/openwrt.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: category 3 | title: "openwrt" 4 | --- 5 | -------------------------------------------------------------------------------- /_categories/routers.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: category 3 | title: "routers" 4 | --- 5 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | title: Clash Master 2 | email: myarachma92@gmail.com 3 | author: Muhammad Yusuf 4 | description: >- # Deskripsi situs 5 | Master Wifi Network Solution adalah tempat solusi koneksi jaringan anda. 6 | url: "https://masterwifinetworksolution.github.io" 7 | baseurl: "" 8 | permalink: /:categories/:title/ 9 | paginate: 6 10 | paginate_path: "/page/:num/" 11 | 12 | collections: 13 | posts: 14 | output: true 15 | categories: 16 | output: true 17 | permalink: /categories/:name/ 18 | 19 | defaults: 20 | - scope: 21 | path: "" 22 | type: "posts" 23 | values: 24 | layout: "post" 25 | author: "Muhammad Yusuf" 26 | comments: true 27 | - scope: 28 | path: "" 29 | type: "pages" 30 | values: 31 | layout: "page" 32 | author: "Muhammad Yusuf" 33 | comments: false 34 | 35 | plugins: 36 | - jekyll-feed 37 | - jekyll-seo-tag 38 | - jekyll-paginate 39 | - jekyll-sitemap 40 | - jekyll-toc 41 | - jekyll-reading-time 42 | - jekyll-time-to-read 43 | - jekyll-google_search_console_verification_file 44 | 45 | toc: 46 | min_level: 2 47 | max_level: 6 48 | no_toc_section_class: 'no_toc' 49 | list_class: 'toc-list' 50 | sublist_class: 'toc-sublist' 51 | item_class: 'toc-list-item' 52 | link_class: 'toc-link' 53 | heading_levels: [2, 3, 4, 5, 6] 54 | exclude_from_toc: [] 55 | 56 | assets: 57 | css: "/assets/css" 58 | 59 | data_files: 60 | - files 61 | 62 | data_documentation: 63 | - documentation 64 | 65 | include: 66 | - assets 67 | 68 | # Konfigurasi Kramdown untuk sintaks highlighter 69 | markdown: kramdown 70 | highlighter: rouge 71 | kramdown: 72 | syntax_highlighter: rouge 73 | syntax_highlighter_opts: 74 | css_class: 'highlight' # Kelas CSS untuk highlighter 75 | span: 76 | line_numbers: true # Aktifkan nomor baris 77 | block: 78 | line_numbers: true # Aktifkan nomor baris untuk blok kode 79 | start_line: 1 # Mulai nomor baris dari 1 80 | 81 | # Contoh konfigurasi 82 | category_dir: categories 83 | -------------------------------------------------------------------------------- /_data/devices.yml: -------------------------------------------------------------------------------- 1 | - image: 2 | name: sha256sums 3 | format: sha 4 | size: 1KB 5 | link: https://drive.google.com/file/d/11uPtPWTwzEQxrZ-D-qZwh5-sw9GZ7Yz3/view?usp=sharing 6 | category: x86 7 | - image: 8 | name: profiles.json 9 | format: json 10 | size: 2KB 11 | link: https://drive.google.com/file/d/1WOFfuzFfjgZO_AirhwhgpUe2-4fIq5ls/view?usp=sharing 12 | category: x86 13 | - image: 14 | name: openwrt-23.05.5-x86-64-generic.manifest 15 | format: manifest 16 | size: 11KB 17 | link: https://drive.google.com/file/d/1iY-XpjzdwuI6tTG0UbIJk1tBPB9rYcIr/view?usp=sharing 18 | category: x86 19 | - image: 20 | name: openwrt-23.05.5-x86-64-generic-squashfs-rootfs.img.gz 21 | format: gzip 22 | size: 85.7MB 23 | link: https://drive.google.com/file/d/1JQVXpJb3f0S2d5hBLn3_6loUL0gRsLXZ/view?usp=sharing 24 | category: x86 25 | - image: 26 | name: openwrt-23.05.5-x86-64-generic-squashfs-combined.img.gz 27 | format: gzip 28 | size: 91.4MB 29 | link: https://drive.google.com/file/d/16WHh0GaXlyUeLQiWPL8Uh1hI0Cr_fl84/view?usp=sharing 30 | category: x86 31 | - image: 32 | name: openwrt-23.05.5-x86-64-generic-squashfs-combined-efi.img.gz 33 | format: gzip 34 | size: 91.6MB 35 | link: https://drive.google.com/file/d/1o4gcwuJ83QU13X60dfzzonLbQ2D2kmuW/view?usp=sharing 36 | category: x86 37 | - image: 38 | name: openwrt-23.05.5-x86-64-generic-rootfs.tar.gz 39 | format: gzip 40 | size: 106.7MB 41 | link: https://drive.google.com/file/d/1pD2lHNStmMLRsCQwEnhvRSgRp4THm42u/view?usp=sharing 42 | category: x86 43 | - image: 44 | name: openwrt-23.05.5-x86-64-generic-kernel.bin 45 | format: bin 46 | size: 5.4MB 47 | link: https://drive.google.com/file/d/1JjT16wLNPSNGkG4UFIWJaVERtks88uK8/view?usp=sharing 48 | category: x86 49 | - image: 50 | name: openwrt-23.05.5-x86-64-generic-ext4-rootfs.img.gz 51 | format: gzip 52 | size: 110.5MB 53 | link: https://drive.google.com/file/d/1YAT98dJyQr316d4vbd2Rfq0ZeRGynZIL/view?usp=sharing 54 | category: x86 55 | - image: 56 | name: openwrt-23.05.5-x86-64-generic-ext4-combined.img.gz 57 | format: gzip 58 | size: 114.2MB 59 | link: https://drive.google.com/file/d/1UJ_pUqV2O2-_4-q-On7_diRuc-uctUB4/view?usp=sharing 60 | category: x86 61 | - image: 62 | name: openwrt-23.05.5-x86-64-generic-ext4-combined-efi.img.gz 63 | format: gzip 64 | size: 114.4MB 65 | link: https://drive.google.com/file/d/14FrqcxUTLX1adnVzfM_jToVPeIXOgKdr/view?usp=sharing 66 | category: x86 67 | -------------------------------------------------------------------------------- /_data/documentation.yml: -------------------------------------------------------------------------------- 1 | - name: "Install openclash" 2 | type: "openwrt" 3 | link: "#" 4 | - name: "Install passwall" 5 | type: "openwrt" 6 | link: "#" 7 | - name: "Install mihomo" 8 | type: "openwrt" 9 | link: "#" 10 | - name: "Install libernet" 11 | type: "openwrt" 12 | link: "#" 13 | - name: "Install v2raya" 14 | type: "openwrt" 15 | link: "#" 16 | - name: "Account clash" 17 | type: "clash" 18 | link: "#" 19 | - name: "Rule clash" 20 | type: "clash" 21 | link: "#" 22 | - name: "Proxy provider clash" 23 | type: "clash" 24 | link: "#" 25 | - name: "Proxy group clash" 26 | type: "clash" 27 | link: "#" 28 | - name: "Rule clash" 29 | type: "clash" 30 | link: "#" 31 | - name: "Rule provider clash" 32 | type: "clash" 33 | link: "#" -------------------------------------------------------------------------------- /_data/files.yml: -------------------------------------------------------------------------------- 1 | - name: "stream" 2 | type: "yaml" 3 | size: "1.10K" 4 | link: "https://raw.githubusercontent.com/masterwifinetworksolution/rule_provider/refs/heads/master/stream.yaml" 5 | - name: "sosmed" 6 | type: "yaml" 7 | size: "713B" 8 | link: "https://raw.githubusercontent.com/masterwifinetworksolution/rule_provider/refs/heads/master/sosmed.yaml" 9 | - name: "game" 10 | type: "yaml" 11 | size: "2.65K" 12 | link: "https://raw.githubusercontent.com/masterwifinetworksolution/rule_provider/refs/heads/master/game.yaml" 13 | - name: "shop" 14 | type: "yaml" 15 | size: "626B" 16 | link: "https://raw.githubusercontent.com/masterwifinetworksolution/rule_provider/refs/heads/master/shop.yaml" 17 | - name: "bank" 18 | type: "yaml" 19 | size: "1012B" 20 | link: "https://raw.githubusercontent.com/masterwifinetworksolution/rule_provider/refs/heads/master/bank.yaml" -------------------------------------------------------------------------------- /_data/posts.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "title": "Panduan Lengkap Penggunaan Tenda O3 Router Outdoor", "url": "/pengaturan/panduan-lengkap-penggunaan-tenda-o3-router-outdoor/" }, 3 | { "title": "Panduan Lengkap Penggunaan TP-Link CPE220", "url": "/pengaturan/panduan-tplink-wr840n/" }, 4 | // Tambahkan lebih banyak postingan di sini 5 | ] 6 | -------------------------------------------------------------------------------- /_includes/alert-danger.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /_includes/alert-dark.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /_includes/alert-info.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /_includes/alert-light.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /_includes/alert-primary.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /_includes/alert-secondary.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /_includes/alert-success.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /_includes/alert-warning.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /_includes/coding.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | {{ include.language }} 4 | 5 |
6 |
7 | {{ include.code }}
8 |   
9 |
-------------------------------------------------------------------------------- /_includes/comments.html: -------------------------------------------------------------------------------- 1 | {% unless page.comments == false %} 2 |
3 | 18 | {% endunless %} -------------------------------------------------------------------------------- /_includes/footer.html: -------------------------------------------------------------------------------- 1 | 113 | 114 | 128 | -------------------------------------------------------------------------------- /_includes/head.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | {{ page.title }} - {{ site.title }} 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /_includes/iklan.html: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | 10 | 11 | 14 | 15 |
-------------------------------------------------------------------------------- /_includes/javascript.html: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 35 | 36 | 39 | 40 | 41 | 68 | 69 | 92 | 93 | 99 | 100 | 101 | 119 | 120 | 121 | 133 | 134 | 166 | 167 | 168 | 169 | 170 | 332 | 333 | -------------------------------------------------------------------------------- /_includes/navbar.html: -------------------------------------------------------------------------------- 1 | 71 | 72 | -------------------------------------------------------------------------------- /_includes/sidebar.html: -------------------------------------------------------------------------------- 1 | 99 | -------------------------------------------------------------------------------- /_includes/toc.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Daftar Isi Konten

4 |
5 |
6 | 33 | {% endfor %} 34 | 35 |
36 |
37 | -------------------------------------------------------------------------------- /_includes/tos.html: -------------------------------------------------------------------------------- 1 | 7 | 8 |
9 |
10 | × 11 |

Terms and Conditions

12 |

Last updated: {{ site.time | date: "%d %B %Y" }}

13 |

Please read the terms and conditions of this service (the terms and conditions of the service are at Privacy Policy and also Disclaimer) with caution before using the Master Wifi Network Solution website operated by Muhammad Yusuf.

14 | 15 | 16 | 17 | 18 | 19 |
20 |
21 | 22 |
23 |
24 | × 25 |

Privacy Policy for Master Wifi Network Solution

26 | 27 |

At Master Wifi Network Solution, accessible from https://masterwifinetworksolution.github.io, one of our main priorities is the privacy of our visitors. This Privacy Policy document contains types of information that is collected and recorded by Master Wifi Network Solution and how we use it.

28 | 29 |

If you have additional questions or require more information about our Privacy Policy, do not hesitate to contact us through email at myarachma92@gmail.com.

30 | 31 |

Log Files

32 | 33 |

Master Wifi Network Solution follows a standard procedure of using log files. These files log visitors when they visit websites. All hosting companies do this and a part of hosting services' analytics. The information collected by log files include internet protocol (IP) addresses, browser type, Internet Service Provider (ISP), date and time stamp, referring/exit pages, and possibly the number of clicks. These are not linked to any information that is personally identifiable. The purpose of the information is for analyzing trends, administering the site, tracking users' movement on the website, and gathering demographic information.

34 | 35 |

Cookies and Web Beacons

36 | 37 |

Like any other website, Master Wifi Network Solution uses 'cookies'. These cookies are used to store information including visitors' preferences, and the pages on the website that the visitor accessed or visited. The information is used to optimize the users' experience by customizing our web page content based on visitors' browser type and/or other information.

38 | 39 |

Google DoubleClick DART Cookie

40 | 41 |

Google is one of a third-party vendor on our site. It also uses cookies, known as DART cookies, to serve ads to our site visitors based upon their visit to www.website.com and other sites on the internet. However, visitors may choose to decline the use of DART cookies by visiting the Google ad and content network Privacy Policy at the following URL – https://policies.google.com/technologies/ads

42 | 43 |

Our Advertising Partners

44 | 45 |

Some of advertisers on our site may use cookies and web beacons. Our advertising partners are listed below. Each of our advertising partners has their own Privacy Policy for their policies on user data. For easier access, we hyperlinked to their Privacy Policies below.

46 | 52 | 53 |

Privacy Policies

54 | 55 |

You may consult this list to find the Privacy Policy for each of the advertising partners of Master Wifi Network Solution.

56 | 57 |

Third-party ad servers or ad networks uses technologies like cookies, JavaScript, or Web Beacons that are used in their respective advertisements and links that appear on Master Wifi Network Solution, which are sent directly to users' browser. They automatically receive your IP address when this occurs. These technologies are used to measure the effectiveness of their advertising campaigns and/or to personalize the advertising content that you see on websites that you visit.

58 | 59 |

Note that Master Wifi Network Solution has no access to or control over these cookies that are used by third-party advertisers.

60 | 61 |

Third Party Privacy Policies

62 | 63 |

Master Wifi Network Solution's Privacy Policy does not apply to other advertisers or websites. Thus, we are advising you to consult the respective Privacy Policies of these third-party ad servers for more detailed information. It may include their practices and instructions about how to opt-out of certain options.

64 | 65 |

You can choose to disable cookies through your individual browser options. To know more detailed information about cookie management with specific web browsers, it can be found at the browsers' respective websites.

66 | 67 |

Children's Information

68 | 69 |

Another part of our priority is adding protection for children while using the internet. We encourage parents and guardians to observe, participate in, and/or monitor and guide their online activity.

70 | 71 |

Master Wifi Network Solution does not knowingly collect any Personal Identifiable Information from children under the age of 13. If you think that your child provided this kind of information on our website, we strongly encourage you to contact us immediately and we will do our best efforts to promptly remove such information from our records.

72 | 73 |

Online Privacy Policy Only

74 | 75 |

Our Privacy Policy applies only to our online activities and is valid for visitors to our website with regards to the information that they shared and/or collect in Master Wifi Network Solution. This policy is not applicable to any information collected offline or via channels other than this website.

76 | 77 |

Consent

78 | 79 |

By using our website, you hereby consent to our Privacy Policy and agree to its Terms and Conditions.

80 | 81 |

Update

82 | 83 |

This Privacy Policy was last updated on: {{ site.time | date: "%d %B %Y" }}. Should we update, amend, or make any changes to our privacy policy, those changes will be posted here.

84 | 85 |
86 |
87 | 88 |
89 |
90 | × 91 |

Disclaimer for Master Wifi Network Solution

92 | 93 |

Welcome to Master Wifi Network Solution!

94 | 95 |

If you require any more information or have any questions about our site's disclaimer, please feel free to contact us by email at myarachma92@gmail.com.

96 | 97 |

Disclaimers for Master Wifi Network Solution

98 | 99 |

All the information on this website - masterwifinetworksolution.github.io - is published in good faith and for general information purpose only. Master Wifi Network Solution does not make any warranties about the completeness, reliability, and accuracy of this information. Any action you take upon the information you find on this website (Master Wifi Network Solution), is strictly at your own risk. Master Wifi Network Solution will not be liable for any losses and/or damages in connection with the use of our website.

100 | 101 |

From our website, you can visit other websites by following hyperlinks to such external sites. While we strive to provide only quality links to useful and ethical websites, we have no control over the content and nature of these sites. These links to other websites do not imply a recommendation for all the content found on these sites. Site owners and content may change without notice and may occur before we have the opportunity to remove a link which may have gone 'bad'.

102 | 103 |

Please be also aware that when you leave our website, other sites may have different privacy policies and terms which are beyond our control. Please be sure to check the Privacy Policies of these sites as well as their "Terms of Service" before engaging in any business or uploading any information.

104 | 105 |

Consent

106 | 107 |

By using our website, you hereby consent to our disclaimer and agree to its terms.

108 | 109 |

Update

110 | 111 |

Should we update, amend or make any changes to this document, those changes will be prominently posted here.

112 | 113 |

Last updated: {{ site.time | date: "%d %B %Y" }}

114 | 115 |
116 |
117 | -------------------------------------------------------------------------------- /_includes/youtube.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | 15 |
16 |
17 | 18 |
19 |
-------------------------------------------------------------------------------- /_layouts/cari.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 | {{ content }} -------------------------------------------------------------------------------- /_layouts/category.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 |
6 |
7 |
8 |

{{ page.title }}

9 |
10 | {% assign category = page.title | downcase %} 11 | {% for post in site.posts %} 12 | {% if post.categories contains category %} 13 |
14 |
15 |
16 |
{{ post.title }}
17 |
{{ post.date | date: "%B %d, %Y" }} oleh {{ post.author }}
18 |

{{ post.excerpt | strip_html | truncate: 100 }}

19 | Read more 20 |
21 |
22 |
23 | {% endif %} 24 | {% endfor %} 25 |
26 |
27 |
28 |
29 | -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | {% include head.html %} 4 | 5 | 10 | {% include navbar.html %} 11 |
12 |
13 |
14 | {{ content }} 15 |
16 | 17 | 20 |
21 |
22 | 23 | {% include tos.html %} 24 | 25 | {% include footer.html %} 26 | {% include javascript.html %} 27 | 28 | 29 | -------------------------------------------------------------------------------- /_layouts/dokuments.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 |
6 |
7 | 27 |
28 | 29 | 30 |
31 | 34 |
35 | 36 | 37 |
38 |
39 |
Advertisement
40 |
41 |
42 | {% include iklan.html %} 43 |
44 |
45 | 46 |
47 |
48 | {{ content }} 49 |
50 |
51 | 52 | 53 |
54 |
55 |
Advertisement
56 |
57 |
58 | {% include iklan.html %} 59 |
60 |
61 | 62 | 63 |
64 |
65 |
Share Documentation Simaster
66 |
67 |
68 | 76 |
77 |
78 | 79 | 80 |
81 |
82 |
Comment
83 |
84 |
85 | {% include comments.html %} 86 |
87 |
88 |
89 | -------------------------------------------------------------------------------- /_layouts/openwrts.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 |
6 | 7 |
8 |
9 |
Advertisement
10 |
11 |
12 | {% include iklan.html %} 13 |
14 |
15 | 16 | {{ content }} 17 | 18 |
19 |
20 |
Advertisement
21 |
22 |
23 | {% include iklan.html %} 24 |
25 |
26 |
27 | -------------------------------------------------------------------------------- /_layouts/page.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 | {% include iklan.html %} 6 | 7 |
8 | 11 |
12 | {{ content }} 13 |
14 |
15 | 16 | {% include iklan.html %} -------------------------------------------------------------------------------- /_layouts/post.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 |
6 |
7 | 27 |
28 | 29 | 30 |
31 | 34 |
35 | 36 | 37 |
38 |
39 |
Advertisement
40 |
41 |
42 | {% include iklan.html %} 43 |
44 |
45 | 46 |
47 |
48 | {% if page.image %} 49 | {{ page.title }} 50 | {% else %} 51 | Banner Image 52 | {% endif %} 53 | {{ content }} 54 |
55 |
56 | 57 | 58 |
59 |
60 |
Advertisement
61 |
62 |
63 | {% include iklan.html %} 64 |
65 |
66 | 67 | 68 |
69 |
70 |
Share Post Simaster
71 |
72 |
73 | 81 |
82 |
83 | 84 | 85 |
86 |
87 |
Comment
88 |
89 |
90 | {% include comments.html %} 91 |
92 |
93 | 94 |
95 | -------------------------------------------------------------------------------- /_layouts/yt.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 |
6 |
7 | {{ content }} 8 | 9 |
10 |
-------------------------------------------------------------------------------- /_posts/2024-11-24-wellcome-to-masterwifinetworksolution.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: post 3 | title: "Wellcome To Master Wifi Network Solution" 4 | date: 2024-11-25 05:46:00 5 | categories: [announcement] 6 | --- 7 | 8 | {% include alert-info.html message="Bantu dan dukung channel youtube kami di Master Wifi Network Silution. Dan jika anda berkenan ingin berbagi kepada kami. Anda bisa donasikan kepada kami melalui disini. Ingin beli peralatan jaringan internet anda ?. Anda bisa bisa masuk ke Toko Shop kami." %} 9 | 10 | ## Wellcome To Master Wifi Network Solution! 11 | 12 | I would like to express my deepest gratitude to all of you who have visited my blog and documentation. I will provide all the interesting information that you should know and also follow along with me. And there is a lot of documentation that I have provided for you so that you can get what you are looking for here and you use it as it should. 13 | 14 | ## Why is my blog and documentation so important to you? 15 | 16 | All articles contained in my blog posts are very accurate information for all your internet connection needs in any session and also supporting documentation that can help you to solve various problems regarding all your complaints in the field of internet connections. 17 | 18 | ## What Will You Find Here? 19 | 20 | 1. **Internet Connections**: We'll cover the different types of internet connections, how to choose the right ISP, and tips for getting the best speeds from your service. 21 | 22 | 1. **Modems and Routers**: Learn the difference between a modem and a router, how to configure these devices, and tips for maximizing their performance. 23 | 24 | 1. **OpenWRT and Mikrotik**: We'll provide a complete guide to using OpenWRT firmware and Mikrotik devices to increase the flexibility and control of your network. 25 | 26 | 1. **Antennas and Additional Devices**: Find out how to choose and install a wifi antenna to extend the range of your network, as well as other additional devices that can help improve your signal. 27 | 28 | 1. **Apps and Tools**: We'll recommend apps and tools that can help you manage and monitor your wifi network more effectively. 29 | 30 | 1. **Troubleshooting**: Get practical solutions to common wifi problems, such as slow connections, weak signals, and other interference. 31 | 32 | ## Who We Are? 33 | 34 | We are a team of network experts with years of experience in information and communication technology. We are passionate about sharing our knowledge and helping others overcome the technical challenges they face. Through this blog, we hope to provide useful information and practical solutions that you can apply at home or at work. 35 | 36 | ## Let's Interact! 37 | 38 | We greatly appreciate feedback from our readers. Feel free to leave a comment, ask a question, or share your experience in the comments section. We will try to respond to every question and provide the assistance you need. 39 | 40 | Thank you for visiting the **Master Wifi Network Solution** blog. We hope you find the information useful and can improve your internet experience. Don't forget to follow this blog and stay updated with our latest posts. Happy reading and good luck in managing your wifi network! 41 | -------------------------------------------------------------------------------- /ads.txt: -------------------------------------------------------------------------------- 1 | google.com, pub-1794381705838564, DIRECT, f08c47fec0942fa0 -------------------------------------------------------------------------------- /assets/css/custom.css: -------------------------------------------------------------------------------- 1 | /* Gaya untuk blok kode */ 2 | .highlight { 3 | background-color: #f6f8fa; /* Warna background */ 4 | border-radius: 6px; /* Sudut kotak yang melengkung */ 5 | border: 1px solid #e1e4e8; /* Border kotak */ 6 | padding: 5px; /* Padding dalam kotak */ 7 | overflow-x: auto; /* Scroll horizontal jika kode terlalu panjang */ 8 | font-family: 'Courier New', monospace; /* Font monospace */ 9 | font-size: 16px; /* Ukuran font */ 10 | line-height: 1.5; /* Jarak antar baris */ 11 | margin-top: 15px; 12 | margin-bottom: 1px; /* Jarak dari elemen bawah */ 13 | } 14 | 15 | /* Gaya untuk teks di dalam blok kode */ 16 | .highlight code { 17 | color: #24292e; /* Warna teks */ 18 | background-color: transparent; /* Background transparan */ 19 | padding: 0; /* Hilangkan padding default */ 20 | } 21 | 22 | /* Gaya untuk nomor baris (jika menggunakan linenos) */ 23 | .highlight .lineno { 24 | color: #6a737d; /* Warna nomor baris */ 25 | padding-right: 16px; /* Jarak antara nomor baris dan kode */ 26 | user-select: none; /* Mencegah nomor baris dipilih */ 27 | } 28 | 29 | .code-block { 30 | position: relative; 31 | } 32 | .copy-button { 33 | position: absolute; 34 | top: 10px; 35 | right: 10px; 36 | background: #007bff; 37 | color: white; 38 | border: none; 39 | padding: 5px 10px; 40 | cursor: pointer; 41 | border-radius: 3px; 42 | font-size: 14px; 43 | } 44 | .copy-button:hover { 45 | background: #0056b3; 46 | } 47 | 48 | .menu-icon { 49 | margin-right: 10px; /* Menambahkan margin kanan untuk memindahkan ikon menu ke pinggir */ 50 | } 51 | 52 | /* Pastikan konten dan sidebar tidak tertutup oleh navigasi */ 53 | @media (min-width: 768px) { 54 | main { 55 | margin-top: 60px; /* Sesuaikan tinggi sesuai dengan tinggi navigasi */ 56 | } 57 | aside { 58 | margin-top: 60px; /* Sesuaikan tinggi sesuai dengan tinggi navigasi */ 59 | } 60 | #sidebar { 61 | width: 100%; /* Atur lebar penuh sidebar */ 62 | } 63 | } 64 | 65 | .toc-panel { 66 | margin-bottom: 20px; 67 | padding: 15px; 68 | border: 1px solid #ddd; 69 | background-color: #f9f9f9; 70 | border-radius: 5px; 71 | } 72 | 73 | .toc-list { 74 | list-style-type: none; 75 | padding: 0; 76 | } 77 | 78 | .toc-list-item { 79 | margin: 5px 0; 80 | } 81 | 82 | .toc-link { 83 | text-decoration: none; 84 | color: #007bff; 85 | } 86 | 87 | /* Font dan warna teks konten */ 88 | 89 | /* Default (light theme) */ 90 | body[data-bs-theme='light'] h1, 91 | body[data-bs-theme='light'] h2, 92 | body[data-bs-theme='light'] h3, 93 | body[data-bs-theme='light'] h4, 94 | body[data-bs-theme='light'] h5, 95 | body[data-bs-theme='light'] h6 { 96 | font-family: 'Nico Moji', sans-serif; 97 | color: #0f9696; /* Warna cerah untuk judul */ 98 | text-transform: uppercase; 99 | margin-top: 20px; 100 | } 101 | 102 | body[data-bs-theme='light'] h1 { font-size: 1.75rem; } /* Adjusted size */ 103 | body[data-bs-theme='light'] h2 { font-size: 1.5rem; } /* Adjusted size */ 104 | body[data-bs-theme='light'] h3 { font-size: 1.25rem; } /* Adjusted size */ 105 | body[data-bs-theme='light'] h4 { font-size: 1rem; } /* Adjusted size */ 106 | body[data-bs-theme='light'] h5 { font-size: 0.875rem; } /* Adjusted size */ 107 | body[data-bs-theme='light'] h6 { font-size: 0.75rem; } /* Adjusted size */ 108 | 109 | /* Dark theme */ 110 | body[data-bs-theme='dark'] h1, 111 | body[data-bs-theme='dark'] h2, 112 | body[data-bs-theme='dark'] h3, 113 | body[data-bs-theme='dark'] h4, 114 | body[data-bs-theme='dark'] h5, 115 | body[data-bs-theme='dark'] h6 { 116 | font-family: 'Nico Moji', sans-serif; 117 | color: #ffcc00; /* Warna cerah untuk judul pada mode gelap */ 118 | text-transform: uppercase; 119 | margin-top: 20px; 120 | } 121 | 122 | body[data-bs-theme='dark'] h1 { font-size: 1.75rem; } /* Adjusted size */ 123 | body[data-bs-theme='dark'] h2 { font-size: 1.5rem; } /* Adjusted size */ 124 | body[data-bs-theme='dark'] h3 { font-size: 1.25rem; } /* Adjusted size */ 125 | body[data-bs-theme='dark'] h4 { font-size: 1rem; } /* Adjusted size */ 126 | body[data-bs-theme='dark'] h5 { font-size: 0.875rem; } /* Adjusted size */ 127 | body[data-bs-theme='dark'] h6 { font-size: 0.75rem; } /* Adjusted size */ 128 | 129 | /* Default (light theme) */ 130 | body[data-bs-theme='light'] p { 131 | font-size: 16px; 132 | color: dark; /* Warna teks paragraf */ 133 | background-color: transparent; 134 | margin-bottom: 20px; 135 | } 136 | 137 | /* Dark theme */ 138 | body[data-bs-theme='dark'] p { 139 | font-size: 16px; 140 | color: light; /* Warna teks paragraf */ 141 | background-color: transparent; 142 | margin-bottom: 20px; 143 | } 144 | 145 | /* Tautan URL */ 146 | a { 147 | color: #1bd688; /* Warna biru untuk tautan */ 148 | text-decoration: none; 149 | transition: color 0.1s ease, text-shadow 0.1s ease; 150 | } 151 | 152 | a:hover, a:focus { 153 | color: #a5fc04; /* Warna saat tautan di-hover */ 154 | text-shadow: 1px 1px 3px #000000; /* Efek bayangan saat di-hover */ 155 | } 156 | 157 | /* Teks warna-warni */ 158 | .rainbow-text { 159 | font-weight: bold; 160 | background-image: linear-gradient(to right, red, orange, yellow, green, blue, indigo, violet); 161 | -webkit-background-clip: text; 162 | color: transparent; 163 | } 164 | 165 | .img-responsive { 166 | max-width: 100%; 167 | height: auto; 168 | } 169 | 170 | /* pre code copy */ 171 | .code-container { 172 | margin-bottom: 5px; 173 | background-color: grey; 174 | } 175 | .code-header { 176 | display: flex; 177 | justify-content: space-between; 178 | align-items: center; 179 | background-color: dark; 180 | color: #ffffff; 181 | padding: 10px; 182 | } 183 | .language-label { 184 | font-weight: bold; 185 | } 186 | .code-block { 187 | background-color: #2d2d2d; 188 | color: #ffffff; 189 | padding: 15px; 190 | border-radius: 5px; 191 | overflow-x: auto; 192 | } 193 | 194 | .custom-background { 195 | background-color: #f8f9fa; /* Warna latar belakang khusus */ 196 | border: 2px solid #6c757d; /* Warna border khusus */ 197 | box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Shadow khusus */ 198 | } 199 | 200 | /* Tambahkan gaya lainnya yang diinginkan */ 201 | .custom-background .card-title a { 202 | color: #28a745; /* Warna teks judul khusus */ 203 | } 204 | .custom-background .btn-success { 205 | background-color: #17a2b8; /* Warna tombol khusus */ 206 | border-color: #17a2b8; /* Warna border tombol khusus */ 207 | } 208 | 209 | .grid-background { 210 | background-color: #ffffff; /* Warna latar belakang khusus */ 211 | border: 2px solid #6c757d; /* Warna border khusus */ 212 | box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Shadow khusus */ 213 | } 214 | 215 | /* Tambahkan gaya lainnya yang diinginkan */ 216 | .grid-background .card-title a { 217 | color: #099e60; /* Warna teks judul khusus */ 218 | } 219 | .grid-background .btn-success { 220 | background-color: #17a2b8; /* Warna tombol khusus */ 221 | border-color: #17a2b8; /* Warna border tombol khusus */ 222 | } 223 | 224 | /* pengaturan navigasi agar tidak tertutup sidebar */ 225 | #mainNavbar { 226 | z-index: 1030; /* Sesuaikan angka sesuai kebutuhan */ 227 | } 228 | 229 | #mainNavbar .dropdown-menu { 230 | z-index: 1050; /* Lebih tinggi dari navbar untuk memastikan dropdown tampil di depan */ 231 | } 232 | 233 | .fixed-top { 234 | position: fixed; 235 | top: 0; 236 | width: 100%; 237 | } 238 | 239 | .tos-panel { 240 | display: none; 241 | position: fixed; 242 | z-index: 1; 243 | left: 50%; 244 | top: 50%; 245 | transform: translate(-50%, -50%); 246 | width: 80%; 247 | max-width: 600px; 248 | height: auto; 249 | overflow: auto; 250 | background-color: rgb(255,255,255); 251 | border: 1px solid #888; 252 | border-radius: 10px; 253 | box-shadow: 0 4px 8px rgba(0,0,0,0.2); 254 | } 255 | 256 | .tos-content { 257 | padding: 20px; 258 | } 259 | 260 | .close { 261 | color: #aaa; 262 | float: right; 263 | font-size: 28px; 264 | font-weight: bold; 265 | } 266 | 267 | .close:hover, 268 | .close:focus { 269 | color: black; 270 | text-decoration: none; 271 | cursor: pointer; 272 | } 273 | -------------------------------------------------------------------------------- /assets/css/syntax.css: -------------------------------------------------------------------------------- 1 | .highlight table td { padding: 1px; } 2 | .highlight table pre { margin: 0; } 3 | .highlight, .highlight .w { 4 | color: #24292f; 5 | background-color: #f6f8fa; 6 | } 7 | .highlight .k, .highlight .kd, .highlight .kn, .highlight .kp, .highlight .kr, .highlight .kt, .highlight .kv { 8 | color: #cf222e; 9 | } 10 | .highlight .gr { 11 | color: #f6f8fa; 12 | } 13 | .highlight .gd { 14 | color: #82071e; 15 | background-color: #ffebe9; 16 | } 17 | .highlight .nb { 18 | color: #953800; 19 | } 20 | .highlight .nc { 21 | color: #953800; 22 | } 23 | .highlight .no { 24 | color: #953800; 25 | } 26 | .highlight .nn { 27 | color: #953800; 28 | } 29 | .highlight .sr { 30 | color: #116329; 31 | } 32 | .highlight .na { 33 | color: #116329; 34 | } 35 | .highlight .nt { 36 | color: #116329; 37 | } 38 | .highlight .gi { 39 | color: #116329; 40 | background-color: #dafbe1; 41 | } 42 | .highlight .ges { 43 | font-weight: bold; 44 | font-style: italic; 45 | } 46 | .highlight .kc { 47 | color: #0550ae; 48 | } 49 | .highlight .l, .highlight .ld, .highlight .m, .highlight .mb, .highlight .mf, .highlight .mh, .highlight .mi, .highlight .il, .highlight .mo, .highlight .mx { 50 | color: #0550ae; 51 | } 52 | .highlight .sb { 53 | color: #0550ae; 54 | } 55 | .highlight .bp { 56 | color: #0550ae; 57 | } 58 | .highlight .ne { 59 | color: #0550ae; 60 | } 61 | .highlight .nl { 62 | color: #0550ae; 63 | } 64 | .highlight .py { 65 | color: #0550ae; 66 | } 67 | .highlight .nv, .highlight .vc, .highlight .vg, .highlight .vi, .highlight .vm { 68 | color: #0550ae; 69 | } 70 | .highlight .o, .highlight .ow { 71 | color: #0550ae; 72 | } 73 | .highlight .gh { 74 | color: #0550ae; 75 | font-weight: bold; 76 | } 77 | .highlight .gu { 78 | color: #0550ae; 79 | font-weight: bold; 80 | } 81 | .highlight .s, .highlight .sa, .highlight .sc, .highlight .dl, .highlight .sd, .highlight .s2, .highlight .se, .highlight .sh, .highlight .sx, .highlight .s1, .highlight .ss { 82 | color: #0a3069; 83 | } 84 | .highlight .nd { 85 | color: #8250df; 86 | } 87 | .highlight .nf, .highlight .fm { 88 | color: #8250df; 89 | } 90 | .highlight .err { 91 | color: #f6f8fa; 92 | background-color: #82071e; 93 | } 94 | .highlight .c, .highlight .ch, .highlight .cd, .highlight .cm, .highlight .cp, .highlight .cpf, .highlight .c1, .highlight .cs { 95 | color: #6e7781; 96 | } 97 | .highlight .gl { 98 | color: #6e7781; 99 | } 100 | .highlight .gt { 101 | color: #6e7781; 102 | } 103 | .highlight .ni { 104 | color: #24292f; 105 | } 106 | .highlight .si { 107 | color: #24292f; 108 | } 109 | .highlight .ge { 110 | color: #24292f; 111 | font-style: italic; 112 | } 113 | .highlight .gs { 114 | color: #24292f; 115 | font-weight: bold; 116 | } 117 | -------------------------------------------------------------------------------- /assets/images/20241029_041810.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterwifinetworksolution/clash/bb8ee0e0c450dd94925418c53e83adc7c3da2bdf/assets/images/20241029_041810.png -------------------------------------------------------------------------------- /assets/images/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterwifinetworksolution/clash/bb8ee0e0c450dd94925418c53e83adc7c3da2bdf/assets/images/banner.jpg -------------------------------------------------------------------------------- /assets/images/command-linux.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterwifinetworksolution/clash/bb8ee0e0c450dd94925418c53e83adc7c3da2bdf/assets/images/command-linux.jpg -------------------------------------------------------------------------------- /assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterwifinetworksolution/clash/bb8ee0e0c450dd94925418c53e83adc7c3da2bdf/assets/images/favicon.ico -------------------------------------------------------------------------------- /assets/images/hs-dan-pppoe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterwifinetworksolution/clash/bb8ee0e0c450dd94925418c53e83adc7c3da2bdf/assets/images/hs-dan-pppoe.jpg -------------------------------------------------------------------------------- /assets/images/install-tailscale-openwrt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterwifinetworksolution/clash/bb8ee0e0c450dd94925418c53e83adc7c3da2bdf/assets/images/install-tailscale-openwrt.jpg -------------------------------------------------------------------------------- /assets/images/pengenalan-linux.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterwifinetworksolution/clash/bb8ee0e0c450dd94925418c53e83adc7c3da2bdf/assets/images/pengenalan-linux.jpg -------------------------------------------------------------------------------- /assets/images/setting-cpe220.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterwifinetworksolution/clash/bb8ee0e0c450dd94925418c53e83adc7c3da2bdf/assets/images/setting-cpe220.jpg -------------------------------------------------------------------------------- /assets/images/setting-wr840n.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterwifinetworksolution/clash/bb8ee0e0c450dd94925418c53e83adc7c3da2bdf/assets/images/setting-wr840n.jpg -------------------------------------------------------------------------------- /assets/js/adblock-check.js: -------------------------------------------------------------------------------- 1 | 21 | 22 | -------------------------------------------------------------------------------- /assets/js/anti-adblock.js: -------------------------------------------------------------------------------- 1 | document.addEventListener('DOMContentLoaded', function () { 2 | function checkAdblock() { 3 | if (typeof adblock === 'detected') { 4 | document.body.innerHTML = '

waluh.

'; 5 | } 6 | } 7 | 8 | checkAdblock(); 9 | 10 | // Cek lagi setelah beberapa detik, untuk melihat apakah adblocker sudah dinonaktifkan 11 | setInterval(checkAdblock, 3000); 12 | }); 13 | -------------------------------------------------------------------------------- /categories.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 |
6 |
7 |
8 |

{{ page.title }}

9 |
10 | 11 |

Categories

12 | 13 | {% assign unique_categories = site.posts | map: 'categories' | join: ',' | split: ',' | uniq %} 14 | {% for category in unique_categories %} 15 | 16 |
17 |
18 |
19 | {{ category }} 20 |
21 |
22 |
23 | {% endfor %} 24 |
25 |
26 |
27 |
28 | -------------------------------------------------------------------------------- /feed.xml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: null 3 | --- 4 | 5 | 6 | {% for post in site.posts %} 7 | 8 | {{ post.url | absolute_url }} 9 | {{ post.date | date_to_xmlschema }} 10 | monthly 11 | 0.8 12 | 13 | {% endfor %} 14 | {% for page in site.pages %} 15 | {% unless page.url contains '404' %} 16 | 17 | {{ page.url | absolute_url }} 18 | {{ page.date | date_to_xmlschema }} 19 | monthly 20 | 0.8 21 | 22 | {% endunless %} 23 | {% endfor %} 24 | 25 | -------------------------------------------------------------------------------- /googled41425154ba52776.html: -------------------------------------------------------------------------------- 1 | google-site-verification: googled41425154ba52776.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | title: Home 4 | --- 5 | 6 | {% include iklan.html %} 7 | 8 | 9 |
10 | Wellcome To Master Wifi Network Solution 11 |
12 |

Wellcome To Master Wifi Network Solution

13 |
14 | Update: 25 November 2024 15 |
16 |
17 | Reading duration: 2 menit 18 |
19 |
20 | Writer: Muhammad Yusuf 21 |
22 | View Article 23 |
24 |
25 | 26 | 27 | 55 | 56 | 57 | 88 | 89 | {% include iklan.html %} 90 | -------------------------------------------------------------------------------- /marketplace.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | title: Marketplace 4 | --- 5 | 6 | 68 | 69 |
70 |
71 |
72 |
Kategori Produk & Layanan
73 | 97 |
98 |
99 |
100 |
101 |
Daftar Produk
102 |
103 | {% assign products = site.data.products | group_by: "category" %} 104 | {% for category in products %} 105 |
106 |
107 | {{ category.name | capitalize }} 108 | Lihat Produk {{ category.name | capitalize }} Selengkapnya 109 |
110 | 134 |
135 | {% endfor %} 136 |
137 |
138 |
139 |
140 | -------------------------------------------------------------------------------- /openwrt.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: openwrts 3 | title: Openwrt 4 | --- 5 | 6 | 68 | 69 |
70 |
71 |
72 |
Kategori Openwrt
73 | 97 |
98 |
99 |
100 |
101 |
Daftar Openwrt
102 |
103 | {% assign devices = site.data.devices | group_by: "category" %} 104 | {% for category in devices %} 105 |
106 |
107 | {{ category.name | capitalize }} 108 | Lihat Openwrt {{ category.name | capitalize }} Selengkapnya 109 |
110 | 135 |
136 | {% endfor %} 137 |
138 |
139 |
140 |
141 | -------------------------------------------------------------------------------- /openwrt/x86.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: openwrts 3 | title: Openwrt X86 64 4 | --- 5 | 6 | 50 | 51 |
52 | 53 |
54 |
55 |
56 | Openwrt X86 64 57 | Kembali ke Kategori Utama 58 |
59 |
60 |
61 |
62 | {% for device in site.data.devices %} 63 | {% if device.category == "x86" %} 64 |
65 |
66 | {{ device.name }} 67 |
68 |
{{ device.name }}
69 |

Format: {{ device.format }}

70 |

Size: {{ device.size }}

71 | Download 72 |
73 |
74 |
75 | {% endif %} 76 | {% endfor %} 77 |
78 |
79 | -------------------------------------------------------------------------------- /pages/contact.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | title: Contact 4 | permalink: /contact.html 5 | --- 6 | 7 |
8 |
9 |
10 |

Contact {{ site.title }}

11 |

{{ site.title }} di sini untuk membantu Anda dengan segala pertanyaan dan kebutuhan Anda. Jangan ragu untuk menghubungi {{ site.title }} melalui salah satu platform berikut:

12 | 26 |
27 |
28 |
29 | -------------------------------------------------------------------------------- /pages/disclaimer.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | title: Disclaimer 4 | permalink: /disclaimer.html 5 | --- 6 |
7 |
8 |

Disclaimer for Master Wifi Network Solution

9 | 10 |

Welcome to Master Wifi Network Solution!

11 | 12 |

If you require any more information or have any questions about our site's disclaimer, please feel free to contact us by email at myarachma92@gmail.com.

13 | 14 |

Disclaimers for Master Wifi Network Solution

15 | 16 |

All the information on this website - masterwifinetworksolution.github.io - is published in good faith and for general information purpose only. Master Wifi Network Solution does not make any warranties about the completeness, reliability, and accuracy of this information. Any action you take upon the information you find on this website (Master Wifi Network Solution), is strictly at your own risk. Master Wifi Network Solution will not be liable for any losses and/or damages in connection with the use of our website.

17 | 18 |

From our website, you can visit other websites by following hyperlinks to such external sites. While we strive to provide only quality links to useful and ethical websites, we have no control over the content and nature of these sites. These links to other websites do not imply a recommendation for all the content found on these sites. Site owners and content may change without notice and may occur before we have the opportunity to remove a link which may have gone 'bad'.

19 | 20 |

Please be also aware that when you leave our website, other sites may have different privacy policies and terms which are beyond our control. Please be sure to check the Privacy Policies of these sites as well as their "Terms of Service" before engaging in any business or uploading any information.

21 | 22 |

Consent

23 | 24 |

By using our website, you hereby consent to our disclaimer and agree to its terms.

25 | 26 |

Update

27 | 28 |

Should we update, amend or make any changes to this document, those changes will be prominently posted here.

29 | 30 |

Last updated: [25 Nov 2024]

31 |
32 | -------------------------------------------------------------------------------- /pages/documentation.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | title: Documentation 4 | permalink: /documentation.html 5 | --- 6 | 7 |
8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | {% for docs in site.data.documentation %} 19 | 20 | 21 | 22 | 29 | 30 | {% endfor %} 31 | 32 |
NameTypeLink
{{ docs.name }}{{ docs.type }} 23 | {% if docs.link == "#" %} 24 | Closed 25 | {% else %} 26 | Open 27 | {% endif %} 28 |
33 |
34 | -------------------------------------------------------------------------------- /pages/donate.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | title: Donate 4 | permalink: /donate.html 5 | --- 6 | 19 |
20 |
21 |
22 |
23 |
Donate
24 |

Halo teman-teman,

25 |

Jika Anda merasa blog ini bermanfaat dan ingin mendukung saya dalam menjaga dan memperbarui konten, Anda dapat memberikan donasi melalui beberapa metode di bawah ini. Setiap donasi yang Anda berikan akan sangat membantu dalam mempertahankan kualitas dan keberlangsungan blog ini. Terima kasih banyak atas dukungan Anda!

26 |
Metode Donasi
27 |
28 | 29 |
30 |
31 | Bank Logo 32 |
Transfer Bank
33 |

Anda dapat mengirimkan donasi melalui transfer bank ke rekening berikut:

34 |
    35 |
  • Bank: Bank Rakyat Indonesia
  • 36 |
  • Nomor Rekening: 453401017095532
  • 37 |
  • Nama Penerima: MUHAMMAD YUSUF
  • 38 |
39 |
40 |
41 | 42 |
43 |
44 | DANA Logo 45 |
Transfer DANA
46 |

Anda dapat mengirimkan donasi melalui transfer ke DANA berikut:

47 |
    48 |
  • Nomor DANA: 087764241047
  • 49 |
  • Nama Penerima: MU*******UF
  • 50 |
51 |
52 |
53 | 54 |
55 |
56 | GOPAY Logo 57 |
Transfer GOPAY
58 |

Anda dapat mengirimkan donasi melalui transfer ke GOPAY berikut:

59 |
    60 |
  • Nomor GOPAY: 087714249731
  • 61 |
  • Nama Penerima: NOR*****NI
  • 62 |
63 |
64 |
65 | 66 |
67 |
68 | OVO Logo 69 |
Transfer OVO
70 |

Anda dapat mengirimkan donasi melalui transfer ke OVO berikut:

71 |
    72 |
  • Nomor OVO: 087714249731
  • 73 |
  • Nama Penerima: NOR*****NI
  • 74 |
75 |
76 |
77 | 78 |
79 |
80 | PayPal Logo 81 |
PayPal
82 |

Anda juga bisa mendonasikan melalui PayPal. Silakan klik tombol di bawah ini:

83 | Donasi via PayPal 84 |
85 |
86 | 87 |
88 |
89 | Patreon Logo 90 |
Patreon
91 |

Untuk donasi berlangganan bulanan, Anda bisa mendukung melalui Patreon:

92 | Donasi via Patreon 93 |
94 |
95 | 96 |
97 |
98 | Saweria Logo 99 |
Saweria
100 |

Anda juga bisa mendonasikan melalui Saweria. Silakan klik tombol di bawah ini:

101 | Donasi via Saweria 102 |
103 |
104 | 105 |
106 |
107 | SociaBuzz Logo 108 |
SociaBuzz
109 |

Anda juga bisa mendonasikan melalui SociaBuzz. Silakan klik tombol di bawah ini:

110 | Donasi via SociaBuzz 111 |
112 |
113 | 114 |
115 |
Kontak
116 |

Jika Anda memiliki pertanyaan atau membutuhkan informasi lebih lanjut, jangan ragu untuk menghubungi saya melalui email di myarachma92@gmail.com.

117 |

Terima kasih banyak atas dukungan dan partisipasi Anda!

118 |
119 |
120 |
-------------------------------------------------------------------------------- /pages/files.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | title: Files 4 | permalink: /files/ 5 | --- 6 |
7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | {% for file in site.data.files %} 19 | 20 | 21 | 22 | 23 | 30 | 31 | {% endfor %} 32 | 33 |
NameTypeSizeLink
{{ file.name }}{{ file.type }}{{ file.size }} 24 | {% if file.link == "#" %} 25 | None 26 | {% else %} 27 | Download 28 | {% endif %} 29 |
34 |
35 | 36 | 59 | -------------------------------------------------------------------------------- /pages/privacy-policy.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | title: Privacy Policy 4 | permalink: /privacy-policy.html 5 | --- 6 |
7 |
8 |

Privacy Policy for Master Wifi Network Solution

9 | 10 |

At Master Wifi Network Solution, accessible from https://masterwifinetworksolution.github.io, one of our main priorities is the privacy of our visitors. This Privacy Policy document contains types of information that is collected and recorded by Master Wifi Network Solution and how we use it.

11 | 12 |

If you have additional questions or require more information about our Privacy Policy, do not hesitate to contact us through email at myarachma92@gmail.com.

13 | 14 |

Log Files

15 | 16 |

Master Wifi Network Solution follows a standard procedure of using log files. These files log visitors when they visit websites. All hosting companies do this and a part of hosting services' analytics. The information collected by log files include internet protocol (IP) addresses, browser type, Internet Service Provider (ISP), date and time stamp, referring/exit pages, and possibly the number of clicks. These are not linked to any information that is personally identifiable. The purpose of the information is for analyzing trends, administering the site, tracking users' movement on the website, and gathering demographic information.

17 | 18 |

Cookies and Web Beacons

19 | 20 |

Like any other website, Master Wifi Network Solution uses 'cookies'. These cookies are used to store information including visitors' preferences, and the pages on the website that the visitor accessed or visited. The information is used to optimize the users' experience by customizing our web page content based on visitors' browser type and/or other information.

21 | 22 |

Google DoubleClick DART Cookie

23 | 24 |

Google is one of a third-party vendor on our site. It also uses cookies, known as DART cookies, to serve ads to our site visitors based upon their visit to www.website.com and other sites on the internet. However, visitors may choose to decline the use of DART cookies by visiting the Google ad and content network Privacy Policy at the following URL – https://policies.google.com/technologies/ads

25 | 26 |

Our Advertising Partners

27 | 28 |

Some of advertisers on our site may use cookies and web beacons. Our advertising partners are listed below. Each of our advertising partners has their own Privacy Policy for their policies on user data. For easier access, we hyperlinked to their Privacy Policies below.

29 | 35 | 36 |

Privacy Policies

37 | 38 |

You may consult this list to find the Privacy Policy for each of the advertising partners of Master Wifi Network Solution.

39 | 40 |

Third-party ad servers or ad networks uses technologies like cookies, JavaScript, or Web Beacons that are used in their respective advertisements and links that appear on Master Wifi Network Solution, which are sent directly to users' browser. They automatically receive your IP address when this occurs. These technologies are used to measure the effectiveness of their advertising campaigns and/or to personalize the advertising content that you see on websites that you visit.

41 | 42 |

Note that Master Wifi Network Solution has no access to or control over these cookies that are used by third-party advertisers.

43 | 44 |

Third Party Privacy Policies

45 | 46 |

Master Wifi Network Solution's Privacy Policy does not apply to other advertisers or websites. Thus, we are advising you to consult the respective Privacy Policies of these third-party ad servers for more detailed information. It may include their practices and instructions about how to opt-out of certain options.

47 | 48 |

You can choose to disable cookies through your individual browser options. To know more detailed information about cookie management with specific web browsers, it can be found at the browsers' respective websites.

49 | 50 |

Children's Information

51 | 52 |

Another part of our priority is adding protection for children while using the internet. We encourage parents and guardians to observe, participate in, and/or monitor and guide their online activity.

53 | 54 |

Master Wifi Network Solution does not knowingly collect any Personal Identifiable Information from children under the age of 13. If you think that your child provided this kind of information on our website, we strongly encourage you to contact us immediately and we will do our best efforts to promptly remove such information from our records.

55 | 56 |

Online Privacy Policy Only

57 | 58 |

Our Privacy Policy applies only to our online activities and is valid for visitors to our website with regards to the information that they shared and/or collect in Master Wifi Network Solution. This policy is not applicable to any information collected offline or via channels other than this website.

59 | 60 |

Consent

61 | 62 |

By using our website, you hereby consent to our Privacy Policy and agree to its Terms and Conditions.

63 | 64 |

Update

65 | 66 |

This Privacy Policy was last updated on: [25 Nov 2024]. Should we update, amend, or make any changes to our privacy policy, those changes will be posted here.

67 |
68 | -------------------------------------------------------------------------------- /pages/profile.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | title: Master Wifi Network Solution 4 | permalink: /profile.html 5 | --- 6 | 7 |
8 | Master Wifi Network Solution Logo 9 | 10 |

Tentang Master Wifi Network Solution

11 | 12 |

Selamat datang di Master Wifi Network Solution, sumber terpercaya Anda untuk semua kebutuhan jaringan wifi. Kami berdedikasi untuk memberikan solusi terbaik dalam hal pemasangan, konfigurasi, dan optimisasi jaringan wifi, dengan fokus pada keandalan, kecepatan, dan keamanan.

13 | 14 |

Misi Kami

15 | 16 |

Misi kami adalah untuk memberdayakan individu dan bisnis dengan solusi wifi yang handal dan efisien. Kami memahami betapa pentingnya konektivitas yang stabil dalam kehidupan sehari-hari, baik untuk keperluan pribadi maupun profesional. Oleh karena itu, kami berkomitmen untuk memberikan layanan dan produk berkualitas tinggi yang dapat memenuhi kebutuhan Anda.

17 | 18 |

Layanan Kami

19 | 20 |

Di Master Wifi Network Solution, kami menawarkan berbagai layanan untuk memastikan jaringan wifi Anda berfungsi dengan optimal:

21 | 22 | 31 | 32 |

Mengapa Memilih Kami?

33 | 34 | 41 | 42 |

Komitmen Kami

43 | 44 |

Kami berkomitmen untuk memberikan solusi jaringan wifi yang handal dan efisien bagi setiap pelanggan kami. Tidak peduli seberapa besar atau kecil kebutuhan Anda, kami siap untuk membantu Anda mencapai konektivitas yang optimal.

45 | 46 |

Hubungi Kami

47 | 48 |

Jika Anda memiliki pertanyaan atau membutuhkan bantuan, jangan ragu untuk menghubungi kami:

49 | 50 | -------------------------------------------------------------------------------- /pages/safelink/download-config-simaster-meta.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | title: "Download Config Simaster Meta" 4 | permalink: /download-config-simaster-meta/ 5 | --- 6 | 7 |
8 | 9 | 10 | 16 | 17 | 20 | 21 |
22 | 23 |

Menyiapkan download, Mohon tunggu selama 10 detik...

24 | 25 |
26 | 27 | 28 | 34 | 35 | 38 | 39 |
40 | 41 |

OpenWRT adalah sistem operasi berbasis Linux yang dirancang untuk digunakan pada perangkat embedded, seperti router. Dengan OpenWRT, Anda dapat menyesuaikan dan mengoptimalkan perangkat Anda sesuai kebutuhan.

42 | 43 |

Persiapan Lingkungan

44 | 45 |

1. Instalasi Prasyarat: Pastikan Anda memiliki alat dan perpustakaan yang diperlukan. Di Ubuntu, Anda dapat menginstalnya dengan perintah berikut:

46 | 47 |
sudo apt-get update
 48 | sudo apt-get install build-essential libncurses5-dev gawk git subversion libssl-dev gettext libz-dev file
49 | 50 |

2. Clone Repositori OpenWRT: Unduh source code OpenWRT dengan perintah:

51 | 52 |
git clone https://git.openwrt.org/openwrt/openwrt.git
 53 | cd openwrt
54 | 55 |

Membangun Image

56 | 57 |

1. Update dan Install Feeds: OpenWRT menggunakan feeds untuk mengelola paket. Jalankan perintah:

58 | 59 |
./scripts/feeds update -a
 60 | ./scripts/feeds install -a
61 | 62 |

2. Konfigurasi Build: Gunakan konfigurasi build menu:

63 | 64 |
make menuconfig
65 | 66 |

Pilih target perangkat yang ingin Anda build. Misalnya, untuk TP-Link TL-WR841N:

67 | 68 |
69 | 70 | 71 | 77 | 78 | 81 | 82 |
83 | 84 | 88 | 89 |
90 | 91 | 92 | 98 | 99 | 102 | 103 |
104 | 105 |
106 | 111 | 112 |

3. Mulai Build: Mulai proses build dengan menjalankan perintah:

113 | 114 |
make
115 | 116 |

Proses ini akan memakan waktu beberapa jam tergantung pada kecepatan sistem Anda.

117 | 118 |

Menggunakan Image yang Dibangun

119 | 120 |

Setelah proses build selesai, Anda akan menemukan image hasil build di direktori bin/targets. Anda dapat meng-upload image ini ke perangkat Anda melalui antarmuka web router atau menggunakan perintah sysupgrade pada router yang sudah menjalankan OpenWRT.

121 | 122 | 142 | -------------------------------------------------------------------------------- /pages/safelink/download-termux-autoplane.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | title: "Download Termux Autoplane" 4 | permalink: /download-termux-autoplane/ 5 | --- 6 | 7 |
8 | 9 | 10 | 16 | 17 | 20 | 21 |
22 | 23 |

Menyiapkan download, Mohon tunggu selama 10 detik...

24 | 25 |
26 | 27 | 28 | 34 | 35 | 38 | 39 |
40 | 41 |

OpenWRT adalah sistem operasi berbasis Linux yang dirancang untuk digunakan pada perangkat embedded, seperti router. Dengan OpenWRT, Anda dapat menyesuaikan dan mengoptimalkan perangkat Anda sesuai kebutuhan.

42 | 43 |

Persiapan Lingkungan

44 | 45 |

1. Instalasi Prasyarat: Pastikan Anda memiliki alat dan perpustakaan yang diperlukan. Di Ubuntu, Anda dapat menginstalnya dengan perintah berikut:

46 | 47 |
sudo apt-get update
 48 | sudo apt-get install build-essential libncurses5-dev gawk git subversion libssl-dev gettext libz-dev file
49 | 50 |

2. Clone Repositori OpenWRT: Unduh source code OpenWRT dengan perintah:

51 | 52 |
git clone https://git.openwrt.org/openwrt/openwrt.git
 53 | cd openwrt
54 | 55 |

Membangun Image

56 | 57 |

1. Update dan Install Feeds: OpenWRT menggunakan feeds untuk mengelola paket. Jalankan perintah:

58 | 59 |
./scripts/feeds update -a
 60 | ./scripts/feeds install -a
61 | 62 |

2. Konfigurasi Build: Gunakan konfigurasi build menu:

63 | 64 |
make menuconfig
65 | 66 |

Pilih target perangkat yang ingin Anda build. Misalnya, untuk TP-Link TL-WR841N:

67 | 68 |
69 | 70 | 71 | 77 | 78 | 81 | 82 |
83 | 84 | 88 | 89 |
90 | 91 | 92 | 98 | 99 | 102 | 103 |
104 | 105 |
106 | 111 | 112 |

3. Mulai Build: Mulai proses build dengan menjalankan perintah:

113 | 114 |
make
115 | 116 |

Proses ini akan memakan waktu beberapa jam tergantung pada kecepatan sistem Anda.

117 | 118 |

Menggunakan Image yang Dibangun

119 | 120 |

Setelah proses build selesai, Anda akan menemukan image hasil build di direktori bin/targets. Anda dapat meng-upload image ini ke perangkat Anda melalui antarmuka web router atau menggunakan perintah sysupgrade pada router yang sudah menjalankan OpenWRT.

121 | 122 | 142 | -------------------------------------------------------------------------------- /pages/safelink/download-termux-boot.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | title: "Download Termux Boot" 4 | permalink: /download-termux-boot/ 5 | --- 6 | 7 |
8 | 9 | 10 | 16 | 17 | 20 | 21 |
22 | 23 |

Menyiapkan download, Mohon tunggu selama 10 detik...

24 | 25 |
26 | 27 | 28 | 34 | 35 | 38 | 39 |
40 | 41 |

OpenWRT adalah sistem operasi berbasis Linux yang dirancang untuk digunakan pada perangkat embedded, seperti router. Dengan OpenWRT, Anda dapat menyesuaikan dan mengoptimalkan perangkat Anda sesuai kebutuhan.

42 | 43 |

Persiapan Lingkungan

44 | 45 |

1. Instalasi Prasyarat: Pastikan Anda memiliki alat dan perpustakaan yang diperlukan. Di Ubuntu, Anda dapat menginstalnya dengan perintah berikut:

46 | 47 |
sudo apt-get update
 48 | sudo apt-get install build-essential libncurses5-dev gawk git subversion libssl-dev gettext libz-dev file
49 | 50 |

2. Clone Repositori OpenWRT: Unduh source code OpenWRT dengan perintah:

51 | 52 |
git clone https://git.openwrt.org/openwrt/openwrt.git
 53 | cd openwrt
54 | 55 |

Membangun Image

56 | 57 |

1. Update dan Install Feeds: OpenWRT menggunakan feeds untuk mengelola paket. Jalankan perintah:

58 | 59 |
./scripts/feeds update -a
 60 | ./scripts/feeds install -a
61 | 62 |

2. Konfigurasi Build: Gunakan konfigurasi build menu:

63 | 64 |
make menuconfig
65 | 66 |

Pilih target perangkat yang ingin Anda build. Misalnya, untuk TP-Link TL-WR841N:

67 | 68 |
69 | 70 | 71 | 77 | 78 | 81 | 82 |
83 | 84 | 88 | 89 |
90 | 91 | 92 | 98 | 99 | 102 | 103 |
104 | 105 |
106 | 111 | 112 |

3. Mulai Build: Mulai proses build dengan menjalankan perintah:

113 | 114 |
make
115 | 116 |

Proses ini akan memakan waktu beberapa jam tergantung pada kecepatan sistem Anda.

117 | 118 |

Menggunakan Image yang Dibangun

119 | 120 |

Setelah proses build selesai, Anda akan menemukan image hasil build di direktori bin/targets. Anda dapat meng-upload image ini ke perangkat Anda melalui antarmuka web router atau menggunakan perintah sysupgrade pada router yang sudah menjalankan OpenWRT.

121 | 122 | 142 | -------------------------------------------------------------------------------- /pages/safelink/download-termux.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | title: "Download Termux" 4 | permalink: /download-termux/ 5 | --- 6 | 7 |
8 | 9 | 10 | 16 | 17 | 20 | 21 |
22 | 23 |

Menyiapkan download, Mohon tunggu selama 10 detik...

24 | 25 |
26 | 27 | 28 | 34 | 35 | 38 | 39 |
40 | 41 |

OpenWRT adalah sistem operasi berbasis Linux yang dirancang untuk digunakan pada perangkat embedded, seperti router. Dengan OpenWRT, Anda dapat menyesuaikan dan mengoptimalkan perangkat Anda sesuai kebutuhan.

42 | 43 |

Persiapan Lingkungan

44 | 45 |

1. Instalasi Prasyarat: Pastikan Anda memiliki alat dan perpustakaan yang diperlukan. Di Ubuntu, Anda dapat menginstalnya dengan perintah berikut:

46 | 47 |
sudo apt-get update
 48 | sudo apt-get install build-essential libncurses5-dev gawk git subversion libssl-dev gettext libz-dev file
49 | 50 |

2. Clone Repositori OpenWRT: Unduh source code OpenWRT dengan perintah:

51 | 52 |
git clone https://git.openwrt.org/openwrt/openwrt.git
 53 | cd openwrt
54 | 55 |

Membangun Image

56 | 57 |

1. Update dan Install Feeds: OpenWRT menggunakan feeds untuk mengelola paket. Jalankan perintah:

58 | 59 |
./scripts/feeds update -a
 60 | ./scripts/feeds install -a
61 | 62 |

2. Konfigurasi Build: Gunakan konfigurasi build menu:

63 | 64 |
make menuconfig
65 | 66 |

Pilih target perangkat yang ingin Anda build. Misalnya, untuk TP-Link TL-WR841N:

67 | 68 |
69 | 70 | 71 | 77 | 78 | 81 | 82 |
83 | 84 | 88 | 89 |
90 | 91 | 92 | 98 | 99 | 102 | 103 |
104 | 105 |
106 | 111 | 112 |

3. Mulai Build: Mulai proses build dengan menjalankan perintah:

113 | 114 |
make
115 | 116 |

Proses ini akan memakan waktu beberapa jam tergantung pada kecepatan sistem Anda.

117 | 118 |

Menggunakan Image yang Dibangun

119 | 120 |

Setelah proses build selesai, Anda akan menemukan image hasil build di direktori bin/targets. Anda dapat meng-upload image ini ke perangkat Anda melalui antarmuka web router atau menggunakan perintah sysupgrade pada router yang sudah menjalankan OpenWRT.

121 | 122 | 142 | -------------------------------------------------------------------------------- /pages/search.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: cari 3 | title: search 4 | permalink: /search.html 5 | --- 6 | 7 | 8 | 9 |
10 |
11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 |
TitleType
25 |
26 | 27 | 64 | -------------------------------------------------------------------------------- /pages/sitemap.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | title: Sitemap 4 | permalink: /sitemap/ 5 | --- 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | {% assign categories = site.posts | map: 'categories' | join: ',' | split: ',' | uniq | sort %} 18 | {% for category in categories %} 19 | {% for post in site.posts %} 20 | {% if post.categories contains category %} 21 | 22 | 23 | 24 | 25 | 26 | {% endif %} 27 | {% endfor %} 28 | {% endfor %} 29 | 30 | 31 | 32 | 33 | 34 | 35 |
NameCategoryDate
{{ post.title }}{{ category }}{{ post.date | date: '%d %B %Y' }}
CATATAN:
Jika anda tidak menemukan yang anda cari, silahkan hubungi kami melalui Contact.
36 |
37 | 38 | 61 | -------------------------------------------------------------------------------- /pages/videos.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: yt 3 | title: Videos 4 | permalink: /videos.html 5 | --- 6 | 7 | 31 |
32 |
33 |

Videos

34 |
35 |
36 |
37 | 38 |
39 |
40 |
41 |
42 |
43 |
    44 |
    45 |
    46 |
    47 |
    48 |
    49 | 50 | 114 | -------------------------------------------------------------------------------- /robot.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: /assets/ 3 | 4 | Sitemap: https://mwns.github.io/feed.xml 5 | -------------------------------------------------------------------------------- /sitemap.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | 11 | https://masterwifinetworksolution.github.io/ 12 | 2024-12-28T11:19:17+00:00 13 | 1.00 14 | 15 | 16 | https://masterwifinetworksolution.github.io/sitemap/ 17 | 2024-12-28T11:19:17+00:00 18 | 0.80 19 | 20 | 21 | https://masterwifinetworksolution.github.io/profile.html 22 | 2024-12-28T11:19:17+00:00 23 | 0.80 24 | 25 | 26 | https://masterwifinetworksolution.github.io/contact.html 27 | 2024-12-28T11:19:17+00:00 28 | 0.80 29 | 30 | 31 | https://masterwifinetworksolution.github.io/donate.html 32 | 2024-12-28T11:19:17+00:00 33 | 0.80 34 | 35 | 36 | https://masterwifinetworksolution.github.io/disclaimer.html 37 | 2024-12-28T11:19:17+00:00 38 | 0.80 39 | 40 | 41 | https://masterwifinetworksolution.github.io/privacy-policy.html 42 | 2024-12-28T11:19:17+00:00 43 | 0.80 44 | 45 | 46 | https://masterwifinetworksolution.github.io/videos.html 47 | 2024-12-28T11:19:17+00:00 48 | 0.80 49 | 50 | 51 | https://masterwifinetworksolution.github.io/files/ 52 | 2024-12-28T11:19:17+00:00 53 | 0.80 54 | 55 | 56 | https://masterwifinetworksolution.github.io/documentation.html 57 | 2024-12-28T11:19:17+00:00 58 | 0.80 59 | 60 | 61 | https://masterwifinetworksolution.github.io/openwrt/ 62 | 2024-12-28T11:19:17+00:00 63 | 0.80 64 | 65 | 66 | https://masterwifinetworksolution.github.io/search.html 67 | 2024-12-28T11:19:17+00:00 68 | 0.80 69 | 70 | 71 | https://masterwifinetworksolution.github.io/announcement/wellcome-to-masterwifinetworksolution/ 72 | 2024-12-28T11:19:17+00:00 73 | 0.80 74 | 75 | 76 | https://masterwifinetworksolution.github.io/emulation/gaming/how-to-install-xbox-emulator-on-windows-android-linux/ 77 | 2024-12-28T11:19:17+00:00 78 | 0.80 79 | 80 | 81 | https://masterwifinetworksolution.github.io/emulation/gaming/how-to-install-xbox-emulator-on-pc/ 82 | 2024-12-28T11:19:17+00:00 83 | 0.80 84 | 85 | 86 | https://masterwifinetworksolution.github.io/emulation/gaming/how-to-install-ps5-emulator-on-pc/ 87 | 2024-12-28T11:19:17+00:00 88 | 0.80 89 | 90 | 91 | https://masterwifinetworksolution.github.io/emulation/gaming/how-to-install-ps4-emulator-on-pc/ 92 | 2024-12-28T11:19:17+00:00 93 | 0.80 94 | 95 | 96 | https://masterwifinetworksolution.github.io/emulation/gaming/how-to-install-ps3-emulator-on-pc/ 97 | 2024-12-28T11:19:17+00:00 98 | 0.80 99 | 100 | 101 | https://masterwifinetworksolution.github.io/emulation/gaming/how-to-install-ps2-emulator-on-pc/ 102 | 2024-12-28T11:19:17+00:00 103 | 0.80 104 | 105 | 106 | https://masterwifinetworksolution.github.io/page/2/ 107 | 2024-12-28T11:19:17+00:00 108 | 0.80 109 | 110 | 111 | https://masterwifinetworksolution.github.io/tutorial/cara-install-zerotier-di-openwrt/ 112 | 2024-12-28T11:19:17+00:00 113 | 0.80 114 | 115 | 116 | https://masterwifinetworksolution.github.io/tutorial/cara-install-tailscale-di-openwrt/ 117 | 2024-12-28T11:19:17+00:00 118 | 0.80 119 | 120 | 121 | https://masterwifinetworksolution.github.io/pengaturan/setting-firewall-openwrt/ 122 | 2024-12-28T11:19:17+00:00 123 | 0.80 124 | 125 | 126 | https://masterwifinetworksolution.github.io/pengaturan/setting-vlan-openwrt/ 127 | 2024-12-28T11:19:17+00:00 128 | 0.80 129 | 130 | 131 | https://masterwifinetworksolution.github.io/clash%20for%20magisk/konfigurasi-cfm-simaster-meta/ 132 | 2024-12-28T11:19:17+00:00 133 | 0.80 134 | 135 | 136 | https://masterwifinetworksolution.github.io/android/termux-auto-plane-mode/ 137 | 2024-12-28T11:19:17+00:00 138 | 0.80 139 | 140 | 141 | https://masterwifinetworksolution.github.io/emulation/gaming/how-to-install-ps1-emulator-on-pc/ 142 | 2024-12-28T11:19:17+00:00 143 | 0.64 144 | 145 | 146 | https://masterwifinetworksolution.github.io/keamanan/cara-menghilangkan-virus-komputer/ 147 | 2024-12-28T11:19:17+00:00 148 | 0.64 149 | 150 | 151 | https://masterwifinetworksolution.github.io/networking/instalasi-mikrotik-untuk-hotspot-dan-pppoe/ 152 | 2024-12-28T11:19:17+00:00 153 | 0.64 154 | 155 | 156 | https://masterwifinetworksolution.github.io/pengaturan/panduan-tplink-wr840n/ 157 | 2024-12-28T11:19:17+00:00 158 | 0.64 159 | 160 | 161 | https://masterwifinetworksolution.github.io/pengaturan/panduan-penggunaan-tplink-cpe220/ 162 | 2024-12-28T11:19:17+00:00 163 | 0.64 164 | 165 | 166 | https://masterwifinetworksolution.github.io/pengaturan/panduan-penggunaan-powerbeam-m2-400/ 167 | 2024-12-28T11:19:17+00:00 168 | 0.64 169 | 170 | 171 | https://masterwifinetworksolution.github.io/pengaturan/panduan-lengkap-penggunaan-tenda-o3-router-outdoor/ 172 | 2024-12-28T11:19:17+00:00 173 | 0.64 174 | 175 | 176 | https://masterwifinetworksolution.github.io/docs/trojan/ 177 | 2024-12-28T11:19:17+00:00 178 | 0.64 179 | 180 | 181 | https://masterwifinetworksolution.github.io/docs/vmess/ 182 | 2024-12-28T11:19:17+00:00 183 | 0.64 184 | 185 | 186 | https://masterwifinetworksolution.github.io/docs/vless/ 187 | 2024-12-28T11:19:17+00:00 188 | 0.64 189 | 190 | 191 | https://masterwifinetworksolution.github.io/docs/shadowsocks/ 192 | 2024-12-28T11:19:17+00:00 193 | 0.64 194 | 195 | 196 | https://masterwifinetworksolution.github.io/docs/snell/ 197 | 2024-12-28T11:19:17+00:00 198 | 0.64 199 | 200 | 201 | https://masterwifinetworksolution.github.io/docs/http/ 202 | 2024-12-28T11:19:17+00:00 203 | 0.64 204 | 205 | 206 | https://masterwifinetworksolution.github.io/docs/proxy-provider/ 207 | 2024-12-28T11:19:17+00:00 208 | 0.64 209 | 210 | 211 | https://masterwifinetworksolution.github.io/openwrt/x86/ 212 | 2024-12-28T11:19:17+00:00 213 | 0.64 214 | 215 | 216 | https://masterwifinetworksolution.github.io/categories/announcement/ 217 | 2024-12-28T11:19:17+00:00 218 | 0.64 219 | 220 | 221 | https://masterwifinetworksolution.github.io/page/3/ 222 | 2024-12-28T11:19:17+00:00 223 | 0.64 224 | 225 | 226 | https://masterwifinetworksolution.github.io/categories/tutorial/ 227 | 2024-12-28T11:19:17+00:00 228 | 0.64 229 | 230 | 231 | https://masterwifinetworksolution.github.io/categories/pengaturan/ 232 | 2024-12-28T11:19:17+00:00 233 | 0.64 234 | 235 | 236 | https://masterwifinetworksolution.github.io/categories/android/ 237 | 2024-12-28T11:19:17+00:00 238 | 0.64 239 | 240 | 241 | https://masterwifinetworksolution.github.io/categories/keamanan/ 242 | 2024-12-28T11:19:17+00:00 243 | 0.51 244 | 245 | 246 | https://masterwifinetworksolution.github.io/categories/networking/ 247 | 2024-12-28T11:19:17+00:00 248 | 0.51 249 | 250 | 251 | https://masterwifinetworksolution.github.io/categories/clash/ 252 | 2024-12-28T11:19:17+00:00 253 | 0.51 254 | 255 | 256 | https://masterwifinetworksolution.github.io/docs/socks5/ 257 | 2024-12-28T11:19:17+00:00 258 | 0.51 259 | 260 | 261 | https://masterwifinetworksolution.github.io/page/4/ 262 | 2024-12-28T11:19:17+00:00 263 | 0.51 264 | 265 | 266 | 267 | -------------------------------------------------------------------------------- /update.sh: -------------------------------------------------------------------------------- 1 | git add . 2 | git commit -m "pembaruan" 3 | git push origin master --------------------------------------------------------------------------------