diff --git a/assets/css/custom.css b/assets/css/custom.css index 9fbbc62..5af2f9f 100644 --- a/assets/css/custom.css +++ b/assets/css/custom.css @@ -3,21 +3,238 @@ --primary-saturation: 100%; /* Hextra adds 5% in most places */ --primary-lightness: 70%; - font-family: "Roboto"; + font-family: "Roboto Flex"; + --container-max-width: 1536px; } -.sidebar-active-item { - background-color: transparent; +@view-transition { + navigation: auto; +} + +html { + scrollbar-width: thin; + scroll-behavior: smooth; +} + +html[class~="dark"] { + line-height: 1.4; + scrollbar-color: hsla(0, 0%, 100%, .39) #000; +} + +body:is(html[class~="dark"] *) { + background: #000; + color: rgb(255 255 255 / var(--tw-text-opacity)); + /* all text on live has increased letter-spacing. buttons do not, so use tracking-normal when needed. negates the need for tracking-wide on every instance of a heading or copy */ + letter-spacing: 0.025em; +} + +@media (min-width: 768px) { + .nav-container nav { + justify-content: flex-start; + gap: 1.5rem; + max-width: var(--container-max-width); + padding: 0 3rem; + } + .nav-container nav > a { + margin: 0; + } + .nav-container nav > a[href="/"] { + padding-right: 1.5rem; + } + .nav-container + div { + max-width: var(--container-max-width); + padding: 1rem 3rem; + } +} + +.nav-container nav > a { + font-size: 1.125rem; + line-height: 1.5rem; + font-weight: 600; + letter-spacing: .025em; + padding: 0; + position: relative; +} + +.nav-container:is(html[class~="dark"] *) nav > a { + color: hsla(0,0%,100%,.65); +} + +.nav-container:is(html[class~="dark"] *) nav > a.hx-font-medium { + color: #fff; +} + +.nav-container nav > a.hx-font-medium::after { + content: ""; + position: absolute; + bottom: -0.5rem; + left: 50%; + display: block; + clip-path: polygon(0px 100%, 5px calc(100% - 6px), calc(100% - 5px) calc(100% - 6px), 100% 100%); + opacity: 1; + width: 100%; + height: 0.25rem; + background: rgb(255 70 78/var(--tw-bg-opacity)); + animation: nav-underline forwards 300ms; + transform: translateX(-50%) +} + +@keyframes nav-underline { + from { width: 0%; } + to { width: 100%; } +} + +.nav-container nav > a[href="/"] img { + height: 1.5rem; + width: auto; +} + +.nav-container .search-wrapper { + margin-left: auto; +} +@supports ( ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) ) { + .nav-container-blur:is(html[class~="dark"] *) { + background-color: rgb(0 0 0 / 0.9) !important; + box-shadow: none; + } } +/* search styling inline with current website inputs - to be changed to underline (as per the design) if/when the website is updated */ +[type=text]:is(html[class~="dark"] *), +[type=search]:is(html[class~="dark"] *) { + background: #141414; + border: thin solid #2d2727; + border-radius: 0.375rem; +} +[type=text]:is(html[class~="dark"] *):focus, +[type=search]:is(html[class~="dark"] *):focus { + border-color: #fff; + box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5), 0px 1px 6px rgba(0, 0, 0, 0.25), 0 0 0 3px hsla(0, 0%, 100%, 25%), 0 1px 1px 0 rgba(255, 255, 255, 0.12); + transition: background 0.15s ease, border 0.15s ease, box-shadow 0.15s ease, color 0.15s ease; +} +[type=text]:is(html[class~="dark"] *):focus, +[type=search]:is(html[class~="dark"] *):focus-visible { + outline: none; +} + +/* sidebar navigation */ + +.sidebar-container a { + padding-left: 0; +} + +.sidebar-container a:hover, +.sidebar-container:is(html[class~="dark"] *) a:hover { + background: transparent; +} + +.sidebar-active-item, .sidebar-active-item:is(html[class~="dark"] *) { background-color: transparent; } -.hextra-footer { - background-color: transparent; +/* sidebar open nav line */ +.sidebar-container li.open ul::before { + left: -0.5rem; +} + +/* sidebar navigation mobile */ +@media (max-width: 767px) { + .sidebar-container:is(html[class~="dark"] *) { + background: #000; + } +} + +/* sidebar navigation desktop */ +@media (min-width: 768px) { + .sidebar-container > .hextra-scrollbar { + padding-left: 0; + padding-right: 0; + } +} + +/* toc */ +.hextra-toc { + padding: 0; } +/* TODO: Add a class for this upstream */ +.hextra-toc > div > div { + box-shadow: none !important; + background: transparent !important; + border-color: hsla(0, 0%, 100%, 0.2) !important; +} + +/* breadcrumbs */ +/* TODO: Add a class for this upstream */ +main > div:first-child:not(.content) { + margin-bottom: 2rem; +} + +.hextra-footer, .hextra-footer:is(html[class~="dark"] *) { background-color: transparent; } + +.hextra-tabs { + position: relative; +} + +.hextra-tabs::after { + content: ""; + position: absolute; + top: 0; + left: 1px; + right: 1px; + border-top: thin solid hsla(0, 0%, 100%, 0.2); +} + +.hextra-tabs-toggle { + position: relative; + text-transform: uppercase; +} + +.hextra-tabs-toggle[data-state="selected"]::after { + content: ""; + position: absolute; + top: 0; + left: 50%; + z-index: 1; + display: block; + clip-path: polygon(0px 100%, 5px calc(100% - 6px), calc(100% - 5px) calc(100% - 6px), 100% 100%); + opacity: 1; + width: 100%; + height: 0.25rem; + background: rgb(255 70 78/var(--tw-bg-opacity)); + animation: nav-underline forwards 300ms; + transform: translateX(-50%) rotate(180deg); +} + +.card .hextra-tabs { + margin-left: -1.5rem; + margin-right: -1.5rem; +} +.card .hextra-tabs-panel { + padding-left: 1.5rem; + padding-right: 1.5rem; +} + +.card .button { + margin-top: auto; + align-self: start; +} + +/* content */ + +.content :where(h2):not(:where([class~=not-prose],[class~=not-prose] *)) { + border: none; +} + +.content :where(p):not(:where([class~=not-prose],[class~=not-prose] *)):is(html[class~="dark"] *) { + color: rgb(255 255 255 / 0.8); + line-height: 1.4; +} + +hr:is(html[class~="dark"] *) { + border-color: hsla(0, 0%, 100%, 0.2); +} \ No newline at end of file diff --git a/content/_index.md b/content/_index.md index bdcca6a..388e3c3 100644 --- a/content/_index.md +++ b/content/_index.md @@ -3,84 +3,66 @@ layout: index --- -
-{{< hextra/hero-headline >}} - Netduma Support -{{< /hextra/hero-headline >}} +
+

Netduma Knowledge Base

+
Welcome to the Netduma support site. Here you'll find guides for all of our features, along with frequently asked questions and useful links.
-
-{{< hextra/hero-subtitle >}} - Welcome to the Netduma support site. 
Here you'll find guides for all of our features, 
along with frequently asked questions and useful links. -{{< /hextra/hero-subtitle >}} -
- -
-{{< netduma/hero-button text="View Docs" link="docs" >}} -
- -
-{{< hextra/feature-grid class="hx-mt-8">}} - {{< netduma/feature-card - link="/docs/dumaos-4/" - title="DumaOS 4" - subtitle="The latest version of DumaOS, featuring groundbreaking new features like SmartBOOST and Geo-Filter 2.0." - class="dark:hover:hx-bg-neutral-900" - image="/images/dumaos_4_logo.png" - imageClass="max-w-full" - style="background: radial-gradient(ellipse at 50% 80%,rgba(255,70,78,0.15),hsla(0,0%,100%,0));" - >}} - {{< netduma/feature-card - link="/docs/dumaos-3/" - title="DumaOS 3.0" - subtitle="The version of DumaOS which shipped with the Netduma R2 and Nighthawk Pro Gaming routers." - class="dark:hover:hx-bg-neutral-900" - image="/images/dumaos_3_logo.png" - imageClass="max-w-full" - style="background: radial-gradient(ellipse at 50% 80%,rgba(255,70,78,0.15),hsla(0,0%,100%,0));" - >}} - {{< netduma/feature-card - link="/docs/telstra-game-optimiser/" - title="Telstra" - subtitle="Telstra Internet Optimiser brings the power of DumaOS to your Telstra Smart Modem." - class="dark:hover:hx-bg-neutral-900" - image="/images/telstra_logo.png" - imageClass="max-w-full" - style="background: radial-gradient(ellipse at 50% 80%,rgba(89,112,255,0.15),hsla(0,0%,100%,0));" - >}} -{{< /hextra/feature-grid >}} + -
-{{< hextra/feature-grid cols="3">}} - {{< netduma/feature-card - link="/frequently-asked-questions" - title="FAQ" - subtitle="Frequently asked questions about Netduma and DumaOS." - class="dark:hx-bg-neutral-900 dark:hover:hx-bg-neutral-800" +{{< netduma/cards cols="6" class="mt-6">}} + {{< netduma/card + span="2" + title="Netduma R3" + subtitle="The latest router from Netduma, featuring DumaOS 4" + image="/images/R3-Render.png" + imageClass="pt-4 px-4" >}} - {{< netduma/feature-card - link="/firmwares/" - title="Firmwares" - subtitle="Download the latest updates for DumaOS." - class="dark:hx-bg-neutral-900 dark:hover:hx-bg-neutral-800" + {{< netduma/card-links >}} + {{< netduma/card-link title="Firmwares" link="platforms/netduma-r3/firmware" >}} + {{< netduma/card-link title="DumaOS 4 Guides" link="docs/dumaos-4" >}} + {{< netduma/card-link title="DumaOS 4 FAQs" link="frequently-asked-questions/dumaos4" >}} + {{< /netduma/card-links >}} + {{< netduma/button link="platforms/netduma-r3" buttonColor="primary" text="View More" >}} + {{< /netduma/card >}} + {{< netduma/card + span="2" + title="Netduma R2" + subtitle="Frequently Asked Questions about Netduma, DumaOS and networking in general" + image="/images/R2-Render.png" + imageClass="pt-4 px-4" >}} - {{< netduma/feature-card - link="/docs/user-manuals/" - title="User Manuals" - subtitle="User manuals that are provided with DumaOS compatible hardware." - class="dark:hx-bg-neutral-900 dark:hover:hx-bg-neutral-800" + {{< netduma/card-links >}} + {{< netduma/card-link title="Firmwares" link="platforms/netduma-r2/firmware" >}} + {{< netduma/card-link title="DumaOS 3 Guides" link="docs/dumaos-3" >}} + {{< netduma/card-link title="DumaOS 3 FAQs" link="frequently-asked-questions/dumaos3" >}} + {{< /netduma/card-links >}} + {{< netduma/button link="platforms/netduma-r2" buttonColor="primary" text="View More" >}} + {{< /netduma/card >}} + {{< netduma/card + span="2" + title="Other Platforms" + subtitle="Get support for older, or 3rd party platforms" + link="" >}} - -{{< /hextra/feature-grid >}} -
+ {{< netduma/card-links >}} + {{< netduma/card-link title="Netduma R1" link="platforms/netduma-r1" >}} + {{< netduma/card-link title="Netgear Nighthawk" link="platforms/netgear-nighthawk" >}} + {{< netduma/card-link title="Telstra" link="platforms/telstra" >}} + {{< /netduma/card-links >}} + {{< /netduma/card >}} +{{< /netduma/cards >}} -## Further Support +{{< netduma/grid title="DumaOS" align="center" class="mt-16" >}} + {{< netduma/grid-icon link="docs/dumaos-4" title="DumaOS 4" icon="dumaos4" >}} + {{< netduma/grid-icon link="docs/dumaos-3" title="DumaOS 3" icon="dumaos3" >}} + {{< netduma/grid-icon link="docs/telstra-internet-optimiser" title="Telstra" icon="telstra" >}} +{{< /netduma/grid >}} -We are always available via email and via our support forums. Our friendly support team will answer any questions you have about Netduma, DumaOS or networking in general. +{{< netduma/need-help class="mt-16" >}} diff --git a/content/docs/_index.md b/content/docs/_index.md index 1098390..d3e5878 100644 --- a/content/docs/_index.md +++ b/content/docs/_index.md @@ -1,16 +1,65 @@ --- title: Guides weight: 1 +toc: false +breadcrumbs: false +type: netduma-wide --- -This section contains in-depth guides on every DumaOS feature. +{{< netduma/cards class="my-6" cols="6">}} + {{< netduma/card span="2" title="DumaOS 4" subtitle="The latest version of DumaOS, featuring groundbreaking new features like SmartBOOST and Geo-Filter 2.0" image="/images/dumaos4-devicemanager.jpg">}} + {{< netduma/card-links >}} + {{< netduma/card-link title="Accessing DumaOS" link="/docs/dumaos-4/accessing-dumaos/" >}} + {{< netduma/card-link title="Setup Wizard" link="/docs/dumaos-4/setup-wizard/" >}} + {{< /netduma/card-links >}} + {{< netduma/card-links >}} + {{< netduma/card-link icon="device-manager" title="Device Manager" link="/docs/dumaos-4/device-manager" >}} + {{< netduma/card-link icon="smartboost" title="SmartBOOST" link="/docs/dumaos-4/smartboost/" >}} + {{< netduma/card-link icon="geo-filter" title="Geo-Filter" link="/docs/dumaos-4/geo-filter/" >}} + {{< netduma/card-link icon="ping-heatmap" title="Ping Heatmap" link="/docs/dumaos-4/ping-heatmap/" >}} + {{< netduma/card-link icon="adblocker" title="Adblocker" link="/docs/dumaos-4/adblocker/" >}} + {{< netduma/card-link icon="network-activity" title="Network Activity" link="/docs/dumaos-4/network-activity/" >}} + {{< /netduma/card-links >}} + {{< netduma/button link="/docs/dumaos-4" buttonColor="primary" text="View More" >}} + {{< /netduma/card >}} + {{< netduma/card span="2" title="DumaOS 3" subtitle="The version of DumaOS which shipped with the Netduma R2 and NETGEAR Nighthawk Pro Gaming routers." image="/images/dumaos3-devicemanager.jpg" >}} + {{< netduma/card-links >}} + {{< netduma/card-link title="Accessing DumaOS" link="/docs/dumaos-3/accessing-dumaos/" >}} + {{< netduma/card-link title="Maximum Bandwidth Speeds" link="/docs/dumaos-3/maximum-bandwidth-speeds/" >}} + {{< netduma/card-link title="Prioritising Traffic" link="/docs/dumaos-3/prioritising-traffic/" >}} + {{< netduma/card-link title="Using Ping Assist as a Ping Filter" link="/docs/dumaos-3/using-ping-assist-as-a-ping-filter/" >}} + {{< netduma/card-link title="Open NAT" link="/docs/dumaos-3/open-nat/" >}} + {{< /netduma/card-links >}} + {{< netduma/card-links >}} + {{< netduma/card-link icon="device-manager" title="Device Manager" link="/docs/dumaos-3/device-manager" >}} + {{< netduma/card-link icon="smartboost" title="QoS" link="/docs/dumaos-3/qos/" >}} + {{< netduma/card-link icon="geo-filter" title="Geo-Filter" link="/docs/dumaos-3/geo-filter/" >}} + {{< netduma/card-link icon="ping-heatmap" title="Ping Assist" link="/docs/dumaos-3/ping-assist/" >}} + {{< netduma/card-link icon="network-activity" title="Dashboard and Network Monitor" link="/docs/dumaos-3/dashboard/" >}} + {{< netduma/card-link icon="network-activity" title="Hybrid VPN" link="/docs/dumaos-3/hybrid-vpn/" >}} + {{< /netduma/card-links >}} + {{< netduma/button link="/docs/dumaos-3" buttonColor="primary" text="View More" >}} + {{< /netduma/card >}} + {{< netduma/card span="2" title="Telstra Internet Optimiser" subtitle="Using the guides below, you can take full advantage of DumaOS and give yourself the best connection possible for gaming." image="/images/dumaos-telstra.jpg" >}} + {{< netduma/card-links >}} + {{< netduma/card-link icon="device-manager" title="Device Manager" link="/docs/telstra-internet-optimiser/device-manager" >}} + {{< netduma/card-link icon="smartboost" title="Connection Benchmark" link="/docs/telstra-internet-optimiser/connection-benchmark/" >}} + {{< netduma/card-link icon="geo-filter" title="Adblocker" link="/docs/telstra-internet-optimiser/adblocker/" >}} + {{< netduma/card-link icon="geo-filter" title="Geo-Filter" link="/docs/telstra-internet-optimiser/geo-filter/" >}} + {{< netduma/card-link icon="geo-filter" title="Network Monitor" link="/docs/telstra-internet-optimiser/network-monitor/" >}} + {{< netduma/card-link icon="ping-heatmap" title="Ping Heatmap" link="/docs/telstra-internet-optimiser/ping-heatmap/" >}} + {{< netduma/card-link icon="network-activity" title="QoS" link="/docs/telstra-internet-optimiser/QoS/" >}} + {{< netduma/card-link icon="network-activity" title="Traffic Controller" link="/docs/telstra-internet-optimiser/traffic-controller/" >}} + {{< /netduma/card-links >}} + {{< netduma/button link="/docs/telstra-internet-optimiser" buttonColor="primary" text="View More" >}} + {{< /netduma/card >}} + {{< netduma/card span="6" title="Supported Applications" subtitle="See which applications are supported by DumaOS" >}} + {{< netduma/button link="supported-applications" buttonColor="primary" text="View Supported Applications" >}} + {{< /netduma/card >}} +{{< /netduma/cards >}} -Select your DumaOS version to continue. Netduma R3 users should select DumaOS 4. +{{< callout icon="r3" >}} + Netduma R3 users should select DumaOS 4. +{{< /callout >}} -- [DumaOS 4](/docs/dumaos-4/) - -- [DumaOS 3](/docs/dumaos-3/) - -- [Telstra Game Optimiser](/docs/telstra-game-optimiser/) - -- [User Manuals](/docs/user-manuals/) \ No newline at end of file +{{< netduma/need-help class="mt-16" >}} \ No newline at end of file diff --git a/content/docs/dumaos-3/_index.md b/content/docs/dumaos-3/_index.md index 265873f..ea7bdd6 100644 --- a/content/docs/dumaos-3/_index.md +++ b/content/docs/dumaos-3/_index.md @@ -1,29 +1,34 @@ --- title: DumaOS 3 weight: 2 +toc: false --- -The version of DumaOS which shipped with the __Netduma R2__ and __NETGEAR Nighthawk Pro Gaming__ routers. You can find Guides for DumaOS 4 [here](/docs/dumaos-4). - -- [Accessing DumaOS 3](/docs/dumaos-3/accessing-dumaos/) - -- [Device Manager](/docs/dumaos-3/device-manager/) - -- [Maximum Bandwidth Speeds](/docs/dumaos-3/maximum-bandwidth-speeds/) - -- [QoS](/docs/dumaos-3/qos/) - -- [Prioritising Traffic](/docs/dumaos-3/prioritising-traffic/) - -- [Geo-filter](/docs/dumaos-3/geo-filter/) - -- [Ping Assist](/docs/dumaos-3/ping-assist/) - -- [Using Ping Assist as a Ping Filter](/docs/dumaos-3/using-ping-assist-as-a-ping-filter/) - -- [Dashboard and Network Monitor](/docs/dumaos-3/dashboard/) - -- [Open NAT](/docs/dumaos-3/open-nat/) - -- [Hybrid VPN](/docs/dumaos-3/hybrid-vpn/) \ No newline at end of file +The version of DumaOS which shipped with the __Netduma R2__ and __NETGEAR Nighthawk Pro Gaming__ routers. + +{{< callout >}} + You can find Guides for DumaOS 4 [here](/docs/dumaos-4). +{{< /callout >}} + +{{< netduma/cards class="my-6" cols="6">}} + {{< netduma/card span="3" title="Getting Started" subtitle="Get the latest updates for DumaOS 3" >}} + {{< netduma/card-links >}} + {{< netduma/card-link title="Accessing DumaOS" link="/docs/dumaos-3/accessing-dumaos/" >}} + {{< netduma/card-link title="Maximum Bandwidth Speeds" link="/docs/dumaos-3/maximum-bandwidth-speeds/" >}} + {{< netduma/card-link title="Prioritising Traffic" link="/docs/dumaos-3/prioritising-traffic/" >}} + {{< netduma/card-link title="Using Ping Assist as a Ping Filter" link="/docs/dumaos-3/using-ping-assist-as-a-ping-filter/" >}} + {{< netduma/card-link title="Open NAT" link="/docs/dumaos-3/open-nat/" >}} + {{< /netduma/card-links >}} + {{< /netduma/card >}} + {{< netduma/card span="3" title="DumaOS 3 Features" subtitle="Get the latest updates for DumaOS" >}} + {{< netduma/card-links >}} + {{< netduma/card-link icon="device-manager" title="Device Manager" link="/docs/dumaos-3/device-manager" >}} + {{< netduma/card-link icon="smartboost" title="QoS" link="/docs/dumaos-3/qos/" >}} + {{< netduma/card-link icon="geo-filter" title="Geo-Filter" link="/docs/dumaos-3/geo-filter/" >}} + {{< netduma/card-link icon="ping-heatmap" title="Ping Assist" link="/docs/dumaos-3/ping-assist/" >}} + {{< netduma/card-link icon="network-activity" title="Dashboard and Network Monitor" link="/docs/dumaos-3/dashboard/" >}} + {{< netduma/card-link icon="network-activity" title="Hybrid VPN" link="/docs/dumaos-3/hybrid-vpn/" >}} + {{< /netduma/card-links >}} + {{< /netduma/card >}} +{{< /netduma/cards >}} \ No newline at end of file diff --git a/content/docs/dumaos-4/_index.md b/content/docs/dumaos-4/_index.md index 27eb925..d2c58eb 100644 --- a/content/docs/dumaos-4/_index.md +++ b/content/docs/dumaos-4/_index.md @@ -1,23 +1,27 @@ --- title: DumaOS 4 weight: 1 +toc: false --- -The latest version of DumaOS, featuring groundbreaking new features like SmartBOOST and Geo-Filter 2.0. [Get Started](/docs/dumaos-4/accessing-dumaos). - -- [Accessing DumaOS 4](/docs/dumaos-4/accessing-dumaos/) - -- [Setup Wizard](/docs/dumaos-4/setup-wizard/) - -- [Device Manager](/docs/dumaos-4/device-manager/) - -- [SmartBOOST](/docs/dumaos-4/smartboost/) - -- [Geo-filter](/docs/dumaos-4/geo-filter/) - -- [Ping Heatmap](/docs/dumaos-4/ping-heatmap/) - -- [Adblocker](/docs/dumaos-4/adblocker/) - -- [Network Activity](/docs/dumaos-4/network-activity/) \ No newline at end of file +The latest version of DumaOS, featuring groundbreaking new features like SmartBOOST and Geo-Filter 2.0. + +{{< netduma/cards class="my-6" cols="6">}} + {{< netduma/card span="3" title="Getting Started" subtitle="Get the latest updates for DumaOS 4" >}} + {{< netduma/card-links >}} + {{< netduma/card-link title="Accessing DumaOS" link="/docs/dumaos-4/accessing-dumaos/" >}} + {{< netduma/card-link title="Setup Wizard" link="/docs/dumaos-4/setup-wizard/" >}} + {{< /netduma/card-links >}} + {{< /netduma/card >}} + {{< netduma/card span="3" title="DumaOS 4 Features" subtitle="Get the latest updates for DumaOS" >}} + {{< netduma/card-links >}} + {{< netduma/card-link icon="device-manager" title="Device Manager" link="/docs/dumaos-4/device-manager" >}} + {{< netduma/card-link icon="smartboost" title="SmartBOOST" link="/docs/dumaos-4/smartboost/" >}} + {{< netduma/card-link icon="geo-filter" title="Geo-Filter" link="/docs/dumaos-4/geo-filter/" >}} + {{< netduma/card-link icon="ping-heatmap" title="Ping Heatmap" link="/docs/dumaos-4/ping-heatmap/" >}} + {{< netduma/card-link icon="adblocker" title="Adblocker" link="/docs/dumaos-4/adblocker/" >}} + {{< netduma/card-link icon="network-activity" title="Network Activity" link="/docs/dumaos-4/network-activity/" >}} + {{< /netduma/card-links >}} + {{< /netduma/card >}} +{{< /netduma/cards >}} \ No newline at end of file diff --git a/content/docs/supported-applications.md b/content/docs/supported-applications.md new file mode 100644 index 0000000..7fe6c04 --- /dev/null +++ b/content/docs/supported-applications.md @@ -0,0 +1,380 @@ +--- +title: Supported Applications +weight: 5 +aliases: +- /support/solutions/articles/16000167350-work-from-home-applications-supported-by-dumaos +--- + +## Gaming + +### Games supported by Geo-Filter and SmartBOOST + +
+ +
+
+Apex Legends
+BattleBit Remastered
+Call of Duty (Series)
+Dead By Daylight
+Destiny 2
+EA Games (EAFC, Battlefield)
+EFootball
+Escape from Tarkov
+Fortnite
+Forza
+Halo Infinite
+Hi-Rez Games (Smite, Rogue Company, etc.)
+IRacing
+Killer Instinct
+League of Legends
+Marvel Rivals +
+
+Mortal Kombat (Series)
+Overwatch 2
+PUBG: Battlegrounds
+Payday 3
+Rainbow Six: Siege
+Soulcalibur (Series)
+Space Marine 2
+Starcraft II
+Tekken 8
+The Finals
+TrackMania
+Valorant
+Valve Games (CS2, DOTA2, Deadlock)
+War Thunder
+World of Tanks +
+
+ +
+ +### Games supported only by SmartBOOST + +
+ +
+
+ARK: Survival Evolved
+Among Us
+Armagetron
+CoD Mobile
+Crossfire
+Dark and Darker
+Delta Force
+Diablo IV
+Dofus
+Dragon Ball Xenoverse 2
+Fallout 76
+Fiesta Online
+Florensia
+Gears of War 5
+Genshin Impact
+Gran Turismo 7
+Guild Wars
+Half-Life 2 +
+
+Hearthstone
+Helldivers 2
+Krunker.io
+Last Epoch
+MapleStory
+Minecraft
+NBA 2K
+Once Human
+Palworld
+Path of Exile 2
+Quake III Arena
+ROBLOX
+Runescape
+The Division 2/XDefiant
+The First Descendant
+Warcraft 3
+World of Kung Fu
+World of Warcraft +
+
+ +
+ +### Supported Cloud Gaming Protocols + +
+ +
+
+GeForce Now
+PlayStation Cloud Gaming +
+
+PlayStation Remote Play
+Xbox Cloud Gaming +
+
+ +
+ +### Supported Gaming Download Protocols + +
+ +
+
+Battle.net Download
+Call of Duty Content
+Microsoft Flight Simulator Data Streaming +
+
+PlayStation Download
+Steam Download
+Xbox Download +
+
+ +
+ +### Supported Gaming Communication Protocols + +
+ +
+
+Discord
+Kick +
+
+Steam Voice Chat
+Twitch +
+
+ +
+ +## Work From Home + +### Supported Meeting and Call Protocols + +
+ +
+
+BigBlueButton
+BlueJeans
+Google Meet
+Jitsi Meet
+Lifesize +
+
+Slack Huddle
+Teams/Skype Call
+Webex Meeting
+Zoho Meeting
+Zoom +
+
+ +
+ +### Supported VPN Protocols + +
+ +
+
+CiscoVPN
+GlobalProtect VPN
+Hotspot Shield
+IKEv2 +
+
+Mimic VPN
+OpenVPN
+Tor
+WireGuard +
+
+ +
+ +### Supported File Storage Protocols + +
+ +
+
+Apple iCloud
+Dropbox +
+
+Google Workspace
+OneDrive +
+
+ +
+ +### Supported Remote Desktop Protocols + +
+ +
+
+Chrome Remote Desktop
+TeamViewer +
+
+RDP +
+
+ +
+ +## Media + +### Supported Video Streaming Services + +
+ +
+
+7Plus
+9Now
+ABC iView
+Acorn TV
+Amazon Prime Video
+Apple Music
+Apple TV+
+BBC iPlayer
+BritBox
+CNN
+Dailymotion
+Deezer
+DirecTV Stream
+Disney+
+EE TV
+ESPN+
+Fox
+Fubo
+HBO Max
+HayU
+Hulu
+ITVX +
+
+Magenta TV
+NOS
+Netflix
+Now TV
+Optus
+Paramount+
+Philo TV
+Pluto TV
+RTP Portugal
+SBS OnDemand
+SINA Video
+Sky TV
+Stan
+Starz
+TF1
+TIDAL
+TVP
+TVU Player
+VEVO
+Vimeo
+Vix
+YouTube +
+
+ +
+ +### Supported Music Streaming Services + +
+ +
+
+Apple Music
+Deezer
+Last.fm +
+
+Pandora
+Spotify
+TIDAL +
+
+ +
+ +## Web (General) + +### Supported Websites + +
+ +
+
+Amazon
+Apple
+Facebook
+eBay
+GitHub
+Google
+Instagram +
+
+LinkedIn
+Microsoft
+Snapchat
+TikTok
+Wikipedia
+X (Twitter)
+Yahoo +
+
+ +
+ +### Supported Speedtests + +
+ +
+
+Cloudflare Speedtest
+nPerf Speedtest +
+
+Ookla Speedtest
+Waveform Speedtest +
+
+ +
+ +### Supported Download Protocols + +
+ +
+
+Battle.net Download
+BitTorrent
+Call of Duty Data Streaming
+Microsoft Flight Simulator Data Streaming +
+
+PlayStation Download
+Steam Download
+Xbox Download +
+
+ +
+
+ +***Information accurate as of February 2025*** \ No newline at end of file diff --git a/content/docs/supported-applications/_index.md b/content/docs/supported-applications/_index.md deleted file mode 100644 index 755ec62..0000000 --- a/content/docs/supported-applications/_index.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -title: Supported Applications -weight: 5 ---- - -DumaOS is constantly updated to identify and prioritise new applications. You can find a list below of everything we currently support. - -- [Supported Games](/docs/supported-applications/gaming) - -- [Supported Work From Home Applications](/docs/supported-applications/workfromhome) - -- [Supported Media and Streaming Applications](/docs/supported-applications/media) \ No newline at end of file diff --git a/content/docs/supported-applications/gaming.md b/content/docs/supported-applications/gaming.md deleted file mode 100644 index f8570de..0000000 --- a/content/docs/supported-applications/gaming.md +++ /dev/null @@ -1,160 +0,0 @@ ---- -title: Supported Games -weight: 1 ---- - -
- -
- Geo-Filter Supported Games: - -- Apex Legends -- BattleBit Remastered -- Call of Duty (Series) -- Dead By Daylight -- Destiny 2 -- EA Games (EAFC, Battlefield) -- EFootball -- Escape from Tarkov -- Fortnite -- Forza -- Halo Infinite -- Hi-Rez Games (Smite, Rogue Company, etc.) -- IRacing -- Killer Instinct -- League of Legends -- Marvel Rivals -- Mortal Kombat (Series) -- Overwatch 2 -- PUBG: Battlegrounds -- Payday 3 -- Rainbow Six: Siege -- Soulcalibur (Series) -- Space Marine 2 -- Starcraft II -- Tekken 8 -- The Finals -- TrackMania -- Valorant -- Valve Games (CS2, DOTA2, Deadlock) -- War Thunder -- World of Tanks - -
- -
- -
- SmartBOOST Supported Games: - -- ARK: Survival Evolved -- Among Us -- Apex Legends -- Armagetron -- BattleBit Remastered -- Call of Duty (Series) -- CoD Mobile -- Crossfire -- Dark and Darker -- Dead By Daylight -- Delta Force -- Destiny 2 -- Diablo IV -- Dofus -- Dragon Ball Xenoverse 2 -- EA Games (EAFC, Battlefield) -- EFootball -- Escape from Tarkov -- Fallout 76 -- Fiesta Online -- Florensia -- Fortnite -- Forza -- Gears of War 5 -- Genshin Impact -- Gran Turismo 7 -- Guild Wars -- Half-Life 2 -- Halo Infinite -- Hearthstone -- Helldivers 2 -- Hi-Rez Games (Smite, Rogue Company, etc.) -- IRacing -- Killer Instinct -- Krunker.io -- Last Epoch -- League of Legends -- MapleStory -- Marvel Rivals -- Minecraft -- Mortal Kombat (Series) -- NBA 2K -- Once Human -- Overwatch 2 -- PUBG: Battlegrounds -- Palworld -- Path of Exile 2 -- Payday 3 -- Quake III Arena -- ROBLOX -- Rainbow Six: Siege -- Runescape -- Soulcalibur (Series) -- Space Marine 2 -- Starcraft II -- Tekken 8 -- The Division 2/XDefiant -- The Finals -- The First Descendant -- TrackMania -- Valorant -- Valve Games (CS2, DOTA2, Deadlock) -- War Thunder -- Warcraft 3 -- World of Kung Fu -- World of Tanks -- World of Warcraft - -
- -
- -
- Supported Cloud Gaming Protocols: - -- GeForce Now -- PlayStation Cloud Gaming -- PlayStation Remote Play -- Xbox Cloud Gaming - -
- -
- -
- Supported Gaming Download Protocols: - -- Battle.net Download -- Call of Duty Content -- Microsoft Flight Simulator Data Streaming -- PlayStation Download -- Steam Download -- Xbox Download - -
- -
- -
- Supported Gaming Communication Protocols: - -- Discord -- Kick -- Steam Voice Chat -- Twitch - -
- -
- -***Information accurate as of January 2025*** diff --git a/content/docs/supported-applications/media.md b/content/docs/supported-applications/media.md deleted file mode 100644 index 35960a5..0000000 --- a/content/docs/supported-applications/media.md +++ /dev/null @@ -1,83 +0,0 @@ ---- -title: Supported Media and Streaming Applications -weight: 3 ---- - -- 7Plus -- 9Now -- ABC iView -- AVI -- Acorn TV -- Amazon Prime Video -- Apple Music -- Apple TV+ -- BBC iPlayer -- BritBox -- CNN -- Dailymotion -- Deezer -- DirecTV Stream -- Disney+ -- EE TV -- ESPN+ -- Flash -- Fox -- Fubo -- H323 -- HBO Max -- HayU -- Hulu -- ITVX -- Icecast -- Last.fm -- MPEG -- MPEG-TS -- Magenta TV -- NOS -- Netflix -- Now TV -- Ogg -- Optus -- PPS.tv -- PPlive -- Pandora -- Paramount+ -- Philo TV -- Plex -- Pluto TV -- QQLive -- QuickTime -- Quickplay -- RTCP -- RTMP -- RTP Portugal -- RTSP -- RealMedia -- SBS OnDemand -- SHOUTcast -- SIC -- SINA Video -- Sky TV -- Sling Orange -- SopCast -- Spotify -- Stan -- Starz -- TF1 -- TIDAL -- TVP -- TVU Player -- TvAnts -- VEVO -- Vimeo -- Vix -- Webm -- Windows Media Player -- YouTube -- Zattoo -- iQIYI -- iflix - -
- -***Information accurate as of January 2025*** \ No newline at end of file diff --git a/content/docs/supported-applications/workfromhome.md b/content/docs/supported-applications/workfromhome.md deleted file mode 100644 index b4e7f43..0000000 --- a/content/docs/supported-applications/workfromhome.md +++ /dev/null @@ -1,55 +0,0 @@ ---- -title: Supported Work From Home Applications -weight: 2 -aliases: -- /support/solutions/articles/16000167350-work-from-home-applications-supported-by-dumaos ---- - -
- -
- Supported Meeting and Call Protocols: - -- BigBlueButton -- BlueJeans -- Google Meet -- Jitsi Meet -- Lifesize -- Slack Huddle -- Teams/Skype Call -- Webex Meeting -- Zoho Meeting -- Zoom - -
- -
- -
- Supported VPN Protocols: - -- CiscoVPN -- GlobalProtect VPN -- Hotspot Shield -- IKEv2 -- Mimic VPN -- OpenVPN -- Tor -- WireGuard - -
- -
- -
- Supported File Storage Protocols: - -- Apple iCloud -- Google Workspace -- OneDrive - -
- -
- -***Information accurate as of January 2025*** diff --git a/content/docs/telstra-game-optimiser/_index.md b/content/docs/telstra-internet-optimiser/_index.md similarity index 97% rename from content/docs/telstra-game-optimiser/_index.md rename to content/docs/telstra-internet-optimiser/_index.md index ed4dc69..c1a2918 100644 --- a/content/docs/telstra-game-optimiser/_index.md +++ b/content/docs/telstra-internet-optimiser/_index.md @@ -1,24 +1,24 @@ ---- -weight: 3 ---- - -# Welcome to Telstra Internet Optimiser - -Thank you for choosing Game Optimiser! - -Using the guides below, you can take full advantage of DumaOS and give yourself the best connection possible for gaming. - -Optimal Settings Guides are available for the following features: - -- [Geo-Filter](/docs/telstra-game-optimiser/geo-filter/) -- [Ping Heatmap](/docs/telstra-game-optimiser/ping-heatmap/) -- [QoS](/docs/telstra-game-optimiser/qos/) -- [Connection Benchmark](/docs/telstra-game-optimiser/connection-benchmark/) -- [Adblocker](/docs/telstra-game-optimiser/adblocker/) -- [Device Manager](/docs/telstra-game-optimiser/device-manager/) -- [Network Monitor](/docs/telstra-game-optimiser/network-monitor/) -- [Traffic Controller](/docs/telstra-game-optimiser/traffic-controller/) - -You may also want to take a look at the [Official Game Optimiser User Guide](https://www.telstra.com.au/content/dam/tcom/personal/help/pdf/telstra-game-optimiser-user-guide.pdf) - -If you have any problems or questions that can't be solved here, please [post on our friendly support forum](https://forum.netduma.com/forum/136-telstra-game-optimiser-support/). +--- +weight: 3 +--- + +# Welcome to Telstra Internet Optimiser + +Thank you for choosing Game Optimiser! + +Using the guides below, you can take full advantage of DumaOS and give yourself the best connection possible for gaming. + +Optimal Settings Guides are available for the following features: + +- [Geo-Filter](/docs/telstra-game-optimiser/geo-filter/) +- [Ping Heatmap](/docs/telstra-game-optimiser/ping-heatmap/) +- [QoS](/docs/telstra-game-optimiser/qos/) +- [Connection Benchmark](/docs/telstra-game-optimiser/connection-benchmark/) +- [Adblocker](/docs/telstra-game-optimiser/adblocker/) +- [Device Manager](/docs/telstra-game-optimiser/device-manager/) +- [Network Monitor](/docs/telstra-game-optimiser/network-monitor/) +- [Traffic Controller](/docs/telstra-game-optimiser/traffic-controller/) + +You may also want to take a look at the [Official Game Optimiser User Guide](https://www.telstra.com.au/content/dam/tcom/personal/help/pdf/telstra-game-optimiser-user-guide.pdf) + +If you have any problems or questions that can't be solved here, please [post on our friendly support forum](https://forum.netduma.com/forum/136-telstra-game-optimiser-support/). diff --git a/content/docs/telstra-game-optimiser/adblocker.md b/content/docs/telstra-internet-optimiser/adblocker.md similarity index 97% rename from content/docs/telstra-game-optimiser/adblocker.md rename to content/docs/telstra-internet-optimiser/adblocker.md index d0b1501..f665873 100644 --- a/content/docs/telstra-game-optimiser/adblocker.md +++ b/content/docs/telstra-internet-optimiser/adblocker.md @@ -1,19 +1,19 @@ ---- -title: Adblocker ---- - -Adblocker will block Ads, Tracking and Malware on all devices on your network. You can select which devices are filtered and which are not. You can also customize the blacklists to block specific websites. - -By default, Adblocker will block most online advertising and telemetry domains with no extra steps needed. - -## Adblock Bubble Chart - -A) Click Enable Adblocker to get started. Blocked adverts will appear as bubbles in real-time. Click a bubble to see the domains within. - -B) Click Pause to temporarily disable Adblocker per device, or disable Adblocker on a device entirely. - -## Creating Lists - -A) If the website you want to access is blocked, add the website domain to a Whitelist. - -B) Find more advert lists online and add their URL to a Blacklist to improve blocking, or manually add your own domains to block. +--- +title: Adblocker +--- + +Adblocker will block Ads, Tracking and Malware on all devices on your network. You can select which devices are filtered and which are not. You can also customize the blacklists to block specific websites. + +By default, Adblocker will block most online advertising and telemetry domains with no extra steps needed. + +## Adblock Bubble Chart + +A) Click Enable Adblocker to get started. Blocked adverts will appear as bubbles in real-time. Click a bubble to see the domains within. + +B) Click Pause to temporarily disable Adblocker per device, or disable Adblocker on a device entirely. + +## Creating Lists + +A) If the website you want to access is blocked, add the website domain to a Whitelist. + +B) Find more advert lists online and add their URL to a Blacklist to improve blocking, or manually add your own domains to block. diff --git a/content/docs/telstra-game-optimiser/connection-benchmark.md b/content/docs/telstra-internet-optimiser/connection-benchmark.md similarity index 97% rename from content/docs/telstra-game-optimiser/connection-benchmark.md rename to content/docs/telstra-internet-optimiser/connection-benchmark.md index e6576f8..6bb3e84 100644 --- a/content/docs/telstra-game-optimiser/connection-benchmark.md +++ b/content/docs/telstra-internet-optimiser/connection-benchmark.md @@ -1,26 +1,26 @@ ---- -weight: 3 -title: Connection Benchmark ---- - -## Test Network Performance - -Connection Benchmark runs a full connection test from your Modem, checking throughput (speeds), ping quality and performance under congestion (bloat). - -You can Schedule Tests and store them in Test History to see how your network is performing over time. - -## Connection Test - -A) Click Run Test. Each test will run in a set order and provide real-time results until the test is complete. - -B) After running a test, your results will be stored in Test History and graded from A+ to D. - -![b1443d7cfbb42d63526b3a254607b5c89256c750.png](connection-benchmark/b1443d7cfbb42d63526b3a254607b5c89256c750.png) - -## Scheduling Tests - -A) Click the Schedule button in the submenu to make a new test. - -B) Input the time / date / month for the test to take place, or set it to repeat. - -![f0c002b8f8752ba0ac4fdc063186099ac5c94f1b.png](connection-benchmark/f0c002b8f8752ba0ac4fdc063186099ac5c94f1b.png) +--- +weight: 3 +title: Connection Benchmark +--- + +## Test Network Performance + +Connection Benchmark runs a full connection test from your Modem, checking throughput (speeds), ping quality and performance under congestion (bloat). + +You can Schedule Tests and store them in Test History to see how your network is performing over time. + +## Connection Test + +A) Click Run Test. Each test will run in a set order and provide real-time results until the test is complete. + +B) After running a test, your results will be stored in Test History and graded from A+ to D. + +![b1443d7cfbb42d63526b3a254607b5c89256c750.png](connection-benchmark/b1443d7cfbb42d63526b3a254607b5c89256c750.png) + +## Scheduling Tests + +A) Click the Schedule button in the submenu to make a new test. + +B) Input the time / date / month for the test to take place, or set it to repeat. + +![f0c002b8f8752ba0ac4fdc063186099ac5c94f1b.png](connection-benchmark/f0c002b8f8752ba0ac4fdc063186099ac5c94f1b.png) diff --git a/content/docs/telstra-game-optimiser/connection-benchmark/b1443d7cfbb42d63526b3a254607b5c89256c750.png b/content/docs/telstra-internet-optimiser/connection-benchmark/b1443d7cfbb42d63526b3a254607b5c89256c750.png similarity index 100% rename from content/docs/telstra-game-optimiser/connection-benchmark/b1443d7cfbb42d63526b3a254607b5c89256c750.png rename to content/docs/telstra-internet-optimiser/connection-benchmark/b1443d7cfbb42d63526b3a254607b5c89256c750.png diff --git a/content/docs/telstra-game-optimiser/connection-benchmark/f0c002b8f8752ba0ac4fdc063186099ac5c94f1b.png b/content/docs/telstra-internet-optimiser/connection-benchmark/f0c002b8f8752ba0ac4fdc063186099ac5c94f1b.png similarity index 100% rename from content/docs/telstra-game-optimiser/connection-benchmark/f0c002b8f8752ba0ac4fdc063186099ac5c94f1b.png rename to content/docs/telstra-internet-optimiser/connection-benchmark/f0c002b8f8752ba0ac4fdc063186099ac5c94f1b.png diff --git a/content/docs/telstra-game-optimiser/device-manager.md b/content/docs/telstra-internet-optimiser/device-manager.md similarity index 97% rename from content/docs/telstra-game-optimiser/device-manager.md rename to content/docs/telstra-internet-optimiser/device-manager.md index de043bd..974f1ff 100644 --- a/content/docs/telstra-game-optimiser/device-manager.md +++ b/content/docs/telstra-internet-optimiser/device-manager.md @@ -1,24 +1,24 @@ ---- -weight: 2 -title: Device Manager ---- - -## Network Map - -The Network Map displays your connected devices, how they are connected and which devices are currently offline in a simple tree. - -Alternatively, enable Table Mode to view your network in more detail. This can be found in the Network Map submenu. - -Click on a device to access its settings. - -![6cb3f8100cefed1bd074287d02923e808d1fee05.png](device-manager/6cb3f8100cefed1bd074287d02923e808d1fee05.png) - -## Device Settings - -A) Rename the device by typing a new name into the Name text box. -B) Select which type of device it is using the Device Type drop-down menu. -C) Click Save to save your changes. -D) Click Block to prevent an unwanted device from accessing your network. -E) Click Delete to remove an offline device from your Device Tree. - -![14bf411144aec7b4b101e27c3f3fa56cbc170f92.png](device-manager/14bf411144aec7b4b101e27c3f3fa56cbc170f92.png) +--- +weight: 2 +title: Device Manager +--- + +## Network Map + +The Network Map displays your connected devices, how they are connected and which devices are currently offline in a simple tree. + +Alternatively, enable Table Mode to view your network in more detail. This can be found in the Network Map submenu. + +Click on a device to access its settings. + +![6cb3f8100cefed1bd074287d02923e808d1fee05.png](device-manager/6cb3f8100cefed1bd074287d02923e808d1fee05.png) + +## Device Settings + +A) Rename the device by typing a new name into the Name text box. +B) Select which type of device it is using the Device Type drop-down menu. +C) Click Save to save your changes. +D) Click Block to prevent an unwanted device from accessing your network. +E) Click Delete to remove an offline device from your Device Tree. + +![14bf411144aec7b4b101e27c3f3fa56cbc170f92.png](device-manager/14bf411144aec7b4b101e27c3f3fa56cbc170f92.png) diff --git a/content/docs/telstra-game-optimiser/device-manager/14bf411144aec7b4b101e27c3f3fa56cbc170f92.png b/content/docs/telstra-internet-optimiser/device-manager/14bf411144aec7b4b101e27c3f3fa56cbc170f92.png similarity index 100% rename from content/docs/telstra-game-optimiser/device-manager/14bf411144aec7b4b101e27c3f3fa56cbc170f92.png rename to content/docs/telstra-internet-optimiser/device-manager/14bf411144aec7b4b101e27c3f3fa56cbc170f92.png diff --git a/content/docs/telstra-game-optimiser/device-manager/6cb3f8100cefed1bd074287d02923e808d1fee05.png b/content/docs/telstra-internet-optimiser/device-manager/6cb3f8100cefed1bd074287d02923e808d1fee05.png similarity index 100% rename from content/docs/telstra-game-optimiser/device-manager/6cb3f8100cefed1bd074287d02923e808d1fee05.png rename to content/docs/telstra-internet-optimiser/device-manager/6cb3f8100cefed1bd074287d02923e808d1fee05.png diff --git a/content/docs/telstra-game-optimiser/geo-filter.md b/content/docs/telstra-internet-optimiser/geo-filter.md similarity index 98% rename from content/docs/telstra-game-optimiser/geo-filter.md rename to content/docs/telstra-internet-optimiser/geo-filter.md index 165f74f..d11327f 100644 --- a/content/docs/telstra-game-optimiser/geo-filter.md +++ b/content/docs/telstra-internet-optimiser/geo-filter.md @@ -1,88 +1,88 @@ ---- -title: Geo-Filter ---- - -Lag in online games is usually caused by the distance from you to the host or server of your game. Geo-Filter allows you to specify which areas of the world you wish to connect to, meaning you can stop connections to laggy hosts before they happen. - -The effect on your game should be improved response time and fairer gameplay. - -## Getting Started - -Turn off your game if it's currently running. It is not always essential to do this, but for a game like Call Of Duty or Apex Legends, it is vital you make your Geo-Filter changes before booting up the game. - -Click Add Device and select your device. If your device is not listed, make sure it is connected to the Smart Modem. Select the game you will be playing. Geo-Filter will tell you whether Filtering Mode is suggested for your chosen game. - -![1ce48bb6eafba09bdcb3a3b08082bf8cd37a3363.png](geo-filter/1ce48bb6eafba09bdcb3a3b08082bf8cd37a3363.png) - -![b562716a3c012f1a8778808b5db291a15fd95968.png](geo-filter/b562716a3c012f1a8778808b5db291a15fd95968.png) - -![b51939c2e18279b1ab9d2d067fec31ac244e46b1.png](geo-filter/b51939c2e18279b1ab9d2d067fec31ac244e46b1.png) - -The reason we have two modes is that almost all console games and some PC games benefit from Filtering because you cannot choose the server within the game. But this is not true for every game, e.g. League of Legends, CS:GO, Battlefield etc, where you can choose the server. So for these games you just want Spectating Mode. - -## Set Your Home - -A) Click on the Home Pin icon. - -B) Click on where you are located on the map. - -C) The radius blocks all hosts outside its range. Set the size using the Distance slider. - -![7af1f90052fa69c5e34f329b2efc53983971f95a.png](geo-filter/7af1f90052fa69c5e34f329b2efc53983971f95a.png) - -## Polygon Mode - -A) Alternatively, you can draw filter shapes on the map by enabling Polygon Mode. - -B) Click the Pencil icon to draw shapes - -C) Click the Delete icon to remove shapes. - -![cb2c429583531325112c993dee78562d60e0b487.png](geo-filter/cb2c429583531325112c993dee78562d60e0b487.png) - - -*Start Gaming* - -Blocked connections outside of your radius will appear as warning triangles. Take a look at the Geo-Filter legend in the top right hand corner of the Geo-Filter to confirm what icons mean. - -## Ping Graph - -Ping shows the connection quality (latency) from you to the connection you have selected on the map. This is measured in milliseconds. - -With Auto Ping Host enabled in the Geo-filter submenu, you can automatically ping your game's host and unlock advanced connection statistics like Tickrate. - -![05fa70f410806f3575435cd8324d00c1a39aa017.png](geo-filter/05fa70f410806f3575435cd8324d00c1a39aa017.png) - -A ping of <50ms is considered to be good for gaming online. - -![04757e40c693ced31393f6642fe21e4039cc3e9b.png](geo-filter/04757e40c693ced31393f6642fe21e4039cc3e9b.png) - -## Allow and Deny - -### How to Deny a bad connection* - -If you have Auto Ping Host enabled, then the host of the game will be automatically pinged. - -If you have Auto-Ping disabled, click on the icon you wish to deny on your Geo-Filter Map. The host is usually shown as the largest icon on your Geo-Filter Map. (You can toggle Auto Ping Host on/off on the Geo-Filter Map's advanced options - click on the icon with the three horizontal lines in the top left corner of the panel to access this) - -In the Ping Panel below the Geo-Filter Map, name the connection and click on Deny. The connection will then be added to your Allow and Deny panel as denied - -The connection will now be blocked whenever you next try to connect to it - -![4643af2b38201519493f4278bad8cb12f1e534e2.png](geo-filter/4643af2b38201519493f4278bad8cb12f1e534e2.png) - -### How to Allow a good connection / friend - -To whitelist a friend or any other connection outside of your usual filter range, set your Filter to Spectating Mode in the top Device panel - -Then connect to the person or server you want to whitelist. For example, invite your friend into your game lobby or party chat - -The connection should then appear on your Geo-Filter Map. Click on the icon to load a ping graph for this connection. You will need to disable Auto Ping Host to be able to do this (You can toggle Auto Ping Host on/off on the Geo-Filter Map's advanced options - click on the icon with the three horizontal lines in the top left corner of the panel to access this) - -In the Ping Panel below the Geo-Filter Map, name the connection and click on Allow. The connection will then be added to your Allow and Deny panel as Allowed - -![d20f77eb74ef26918a5e28b2565b78aa870f4327.png](geo-filter/d20f77eb74ef26918a5e28b2565b78aa870f4327.png) - -Set your Filter back to Filtering Mode in the top Device Panel - -You will now always be able to connect to this allowed connection, even if they are outside of your filtering range +--- +title: Geo-Filter +--- + +Lag in online games is usually caused by the distance from you to the host or server of your game. Geo-Filter allows you to specify which areas of the world you wish to connect to, meaning you can stop connections to laggy hosts before they happen. + +The effect on your game should be improved response time and fairer gameplay. + +## Getting Started + +Turn off your game if it's currently running. It is not always essential to do this, but for a game like Call Of Duty or Apex Legends, it is vital you make your Geo-Filter changes before booting up the game. + +Click Add Device and select your device. If your device is not listed, make sure it is connected to the Smart Modem. Select the game you will be playing. Geo-Filter will tell you whether Filtering Mode is suggested for your chosen game. + +![1ce48bb6eafba09bdcb3a3b08082bf8cd37a3363.png](geo-filter/1ce48bb6eafba09bdcb3a3b08082bf8cd37a3363.png) + +![b562716a3c012f1a8778808b5db291a15fd95968.png](geo-filter/b562716a3c012f1a8778808b5db291a15fd95968.png) + +![b51939c2e18279b1ab9d2d067fec31ac244e46b1.png](geo-filter/b51939c2e18279b1ab9d2d067fec31ac244e46b1.png) + +The reason we have two modes is that almost all console games and some PC games benefit from Filtering because you cannot choose the server within the game. But this is not true for every game, e.g. League of Legends, CS:GO, Battlefield etc, where you can choose the server. So for these games you just want Spectating Mode. + +## Set Your Home + +A) Click on the Home Pin icon. + +B) Click on where you are located on the map. + +C) The radius blocks all hosts outside its range. Set the size using the Distance slider. + +![7af1f90052fa69c5e34f329b2efc53983971f95a.png](geo-filter/7af1f90052fa69c5e34f329b2efc53983971f95a.png) + +## Polygon Mode + +A) Alternatively, you can draw filter shapes on the map by enabling Polygon Mode. + +B) Click the Pencil icon to draw shapes + +C) Click the Delete icon to remove shapes. + +![cb2c429583531325112c993dee78562d60e0b487.png](geo-filter/cb2c429583531325112c993dee78562d60e0b487.png) + + +*Start Gaming* + +Blocked connections outside of your radius will appear as warning triangles. Take a look at the Geo-Filter legend in the top right hand corner of the Geo-Filter to confirm what icons mean. + +## Ping Graph + +Ping shows the connection quality (latency) from you to the connection you have selected on the map. This is measured in milliseconds. + +With Auto Ping Host enabled in the Geo-filter submenu, you can automatically ping your game's host and unlock advanced connection statistics like Tickrate. + +![05fa70f410806f3575435cd8324d00c1a39aa017.png](geo-filter/05fa70f410806f3575435cd8324d00c1a39aa017.png) + +A ping of <50ms is considered to be good for gaming online. + +![04757e40c693ced31393f6642fe21e4039cc3e9b.png](geo-filter/04757e40c693ced31393f6642fe21e4039cc3e9b.png) + +## Allow and Deny + +### How to Deny a bad connection* + +If you have Auto Ping Host enabled, then the host of the game will be automatically pinged. + +If you have Auto-Ping disabled, click on the icon you wish to deny on your Geo-Filter Map. The host is usually shown as the largest icon on your Geo-Filter Map. (You can toggle Auto Ping Host on/off on the Geo-Filter Map's advanced options - click on the icon with the three horizontal lines in the top left corner of the panel to access this) + +In the Ping Panel below the Geo-Filter Map, name the connection and click on Deny. The connection will then be added to your Allow and Deny panel as denied + +The connection will now be blocked whenever you next try to connect to it + +![4643af2b38201519493f4278bad8cb12f1e534e2.png](geo-filter/4643af2b38201519493f4278bad8cb12f1e534e2.png) + +### How to Allow a good connection / friend + +To whitelist a friend or any other connection outside of your usual filter range, set your Filter to Spectating Mode in the top Device panel + +Then connect to the person or server you want to whitelist. For example, invite your friend into your game lobby or party chat + +The connection should then appear on your Geo-Filter Map. Click on the icon to load a ping graph for this connection. You will need to disable Auto Ping Host to be able to do this (You can toggle Auto Ping Host on/off on the Geo-Filter Map's advanced options - click on the icon with the three horizontal lines in the top left corner of the panel to access this) + +In the Ping Panel below the Geo-Filter Map, name the connection and click on Allow. The connection will then be added to your Allow and Deny panel as Allowed + +![d20f77eb74ef26918a5e28b2565b78aa870f4327.png](geo-filter/d20f77eb74ef26918a5e28b2565b78aa870f4327.png) + +Set your Filter back to Filtering Mode in the top Device Panel + +You will now always be able to connect to this allowed connection, even if they are outside of your filtering range diff --git a/content/docs/telstra-game-optimiser/geo-filter/04757e40c693ced31393f6642fe21e4039cc3e9b.png b/content/docs/telstra-internet-optimiser/geo-filter/04757e40c693ced31393f6642fe21e4039cc3e9b.png similarity index 100% rename from content/docs/telstra-game-optimiser/geo-filter/04757e40c693ced31393f6642fe21e4039cc3e9b.png rename to content/docs/telstra-internet-optimiser/geo-filter/04757e40c693ced31393f6642fe21e4039cc3e9b.png diff --git a/content/docs/telstra-game-optimiser/geo-filter/05fa70f410806f3575435cd8324d00c1a39aa017.png b/content/docs/telstra-internet-optimiser/geo-filter/05fa70f410806f3575435cd8324d00c1a39aa017.png similarity index 100% rename from content/docs/telstra-game-optimiser/geo-filter/05fa70f410806f3575435cd8324d00c1a39aa017.png rename to content/docs/telstra-internet-optimiser/geo-filter/05fa70f410806f3575435cd8324d00c1a39aa017.png diff --git a/content/docs/telstra-game-optimiser/geo-filter/1ce48bb6eafba09bdcb3a3b08082bf8cd37a3363.png b/content/docs/telstra-internet-optimiser/geo-filter/1ce48bb6eafba09bdcb3a3b08082bf8cd37a3363.png similarity index 100% rename from content/docs/telstra-game-optimiser/geo-filter/1ce48bb6eafba09bdcb3a3b08082bf8cd37a3363.png rename to content/docs/telstra-internet-optimiser/geo-filter/1ce48bb6eafba09bdcb3a3b08082bf8cd37a3363.png diff --git a/content/docs/telstra-game-optimiser/geo-filter/4643af2b38201519493f4278bad8cb12f1e534e2.png b/content/docs/telstra-internet-optimiser/geo-filter/4643af2b38201519493f4278bad8cb12f1e534e2.png similarity index 100% rename from content/docs/telstra-game-optimiser/geo-filter/4643af2b38201519493f4278bad8cb12f1e534e2.png rename to content/docs/telstra-internet-optimiser/geo-filter/4643af2b38201519493f4278bad8cb12f1e534e2.png diff --git a/content/docs/telstra-game-optimiser/geo-filter/7af1f90052fa69c5e34f329b2efc53983971f95a.png b/content/docs/telstra-internet-optimiser/geo-filter/7af1f90052fa69c5e34f329b2efc53983971f95a.png similarity index 100% rename from content/docs/telstra-game-optimiser/geo-filter/7af1f90052fa69c5e34f329b2efc53983971f95a.png rename to content/docs/telstra-internet-optimiser/geo-filter/7af1f90052fa69c5e34f329b2efc53983971f95a.png diff --git a/content/docs/telstra-game-optimiser/geo-filter/b51939c2e18279b1ab9d2d067fec31ac244e46b1.png b/content/docs/telstra-internet-optimiser/geo-filter/b51939c2e18279b1ab9d2d067fec31ac244e46b1.png similarity index 100% rename from content/docs/telstra-game-optimiser/geo-filter/b51939c2e18279b1ab9d2d067fec31ac244e46b1.png rename to content/docs/telstra-internet-optimiser/geo-filter/b51939c2e18279b1ab9d2d067fec31ac244e46b1.png diff --git a/content/docs/telstra-game-optimiser/geo-filter/b562716a3c012f1a8778808b5db291a15fd95968.png b/content/docs/telstra-internet-optimiser/geo-filter/b562716a3c012f1a8778808b5db291a15fd95968.png similarity index 100% rename from content/docs/telstra-game-optimiser/geo-filter/b562716a3c012f1a8778808b5db291a15fd95968.png rename to content/docs/telstra-internet-optimiser/geo-filter/b562716a3c012f1a8778808b5db291a15fd95968.png diff --git a/content/docs/telstra-game-optimiser/geo-filter/cb2c429583531325112c993dee78562d60e0b487.png b/content/docs/telstra-internet-optimiser/geo-filter/cb2c429583531325112c993dee78562d60e0b487.png similarity index 100% rename from content/docs/telstra-game-optimiser/geo-filter/cb2c429583531325112c993dee78562d60e0b487.png rename to content/docs/telstra-internet-optimiser/geo-filter/cb2c429583531325112c993dee78562d60e0b487.png diff --git a/content/docs/telstra-game-optimiser/geo-filter/d20f77eb74ef26918a5e28b2565b78aa870f4327.png b/content/docs/telstra-internet-optimiser/geo-filter/d20f77eb74ef26918a5e28b2565b78aa870f4327.png similarity index 100% rename from content/docs/telstra-game-optimiser/geo-filter/d20f77eb74ef26918a5e28b2565b78aa870f4327.png rename to content/docs/telstra-internet-optimiser/geo-filter/d20f77eb74ef26918a5e28b2565b78aa870f4327.png diff --git a/content/docs/telstra-game-optimiser/network-monitor.md b/content/docs/telstra-internet-optimiser/network-monitor.md similarity index 97% rename from content/docs/telstra-game-optimiser/network-monitor.md rename to content/docs/telstra-internet-optimiser/network-monitor.md index dd174ab..db5dd06 100644 --- a/content/docs/telstra-game-optimiser/network-monitor.md +++ b/content/docs/telstra-internet-optimiser/network-monitor.md @@ -1,23 +1,23 @@ ---- -title: Network Monitor ---- - -## Analyse Network Usage - -The Network Monitor helps you to identify who, or what, is using your network thanks to enterprise level Deep Packet Inspection (DPI). - -You can then use this information to apply the best QoS settings. - -## Network Snapshot - -Network Snapshot shows the bandwidth being used by all of your devices, and is measured in megabits per second (Mbps). - -Clicking on a bar will open the Category Breakdown. Clicking on a segment will open the Application Breakdown. - -![6df63d5270ba16ca687f46cfd0e216b439b985a7.png](network-monitor/6df63d5270ba16ca687f46cfd0e216b439b985a7.png) - -## Network Overview - -The Network Overview shows your network’s current, total bandwidth usage. This graph is measured in megabits per second (Mbps). - -![3812a35c1baad4d9803227b3c6c0bd13423e7a91.png](network-monitor/3812a35c1baad4d9803227b3c6c0bd13423e7a91.png) +--- +title: Network Monitor +--- + +## Analyse Network Usage + +The Network Monitor helps you to identify who, or what, is using your network thanks to enterprise level Deep Packet Inspection (DPI). + +You can then use this information to apply the best QoS settings. + +## Network Snapshot + +Network Snapshot shows the bandwidth being used by all of your devices, and is measured in megabits per second (Mbps). + +Clicking on a bar will open the Category Breakdown. Clicking on a segment will open the Application Breakdown. + +![6df63d5270ba16ca687f46cfd0e216b439b985a7.png](network-monitor/6df63d5270ba16ca687f46cfd0e216b439b985a7.png) + +## Network Overview + +The Network Overview shows your network’s current, total bandwidth usage. This graph is measured in megabits per second (Mbps). + +![3812a35c1baad4d9803227b3c6c0bd13423e7a91.png](network-monitor/3812a35c1baad4d9803227b3c6c0bd13423e7a91.png) diff --git a/content/docs/telstra-game-optimiser/network-monitor/3812a35c1baad4d9803227b3c6c0bd13423e7a91.png b/content/docs/telstra-internet-optimiser/network-monitor/3812a35c1baad4d9803227b3c6c0bd13423e7a91.png similarity index 100% rename from content/docs/telstra-game-optimiser/network-monitor/3812a35c1baad4d9803227b3c6c0bd13423e7a91.png rename to content/docs/telstra-internet-optimiser/network-monitor/3812a35c1baad4d9803227b3c6c0bd13423e7a91.png diff --git a/content/docs/telstra-game-optimiser/network-monitor/6df63d5270ba16ca687f46cfd0e216b439b985a7.png b/content/docs/telstra-internet-optimiser/network-monitor/6df63d5270ba16ca687f46cfd0e216b439b985a7.png similarity index 100% rename from content/docs/telstra-game-optimiser/network-monitor/6df63d5270ba16ca687f46cfd0e216b439b985a7.png rename to content/docs/telstra-internet-optimiser/network-monitor/6df63d5270ba16ca687f46cfd0e216b439b985a7.png diff --git a/content/docs/telstra-game-optimiser/ping-heatmap.md b/content/docs/telstra-internet-optimiser/ping-heatmap.md similarity index 97% rename from content/docs/telstra-game-optimiser/ping-heatmap.md rename to content/docs/telstra-internet-optimiser/ping-heatmap.md index efb7b95..99bddd7 100644 --- a/content/docs/telstra-game-optimiser/ping-heatmap.md +++ b/content/docs/telstra-internet-optimiser/ping-heatmap.md @@ -1,27 +1,27 @@ ---- -title: Ping Heatmap ---- - -## Monitor Server Quality - -Ping Heatmap pings your favourite game’s servers, displaying your connection quality to each server on a world map. - -You can build a Ping History for your favourite servers to monitor the quality of the hosts you play on over time. - -![11f943bca669a1542824d149f3c36da1ed66e3fe.png](ping-heatmap/11f943bca669a1542824d149f3c36da1ed66e3fe.png) - -## Ping Heatmap - -A) Select a game using the Target drop-down. - -B) The map will display your ping to all servers for that game. New Games will be added to Ping Heatmap regularly with cloud updates. - -C) After selecting a game, click the icon to schedule pings for that target. - -![061ad3c38f83b838188cea6140b4a22a6fa0048e.png](ping-heatmap/061ad3c38f83b838188cea6140b4a22a6fa0048e.png) - -## Ping History - -A) Click on a server on the map to open the Ping History feature, which tracks ping data over time for any server you choose. - -B) Click Add To List to make your own ping target. You can ping all added servers at the same time using the Target selector. +--- +title: Ping Heatmap +--- + +## Monitor Server Quality + +Ping Heatmap pings your favourite game’s servers, displaying your connection quality to each server on a world map. + +You can build a Ping History for your favourite servers to monitor the quality of the hosts you play on over time. + +![11f943bca669a1542824d149f3c36da1ed66e3fe.png](ping-heatmap/11f943bca669a1542824d149f3c36da1ed66e3fe.png) + +## Ping Heatmap + +A) Select a game using the Target drop-down. + +B) The map will display your ping to all servers for that game. New Games will be added to Ping Heatmap regularly with cloud updates. + +C) After selecting a game, click the icon to schedule pings for that target. + +![061ad3c38f83b838188cea6140b4a22a6fa0048e.png](ping-heatmap/061ad3c38f83b838188cea6140b4a22a6fa0048e.png) + +## Ping History + +A) Click on a server on the map to open the Ping History feature, which tracks ping data over time for any server you choose. + +B) Click Add To List to make your own ping target. You can ping all added servers at the same time using the Target selector. diff --git a/content/docs/telstra-game-optimiser/ping-heatmap/061ad3c38f83b838188cea6140b4a22a6fa0048e.png b/content/docs/telstra-internet-optimiser/ping-heatmap/061ad3c38f83b838188cea6140b4a22a6fa0048e.png similarity index 100% rename from content/docs/telstra-game-optimiser/ping-heatmap/061ad3c38f83b838188cea6140b4a22a6fa0048e.png rename to content/docs/telstra-internet-optimiser/ping-heatmap/061ad3c38f83b838188cea6140b4a22a6fa0048e.png diff --git a/content/docs/telstra-game-optimiser/ping-heatmap/11f943bca669a1542824d149f3c36da1ed66e3fe.png b/content/docs/telstra-internet-optimiser/ping-heatmap/11f943bca669a1542824d149f3c36da1ed66e3fe.png similarity index 100% rename from content/docs/telstra-game-optimiser/ping-heatmap/11f943bca669a1542824d149f3c36da1ed66e3fe.png rename to content/docs/telstra-internet-optimiser/ping-heatmap/11f943bca669a1542824d149f3c36da1ed66e3fe.png diff --git a/content/docs/telstra-game-optimiser/qos.md b/content/docs/telstra-internet-optimiser/qos.md similarity index 98% rename from content/docs/telstra-game-optimiser/qos.md rename to content/docs/telstra-internet-optimiser/qos.md index 8a77747..25f6600 100644 --- a/content/docs/telstra-game-optimiser/qos.md +++ b/content/docs/telstra-internet-optimiser/qos.md @@ -1,61 +1,61 @@ ---- -title: QoS ---- - -When devices in your home are using all the bandwidth, it creates congestion. This causes lag, especially for online games. - -QoS gives you the complete toolset to solve this problem. - -## Getting Started - -### Traffic Prioritisation - -Network congestion creates a queue, which forces games and other time-sensitive applications to wait. - -Traffic Prioritisation guarantees that these time-sensitive applications will always be placed at the front of the queue, reducing lag. - -#### Set up Traffic Prioritisation* - -By default, all console games and most PC games are detected and prioritised. The circles indicate when this is taking effect. You can monitor how much data is being prioritised in Traffic Overview. - -A) To add a service that has not automatically been detected, click Add Device. -B) Select a device from the Device Selector. -C) Select a Service or Ports to prioritise. - -Once Traffic Prioritization is set up, we can move on to setting up -Congestion Control. We must set up both of these features for QoS to be -effective. - -![bd6e8662f02250f3bb57c82932f19c4c43d1bb72.png](qos/bd6e8662f02250f3bb57c82932f19c4c43d1bb72.png) - -![78076ba5837544dc1af40b7c0a50e77dbef2f869.png](qos/78076ba5837544dc1af40b7c0a50e77dbef2f869.png) - -![420506059acb07fd185df191e2a743eec986e7b3.png](qos/420506059acb07fd185df191e2a743eec986e7b3.png) - -### Congestion Control - -QoS will automatically detect your speeds when you first start it up. If your speeds are higher than 150mbps, some QoS features can be disabled to achieve higher speeds. To do this, simply turn off Full QoS. - -To configure Congestion Control for gaming, follow the instructions below: - -Select ‘Auto-Enable’ above the slider. This option automatically enables Congestion Control only when you are playing an online game. If you have a very busy home network such as a smart home, we recommend selecting 'Always' instead. - -Set your Download slider to 70%. This is an ideal starting point, but if you experience a lot of lag, you should lower it by 10% at a time until the lag stops. After it stops, you can increase the slider by 5%, then 2%, and so on. By moving the slider and testing for lag, you can find the ideal “sweet spot” where bandwidth is maximized and lag is minimized. - -From now on, when games are detected on your network, the gaming traffic will be moved to the front of the queue, eliminating lag even in tough network conditions. - -![139ccebbf5d420a46ce722f7000e982b23054416.png](qos/139ccebbf5d420a46ce722f7000e982b23054416.png) - -### Bandwidth Allocation - -Some devices need more bandwidth than others, such as a PC watching Netflix. With Bandwidth Allocation, you can control how your bandwidth is shared across all of your applications or devices. - -#### Set your Allocation - -1. In the Bandwidth Allocation submenu, you can choose either Devices or Applications to allocate bandwidth to. - -2. Drag the percentage node next to a device to give it access to more or less bandwidth - -3. Click Update Distribution to save your changes to Bandwidth Allocation. - -4. Use the Download / Upload radio button to set your bandwidth allocation for Upload. Click Reset Distribution if you want to reset your Bandwidth Allocation to default. +--- +title: QoS +--- + +When devices in your home are using all the bandwidth, it creates congestion. This causes lag, especially for online games. + +QoS gives you the complete toolset to solve this problem. + +## Getting Started + +### Traffic Prioritisation + +Network congestion creates a queue, which forces games and other time-sensitive applications to wait. + +Traffic Prioritisation guarantees that these time-sensitive applications will always be placed at the front of the queue, reducing lag. + +#### Set up Traffic Prioritisation* + +By default, all console games and most PC games are detected and prioritised. The circles indicate when this is taking effect. You can monitor how much data is being prioritised in Traffic Overview. + +A) To add a service that has not automatically been detected, click Add Device. +B) Select a device from the Device Selector. +C) Select a Service or Ports to prioritise. + +Once Traffic Prioritization is set up, we can move on to setting up +Congestion Control. We must set up both of these features for QoS to be +effective. + +![bd6e8662f02250f3bb57c82932f19c4c43d1bb72.png](qos/bd6e8662f02250f3bb57c82932f19c4c43d1bb72.png) + +![78076ba5837544dc1af40b7c0a50e77dbef2f869.png](qos/78076ba5837544dc1af40b7c0a50e77dbef2f869.png) + +![420506059acb07fd185df191e2a743eec986e7b3.png](qos/420506059acb07fd185df191e2a743eec986e7b3.png) + +### Congestion Control + +QoS will automatically detect your speeds when you first start it up. If your speeds are higher than 150mbps, some QoS features can be disabled to achieve higher speeds. To do this, simply turn off Full QoS. + +To configure Congestion Control for gaming, follow the instructions below: + +Select ‘Auto-Enable’ above the slider. This option automatically enables Congestion Control only when you are playing an online game. If you have a very busy home network such as a smart home, we recommend selecting 'Always' instead. + +Set your Download slider to 70%. This is an ideal starting point, but if you experience a lot of lag, you should lower it by 10% at a time until the lag stops. After it stops, you can increase the slider by 5%, then 2%, and so on. By moving the slider and testing for lag, you can find the ideal “sweet spot” where bandwidth is maximized and lag is minimized. + +From now on, when games are detected on your network, the gaming traffic will be moved to the front of the queue, eliminating lag even in tough network conditions. + +![139ccebbf5d420a46ce722f7000e982b23054416.png](qos/139ccebbf5d420a46ce722f7000e982b23054416.png) + +### Bandwidth Allocation + +Some devices need more bandwidth than others, such as a PC watching Netflix. With Bandwidth Allocation, you can control how your bandwidth is shared across all of your applications or devices. + +#### Set your Allocation + +1. In the Bandwidth Allocation submenu, you can choose either Devices or Applications to allocate bandwidth to. + +2. Drag the percentage node next to a device to give it access to more or less bandwidth + +3. Click Update Distribution to save your changes to Bandwidth Allocation. + +4. Use the Download / Upload radio button to set your bandwidth allocation for Upload. Click Reset Distribution if you want to reset your Bandwidth Allocation to default. diff --git a/content/docs/telstra-game-optimiser/qos/139ccebbf5d420a46ce722f7000e982b23054416.png b/content/docs/telstra-internet-optimiser/qos/139ccebbf5d420a46ce722f7000e982b23054416.png similarity index 100% rename from content/docs/telstra-game-optimiser/qos/139ccebbf5d420a46ce722f7000e982b23054416.png rename to content/docs/telstra-internet-optimiser/qos/139ccebbf5d420a46ce722f7000e982b23054416.png diff --git a/content/docs/telstra-game-optimiser/qos/420506059acb07fd185df191e2a743eec986e7b3.png b/content/docs/telstra-internet-optimiser/qos/420506059acb07fd185df191e2a743eec986e7b3.png similarity index 100% rename from content/docs/telstra-game-optimiser/qos/420506059acb07fd185df191e2a743eec986e7b3.png rename to content/docs/telstra-internet-optimiser/qos/420506059acb07fd185df191e2a743eec986e7b3.png diff --git a/content/docs/telstra-game-optimiser/qos/78076ba5837544dc1af40b7c0a50e77dbef2f869.png b/content/docs/telstra-internet-optimiser/qos/78076ba5837544dc1af40b7c0a50e77dbef2f869.png similarity index 100% rename from content/docs/telstra-game-optimiser/qos/78076ba5837544dc1af40b7c0a50e77dbef2f869.png rename to content/docs/telstra-internet-optimiser/qos/78076ba5837544dc1af40b7c0a50e77dbef2f869.png diff --git a/content/docs/telstra-game-optimiser/qos/bd6e8662f02250f3bb57c82932f19c4c43d1bb72.png b/content/docs/telstra-internet-optimiser/qos/bd6e8662f02250f3bb57c82932f19c4c43d1bb72.png similarity index 100% rename from content/docs/telstra-game-optimiser/qos/bd6e8662f02250f3bb57c82932f19c4c43d1bb72.png rename to content/docs/telstra-internet-optimiser/qos/bd6e8662f02250f3bb57c82932f19c4c43d1bb72.png diff --git a/content/docs/telstra-game-optimiser/traffic-controller.md b/content/docs/telstra-internet-optimiser/traffic-controller.md similarity index 97% rename from content/docs/telstra-game-optimiser/traffic-controller.md rename to content/docs/telstra-internet-optimiser/traffic-controller.md index b5cf139..5e71f84 100644 --- a/content/docs/telstra-game-optimiser/traffic-controller.md +++ b/content/docs/telstra-internet-optimiser/traffic-controller.md @@ -1,31 +1,31 @@ ---- -title: Traffic Controller ---- - -## Next-generation Firewall - -Traffic Controller blocks traffic by device or application, on a schedule. - -Making Rules lets you manage every aspect of your home network, from freezing your kids Internet to preventing security risks to your IoT devices. - -![3fd70954de2b74633166d1e2b596ba5bb1bef2f0.png](traffic-controller/3fd70954de2b74633166d1e2b596ba5bb1bef2f0.png) - -![a792f1569281228ca68fa754113341ebbcb42d6b.png](traffic-controller/a792f1569281228ca68fa754113341ebbcb42d6b.png) - -![d031fa5bee6d5143b32a483bc352b6718df5df95.png](traffic-controller/d031fa5bee6d5143b32a483bc352b6718df5df95.png) - -![b293d2dc25701b692e5cae7ef31ae13d40bb4956.png](traffic-controller/b293d2dc25701b692e5cae7ef31ae13d40bb4956.png) - -### Create Rule - -1. Click Add Rule to get started. Select the type of rule you are creating and the target(s) for it. - -2. Select the hours and days you want the rule to apply for, and click Done. - -## Rule Table - -Created rules are ordered by priority, and can be reordered using the Drag Handle. Each rule can be edited, deleted and turned on or off. - -Toggle Track to see when a rule is triggered on the Event Capture panel. - -![e30bf335e3848057970cce674756c755b89b6ee3.png](traffic-controller/e30bf335e3848057970cce674756c755b89b6ee3.png) +--- +title: Traffic Controller +--- + +## Next-generation Firewall + +Traffic Controller blocks traffic by device or application, on a schedule. + +Making Rules lets you manage every aspect of your home network, from freezing your kids Internet to preventing security risks to your IoT devices. + +![3fd70954de2b74633166d1e2b596ba5bb1bef2f0.png](traffic-controller/3fd70954de2b74633166d1e2b596ba5bb1bef2f0.png) + +![a792f1569281228ca68fa754113341ebbcb42d6b.png](traffic-controller/a792f1569281228ca68fa754113341ebbcb42d6b.png) + +![d031fa5bee6d5143b32a483bc352b6718df5df95.png](traffic-controller/d031fa5bee6d5143b32a483bc352b6718df5df95.png) + +![b293d2dc25701b692e5cae7ef31ae13d40bb4956.png](traffic-controller/b293d2dc25701b692e5cae7ef31ae13d40bb4956.png) + +### Create Rule + +1. Click Add Rule to get started. Select the type of rule you are creating and the target(s) for it. + +2. Select the hours and days you want the rule to apply for, and click Done. + +## Rule Table + +Created rules are ordered by priority, and can be reordered using the Drag Handle. Each rule can be edited, deleted and turned on or off. + +Toggle Track to see when a rule is triggered on the Event Capture panel. + +![e30bf335e3848057970cce674756c755b89b6ee3.png](traffic-controller/e30bf335e3848057970cce674756c755b89b6ee3.png) diff --git a/content/docs/telstra-game-optimiser/traffic-controller/3fd70954de2b74633166d1e2b596ba5bb1bef2f0.png b/content/docs/telstra-internet-optimiser/traffic-controller/3fd70954de2b74633166d1e2b596ba5bb1bef2f0.png similarity index 100% rename from content/docs/telstra-game-optimiser/traffic-controller/3fd70954de2b74633166d1e2b596ba5bb1bef2f0.png rename to content/docs/telstra-internet-optimiser/traffic-controller/3fd70954de2b74633166d1e2b596ba5bb1bef2f0.png diff --git a/content/docs/telstra-game-optimiser/traffic-controller/a792f1569281228ca68fa754113341ebbcb42d6b.png b/content/docs/telstra-internet-optimiser/traffic-controller/a792f1569281228ca68fa754113341ebbcb42d6b.png similarity index 100% rename from content/docs/telstra-game-optimiser/traffic-controller/a792f1569281228ca68fa754113341ebbcb42d6b.png rename to content/docs/telstra-internet-optimiser/traffic-controller/a792f1569281228ca68fa754113341ebbcb42d6b.png diff --git a/content/docs/telstra-game-optimiser/traffic-controller/b293d2dc25701b692e5cae7ef31ae13d40bb4956.png b/content/docs/telstra-internet-optimiser/traffic-controller/b293d2dc25701b692e5cae7ef31ae13d40bb4956.png similarity index 100% rename from content/docs/telstra-game-optimiser/traffic-controller/b293d2dc25701b692e5cae7ef31ae13d40bb4956.png rename to content/docs/telstra-internet-optimiser/traffic-controller/b293d2dc25701b692e5cae7ef31ae13d40bb4956.png diff --git a/content/docs/telstra-game-optimiser/traffic-controller/d031fa5bee6d5143b32a483bc352b6718df5df95.png b/content/docs/telstra-internet-optimiser/traffic-controller/d031fa5bee6d5143b32a483bc352b6718df5df95.png similarity index 100% rename from content/docs/telstra-game-optimiser/traffic-controller/d031fa5bee6d5143b32a483bc352b6718df5df95.png rename to content/docs/telstra-internet-optimiser/traffic-controller/d031fa5bee6d5143b32a483bc352b6718df5df95.png diff --git a/content/docs/telstra-game-optimiser/traffic-controller/e30bf335e3848057970cce674756c755b89b6ee3.png b/content/docs/telstra-internet-optimiser/traffic-controller/e30bf335e3848057970cce674756c755b89b6ee3.png similarity index 100% rename from content/docs/telstra-game-optimiser/traffic-controller/e30bf335e3848057970cce674756c755b89b6ee3.png rename to content/docs/telstra-internet-optimiser/traffic-controller/e30bf335e3848057970cce674756c755b89b6ee3.png diff --git a/content/docs/user-manuals/_index.md b/content/docs/user-manuals/_index.md deleted file mode 100644 index fa25465..0000000 --- a/content/docs/user-manuals/_index.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -weight: 4 -title: User Manuals ---- - -All official user manuals can be found here. - -{{< cards >}} - {{< card link="/docs/user-manuals/netduma-r1" title="Netduma R1 User Manual">}} - {{< card link="/docs/user-manuals/netduma-r2" title="Netduma R2 User Manual">}} - {{< card link="/docs/user-manuals/nighthawk-xr500-user-manual" title="Nighthawk XR500 User Manual" >}} -{{< /cards >}} \ No newline at end of file diff --git a/content/docs/user-manuals/netduma-r1.md b/content/docs/user-manuals/netduma-r1.md deleted file mode 100644 index a9359ab..0000000 --- a/content/docs/user-manuals/netduma-r1.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: Netduma R1 ---- - -Download the Netduma R1 DumaOS user guide here: - -[Dropbox](https://www.dropbox.com/s/93csxo1y2cx21vu/DumaOS_R1_User_Manual.pdf?dl=0) diff --git a/content/docs/user-manuals/netduma-r2.md b/content/docs/user-manuals/netduma-r2.md deleted file mode 100644 index 910fa24..0000000 --- a/content/docs/user-manuals/netduma-r2.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: Netduma R2 ---- - -Download the Netduma R2 DumaOS user guide here:  - -[Dropbox](https://www.dropbox.com/s/apu6q9ll5m18u83/R2_V3_User_Manual_CMYK.pdf?dl=0) diff --git a/content/docs/user-manuals/nighthawk-xr500-user-manual.md b/content/docs/user-manuals/nighthawk-xr500-user-manual.md deleted file mode 100644 index e78f6f5..0000000 --- a/content/docs/user-manuals/nighthawk-xr500-user-manual.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: Nighthawk XR500 ---- - -![u7Ow3qVilpdImYumii-7lAovVkh_mGUwug.jpg](nighthawk-xr500-user-manual/u7Ow3qVilpdImYumii-7lAovVkh_mGUwug.jpg) - -![RnDdEUuYLs7__anFpRV1oIUQBHZvix-etA.jpg](nighthawk-xr500-user-manual/RnDdEUuYLs7__anFpRV1oIUQBHZvix-etA.jpg) - -![o12sU_xJWK8ZorA5ouzEMcLVT7ePxMVzSw.jpg](nighthawk-xr500-user-manual/o12sU_xJWK8ZorA5ouzEMcLVT7ePxMVzSw.jpg) - -![ysNLHwVkO7h3brqNb36wvpDiWgrn-6u6WQ.jpg](nighthawk-xr500-user-manual/ysNLHwVkO7h3brqNb36wvpDiWgrn-6u6WQ.jpg) - -![OZg_adbue84h_G39hsnC94xzkryIZ0c9Tw.jpg](nighthawk-xr500-user-manual/OZg_adbue84h_G39hsnC94xzkryIZ0c9Tw.jpg) - -![S4dNQ4OmRzhFMxZK06NviE6kO-1WhV_-Aw.jpg](nighthawk-xr500-user-manual/S4dNQ4OmRzhFMxZK06NviE6kO-1WhV_-Aw.jpg) - -![h-wHs7-h4IXl6iY-AgYvHgp4n7VuPL1xbw.jpg](nighthawk-xr500-user-manual/h-wHs7-h4IXl6iY-AgYvHgp4n7VuPL1xbw.jpg) - -![z4kVD6Ptlf_1_CwISte22SbnBJnuUkeyCA.jpg](nighthawk-xr500-user-manual/z4kVD6Ptlf_1_CwISte22SbnBJnuUkeyCA.jpg) - -![zM28Gf1YK-IAIINsbm7ZXdgkUlvgYWVvhQ.jpg](nighthawk-xr500-user-manual/zM28Gf1YK-IAIINsbm7ZXdgkUlvgYWVvhQ.jpg) - -![AB1oK_kPj6JjNY87-GxcGK46WpTF642peQ.jpg](nighthawk-xr500-user-manual/AB1oK_kPj6JjNY87-GxcGK46WpTF642peQ.jpg) - -![t_DcKogZyxki6UD9w7IOgKfwvSU5hu8DMA.jpg](nighthawk-xr500-user-manual/t_DcKogZyxki6UD9w7IOgKfwvSU5hu8DMA.jpg) - -![CT7WQGQaS33bARpO_Q-YDmHj5NmHOlyEDw.jpg](nighthawk-xr500-user-manual/CT7WQGQaS33bARpO_Q-YDmHj5NmHOlyEDw.jpg) - -![PCgurfaEFzWehRZNBUyQF78rpvq5mFVrjA.jpg](nighthawk-xr500-user-manual/PCgurfaEFzWehRZNBUyQF78rpvq5mFVrjA.jpg) - -![qzUhdAgBuZWXYcarepUn5vsvz1VKx5u73Q.jpg](nighthawk-xr500-user-manual/qzUhdAgBuZWXYcarepUn5vsvz1VKx5u73Q.jpg) - -![sHh2nfQxfAB_gVaW6Yshkyhh7qDTNjqVeA.jpg](nighthawk-xr500-user-manual/sHh2nfQxfAB_gVaW6Yshkyhh7qDTNjqVeA.jpg) diff --git a/content/docs/user-manuals/nighthawk-xr500-user-manual/AB1oK_kPj6JjNY87-GxcGK46WpTF642peQ.jpg b/content/docs/user-manuals/nighthawk-xr500-user-manual/AB1oK_kPj6JjNY87-GxcGK46WpTF642peQ.jpg deleted file mode 100644 index ed3c94b..0000000 Binary files a/content/docs/user-manuals/nighthawk-xr500-user-manual/AB1oK_kPj6JjNY87-GxcGK46WpTF642peQ.jpg and /dev/null differ diff --git a/content/docs/user-manuals/nighthawk-xr500-user-manual/CT7WQGQaS33bARpO_Q-YDmHj5NmHOlyEDw.jpg b/content/docs/user-manuals/nighthawk-xr500-user-manual/CT7WQGQaS33bARpO_Q-YDmHj5NmHOlyEDw.jpg deleted file mode 100644 index ce0df9a..0000000 Binary files a/content/docs/user-manuals/nighthawk-xr500-user-manual/CT7WQGQaS33bARpO_Q-YDmHj5NmHOlyEDw.jpg and /dev/null differ diff --git a/content/docs/user-manuals/nighthawk-xr500-user-manual/OZg_adbue84h_G39hsnC94xzkryIZ0c9Tw.jpg b/content/docs/user-manuals/nighthawk-xr500-user-manual/OZg_adbue84h_G39hsnC94xzkryIZ0c9Tw.jpg deleted file mode 100644 index 3889a64..0000000 Binary files a/content/docs/user-manuals/nighthawk-xr500-user-manual/OZg_adbue84h_G39hsnC94xzkryIZ0c9Tw.jpg and /dev/null differ diff --git a/content/docs/user-manuals/nighthawk-xr500-user-manual/PCgurfaEFzWehRZNBUyQF78rpvq5mFVrjA.jpg b/content/docs/user-manuals/nighthawk-xr500-user-manual/PCgurfaEFzWehRZNBUyQF78rpvq5mFVrjA.jpg deleted file mode 100644 index a2638fc..0000000 Binary files a/content/docs/user-manuals/nighthawk-xr500-user-manual/PCgurfaEFzWehRZNBUyQF78rpvq5mFVrjA.jpg and /dev/null differ diff --git a/content/docs/user-manuals/nighthawk-xr500-user-manual/RnDdEUuYLs7__anFpRV1oIUQBHZvix-etA.jpg b/content/docs/user-manuals/nighthawk-xr500-user-manual/RnDdEUuYLs7__anFpRV1oIUQBHZvix-etA.jpg deleted file mode 100644 index 608f3b4..0000000 Binary files a/content/docs/user-manuals/nighthawk-xr500-user-manual/RnDdEUuYLs7__anFpRV1oIUQBHZvix-etA.jpg and /dev/null differ diff --git a/content/docs/user-manuals/nighthawk-xr500-user-manual/S4dNQ4OmRzhFMxZK06NviE6kO-1WhV_-Aw.jpg b/content/docs/user-manuals/nighthawk-xr500-user-manual/S4dNQ4OmRzhFMxZK06NviE6kO-1WhV_-Aw.jpg deleted file mode 100644 index 8a86f6d..0000000 Binary files a/content/docs/user-manuals/nighthawk-xr500-user-manual/S4dNQ4OmRzhFMxZK06NviE6kO-1WhV_-Aw.jpg and /dev/null differ diff --git a/content/docs/user-manuals/nighthawk-xr500-user-manual/h-wHs7-h4IXl6iY-AgYvHgp4n7VuPL1xbw.jpg b/content/docs/user-manuals/nighthawk-xr500-user-manual/h-wHs7-h4IXl6iY-AgYvHgp4n7VuPL1xbw.jpg deleted file mode 100644 index c97e7ef..0000000 Binary files a/content/docs/user-manuals/nighthawk-xr500-user-manual/h-wHs7-h4IXl6iY-AgYvHgp4n7VuPL1xbw.jpg and /dev/null differ diff --git a/content/docs/user-manuals/nighthawk-xr500-user-manual/o12sU_xJWK8ZorA5ouzEMcLVT7ePxMVzSw.jpg b/content/docs/user-manuals/nighthawk-xr500-user-manual/o12sU_xJWK8ZorA5ouzEMcLVT7ePxMVzSw.jpg deleted file mode 100644 index 09bd34f..0000000 Binary files a/content/docs/user-manuals/nighthawk-xr500-user-manual/o12sU_xJWK8ZorA5ouzEMcLVT7ePxMVzSw.jpg and /dev/null differ diff --git a/content/docs/user-manuals/nighthawk-xr500-user-manual/qzUhdAgBuZWXYcarepUn5vsvz1VKx5u73Q.jpg b/content/docs/user-manuals/nighthawk-xr500-user-manual/qzUhdAgBuZWXYcarepUn5vsvz1VKx5u73Q.jpg deleted file mode 100644 index c128fd0..0000000 Binary files a/content/docs/user-manuals/nighthawk-xr500-user-manual/qzUhdAgBuZWXYcarepUn5vsvz1VKx5u73Q.jpg and /dev/null differ diff --git a/content/docs/user-manuals/nighthawk-xr500-user-manual/sHh2nfQxfAB_gVaW6Yshkyhh7qDTNjqVeA.jpg b/content/docs/user-manuals/nighthawk-xr500-user-manual/sHh2nfQxfAB_gVaW6Yshkyhh7qDTNjqVeA.jpg deleted file mode 100644 index 30275c1..0000000 Binary files a/content/docs/user-manuals/nighthawk-xr500-user-manual/sHh2nfQxfAB_gVaW6Yshkyhh7qDTNjqVeA.jpg and /dev/null differ diff --git a/content/docs/user-manuals/nighthawk-xr500-user-manual/t_DcKogZyxki6UD9w7IOgKfwvSU5hu8DMA.jpg b/content/docs/user-manuals/nighthawk-xr500-user-manual/t_DcKogZyxki6UD9w7IOgKfwvSU5hu8DMA.jpg deleted file mode 100644 index 828ea47..0000000 Binary files a/content/docs/user-manuals/nighthawk-xr500-user-manual/t_DcKogZyxki6UD9w7IOgKfwvSU5hu8DMA.jpg and /dev/null differ diff --git a/content/docs/user-manuals/nighthawk-xr500-user-manual/u7Ow3qVilpdImYumii-7lAovVkh_mGUwug.jpg b/content/docs/user-manuals/nighthawk-xr500-user-manual/u7Ow3qVilpdImYumii-7lAovVkh_mGUwug.jpg deleted file mode 100644 index 1c13555..0000000 Binary files a/content/docs/user-manuals/nighthawk-xr500-user-manual/u7Ow3qVilpdImYumii-7lAovVkh_mGUwug.jpg and /dev/null differ diff --git a/content/docs/user-manuals/nighthawk-xr500-user-manual/ysNLHwVkO7h3brqNb36wvpDiWgrn-6u6WQ.jpg b/content/docs/user-manuals/nighthawk-xr500-user-manual/ysNLHwVkO7h3brqNb36wvpDiWgrn-6u6WQ.jpg deleted file mode 100644 index ac0e318..0000000 Binary files a/content/docs/user-manuals/nighthawk-xr500-user-manual/ysNLHwVkO7h3brqNb36wvpDiWgrn-6u6WQ.jpg and /dev/null differ diff --git a/content/docs/user-manuals/nighthawk-xr500-user-manual/z4kVD6Ptlf_1_CwISte22SbnBJnuUkeyCA.jpg b/content/docs/user-manuals/nighthawk-xr500-user-manual/z4kVD6Ptlf_1_CwISte22SbnBJnuUkeyCA.jpg deleted file mode 100644 index a33c323..0000000 Binary files a/content/docs/user-manuals/nighthawk-xr500-user-manual/z4kVD6Ptlf_1_CwISte22SbnBJnuUkeyCA.jpg and /dev/null differ diff --git a/content/docs/user-manuals/nighthawk-xr500-user-manual/zM28Gf1YK-IAIINsbm7ZXdgkUlvgYWVvhQ.jpg b/content/docs/user-manuals/nighthawk-xr500-user-manual/zM28Gf1YK-IAIINsbm7ZXdgkUlvgYWVvhQ.jpg deleted file mode 100644 index 207ddd2..0000000 Binary files a/content/docs/user-manuals/nighthawk-xr500-user-manual/zM28Gf1YK-IAIINsbm7ZXdgkUlvgYWVvhQ.jpg and /dev/null differ diff --git a/content/firmwares/_index.md b/content/firmwares/_index.md deleted file mode 100644 index e30d85c..0000000 --- a/content/firmwares/_index.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -title: Firmwares -weight: 2 -cascade: - type: docs ---- - -This section contains links to all of the latest firmwares available for DumaOS. - -These firmwares introduce bug fixes and new features. - -If you're on DumaOS 4, you don't need to manually upgrade, as there is a one-click-update system. - -However the firmwares are all available here in case you would like to roll-back for any reason. - -- [NETDUMA R1](/firmwares/netduma-r1/) - -- [NETDUMA R2](/firmwares/netduma-r2/) - -- [NETDUMA R3](/firmwares/netduma-r3/) - -- [NETGEAR Nighthawk Pro Gaming XR1000 and XR1000v2](/firmwares/netgear-xr1000/) - -- [NETGEAR Nighthawk Pro Gaming XR700](/firmwares/netgear-xr700/) - -- [NETGEAR Nighthawk Pro Gaming XR500](/firmwares/netgear-xr500/) - -- [NETGEAR Nighthawk Pro Gaming XR450](/firmwares/netgear-xr450/) - -- [NETGEAR Nighthawk Pro Gaming XR300](/firmwares/netgear-xr300/) \ No newline at end of file diff --git a/content/firmwares/netduma-r1.md b/content/firmwares/netduma-r1.md deleted file mode 100644 index 27dfe69..0000000 --- a/content/firmwares/netduma-r1.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -title: NETDUMA R1 -weight: 1 ---- - -Current Firmware - -[v.3.0.207](https://www.dropbox.com/s/8z4kcynmo3glplp/DumaOS-R1-3.0.207.sig?dl=0) - -Previous Firmware - -[v.1.03.6j](https://www.dropbox.com/s/701ezvt4qmezdgu/R1-v-1-03-6j.sig?dl=0) - -## Release Notes - -| **Version** | **Notes** | -| -------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [v.2.1.3.29](https://www.dropbox.com/s/bzep9jc2b8wzgrh/dumaos-2.1.3.29.sig?dl=0) | - Ping
Assist v2: it's back and it’s better than ever. Ping Assist lets low
ping hosts to connect to you even if they are outside your Geo-Filter
limit, helping you to quickly find high quality, low ping games.
- Hybrid
VPN: apply your VPN to your entire network and also choose the devices
and applications you want to put through your VPN using DumaOS Deep
Packet Inspection.
- Advanced Ping
Stats: see the Server (Host) Tickrate and Receive Rate, as well as your
own Client Tickrate and Send Rate. This allows you to see the quality of
your game's connection in far more detail than ever before.
- Device
Manager Enhancements: shows every device on your Network and you can
now view this as a sortable table, to give you easier administration.

**Installation Instructions:**

- Go to your R1 interface (usually at 192.168.88.1)
- In
the top right corner, click the icon that looks like a clock with a
circular arrow around it. (Pre-DumaOS, go to the Upgrade option in the
left-hand menu)
- Select the upgrade file from wherever you saved it onto your PC then click Upgrade.
- It will take about 60 seconds for your R1 to upgrade, so please be patient. DO NOT POWER OFF YOUR ROUTER DURING THIS TIME
- You
should automatically be taken back to the interface. If this does not
happen, check your PC hasn't connected you to a different WiFi whilst
the R1 was temporarily offline. The default login details are admin and
password | -| [v.1.03.6j](https://www.dropbox.com/s/701ezvt4qmezdgu/R1-v-1-03-6j.sig?dl=0) | Release firmware | diff --git a/content/firmwares/netduma-r2.md b/content/firmwares/netduma-r2.md deleted file mode 100644 index 249bf0e..0000000 --- a/content/firmwares/netduma-r2.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -title: NETDUMA R2 -weight: 2 ---- - -Current Firmware -[v.3.3.280](https://forum.netduma.com/topic/50710-new-r2-firmware-33280/) - -Previous Firmware - -[v.3.2.453](https://forum.netduma.com/topic/39522-new-r2-firmware-32453/) - -[v.3.0.394](https://forum.netduma.com/topic/38047-new-r2-firmware-30394/) - -[v.3.0.205](https://www.dropbox.com/s/49gt1wxva9rxame/DumaOS-R2-3.0.205.sig?dl=0) - -[v.3.0.179](https://www.dropbox.com/s/1krvgqi4peslusv/DumaOS-R2-3.0.179.sig?dl=0) - -[v.3.0.123](https://www.dropbox.com/s/bqk0zy5fg9tssq3/DumaOS-R2-3.0.123-Release.sig?dl=0) - -## Release Notes - -| **Version** | **Notes** | -| ----------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [v.3.3.280](https://forum.netduma.com/topic/50710-new-r2-firmware-33280/) | - Wider range of games and applications supported by DumaOS (and more to come!).
- Hybrid VPN no longer experiences issues when switching between Wireguard and OpenVPN.
- DNS settings for Hybrid VPN are now retained after reboot.
- Fixed an issue where replacing a faulty config file for Hybrid VPN would cause functionality issues.
- OpenVPN logs are no longer deleted when the VPN is disabled.
- Various other fixes to Hybrid VPN functionality and stability.
- IPv6 traffic is now always categorised by QoS, allowing QoS to interact with it more reliably.
- Ping Heatmap no longer crashes if pinging an empty server group.
- Improvements to overall DumaOS stability, reducing cases where users see random reboots or disconnections.
- Numerous security improvements. | -| [v3.2.453](https://forum.netduma.com/topic/39522-new-r2-firmware-32453/) | - Mobile view: New priority boost button - lets you temporarily prioritise any traffic type
- Mobile view: New Ping Optimiser feature - which finds the best QoS settings for your home
- Mobile view: Revamped Connection Benchmark to split out into a separate Speedtest and Ping Test
- Support for Work From Home protocols
- Added Data History
- Connection Benchmark upload result no longer affected by Congestion Control
- Added Hybrid-VPN fixes
- System-wide websocket improvements
- Setup process uses both desktop and mobile view to automatically configure more of DumaOS
- System-wide improvements to CPU and memory usage
- Ping Heatmap front-end fixes
- Improved stability of back-end processes
- Improved clean-up process system-wide on shutdown
- Improved wireless stability | -| [v3.0.394](https://www.dropbox.com/s/ctjppykaasmorxp/DumaOS-R2-3.0.394.sig?dl=0) | - Added support for Wireguard in Hybrid VPN
- Added ability to use specific IPv4/IPv6 DNS in HybridVPN
- Fixed issue with DHCP service crashing
- Added better backend flash usage monitoring for preventing long-term issues
- Added improved configuration system allowing for faster and more stable integration of new features
- Fixed issue where Wi-Fi password wouldn’t match label after reset
- Multiple security improvements
- Fixed ‘Rapps not loading’ issue (Big thanks to @pollutionblues for all his help troubleshooting this)
- Fixed Hybrid VPN DNS leak issue
- System-wide GUI improvements
- Added cloud gaming and Work From Home categorisations for QoS
- Added VLAN Support
- Added Public IP viewable on Network Status panel - can be toggled on/off
- Added Set Home by address on Geo-Filter
- Added
a Report button to the ping panel - use this to report an abnormal
ping, incorrect server type, server required for online play or other
(e.g. incorrect location) direct from the Geo-Filter
- Added Resync button to Device Manager
- Changed Device Manager Table View panel order
- Network Monitor Category Breakdown viewable by default | -| [v3.0.205](https://www.dropbox.com/s/49gt1wxva9rxame/DumaOS-R2-3.0.205.sig?dl=0) | - System-wide GUI improvements to both cosmetics and Security
- Increase DHCP cache size to 10000 avoiding DHCP being filled up with only 1500 requests
- Improved wireless devices Traffic Prioritisation
- Fixed IPv6 devices not being assigned a DHCP IP sometimes
- Fixes for DumaOS webserver for GUI to operate smoothly
- Improve DPI detection services
- Improved Bandwidth Allocation backend | -| [v.3.0.179](https://www.dropbox.com/s/1krvgqi4peslusv/DumaOS-R2-3.0.179.sig?dl=0) | **General Improvements**

-          System-wide GUI improvements.
-          Memory usage improvements.
-  
       Added new Copy to Clipboard button for information generated by
Rapp Performance and Device Manager > Wi-Fi Scan (also a new
addition).
-          Fixed initial tour throwing errors if ‘Next’ clicked too early.
-          Fixed various issues with upgrade process.
-          Fixed various vulnerabilities.

**Wi-Fi Improvements**

-          Improved Wi-Fi band steering.
-          Improved Wi-Fi range coverage.
-          Fixed Wi-Fi settings not preserving on firmware upgrades.
-          Fixed Wi-Fi station details displaying incorrectly if the device is disconnected.
-          Fixed 5GHz channel not starting correctly when splitting the channels.
-          Added auto Wi-Fi channel detection, picking the least noisy Wi-Fi channel to achieve better results.
-          Added Wi-Fi channel width setting for greater control.
-          Added Wi-Fi region setup to the setup wizard.
-          Added Wi-Fi radar detection DFS channels.
-          Added Wi-Fi Performance feature to devices.
-          Added Wi-Fi Scan feature.
-          Added more Wi-Fi stations information for better debugging.

**Ping Heatmap**

-          Fixed Ping Heatmap displaying multiple graphs when spam-clicking.

**QoS**

-          Congestion Control Auto-Setup is now less aggressive - users should see improved results.
-          Improved QoS Stability.
-          QoS now loads quicker on start-up.
-          Fixed QoS not always loading correctly.
-          Fixed QoS crashes and stability issues.
-          Fixed Congestion Control Auto-Setup layout issues when zoomed in.
-          Fixed "Applying Settings" popup appearing when Auto-Setup loads.
-          Fixed Congestion Control Auto-Setup button.
-          Fixed Auto-Setup not always setting the slider.
-          Fixed incorrect padding around auto-setup bars.
-          Fixed Auto-Setup throttling below 1%.

**Connection Benchmark**

-          Fixed issues with Speed Test when WAN is disconnected.
-          Fixed Ping Under Load test not working correctly.

**Device Manager**

-          Device status will update between online and offline much faster.
-          Fixed Device Manager crashes.
-          Fixed Device Manager spam messages about device status.
-          Fixed issue where devices sometimes have no name.
-          Fixed issue when adding a new device causing Rapps to fail.

**Traffic Controller**

- Fixed Traffic Controller causing DumaOS to fail loading

**Network Settings**

-          Fixed MAC cloning to update the device interface correctly.
-          Removed MAC address cloning toggle, added reset button.
-          Added more special characters for Wi-Fi password entry.

**Misc.**

-          Updated to use new multi-threaded webserver for faster GUI loading.

 **Installation instructions:**

- Download the file above
- Open DumaOS at 192.168.77.1 or /dumaos/
- Click the three dots in the top right of the interface
- Click Update
- Click 'Select Upgrade File' and choose the file you just downloaded
- Click 'Upgrade' and wait about 5 minutes for the update to apply
- Do not unplug your unit during this time! | -| [v.3.0.123](https://www.dropbox.com/s/bqk0zy5fg9tssq3/DumaOS-R2-3.0.123-Release.sig?dl=0) | Release firmware | diff --git a/content/firmwares/netduma-r3.md b/content/firmwares/netduma-r3.md deleted file mode 100644 index a886870..0000000 --- a/content/firmwares/netduma-r3.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: NETDUMA R3 -weight: 3 ---- - -The Netduma R3 has an automatic update system which will appear on the DumaOS frontend whenever a new firmware is available for you. If you wish to download a firmware manually or return to an older version, you can download the files below. - -The manual upgrade tool can be found in the Troubleshooting section of Settings. - -## Netduma R3 - -Current Firmware - -[v.4.0.290](https://forum.netduma.com/topic/57039-new-r3-firmware-dumaos-40290/) - -Previous Firmware - -[v.4.0.236](https://forum.netduma.com/topic/56107-new-r3-firmware-40236/) - -[v.4.0.219](https://forum.netduma.com/applications/core/interface/file/attachment.php?id=41720&key=c7ef49cfa27931fba39babdc31adb17f) - -[v.4.0.21](https://drive.google.com/file/d/1hoOdOxJ9Ve9JZB1yUOiLcLqRlJnL5-bp/view?usp=sharing)  - -[v.4.0.20](https://drive.google.com/file/d/1vDkNQZdd_EAS9rgP_zk_bh9TJjj06-eh/view?usp=sharing) - -[v.4.0.19](https://drive.google.com/file/d/19glLDdlx-Nb1k9MB5GifHMIvyvJvfDTn/view?usp=sharing) - -[v.4.0.16](https://drive.google.com/file/d/11j913tnodzS5TKASdxtKpBI4KQ_no1ec/view?usp=sharing) - -| **Version** | **Notes** | -| ------------------------------------------------------------------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [v.4.0.290](https://forum.netduma.com/topic/57039-new-r3-firmware-dumaos-40290/) | -  COUNTRY SELECTOR         
  - You can now set your Geo-Filter radius using countries through the custom Geo-Filter radius.            
- Geo-Filter 2.0 improvements         
  - Improved reliability of getting games inside your radius            
- Memory usage improvements         
  - Improvements made to fix issues with the UI not loading            
- Bugfix for SmartBOOST causing loss of total bandwidth speed over time.     


| -| [v.4.0.236](https://forum.netduma.com/topic/56107-new-r3-firmware-40236/) | - Improvements to Geo-Filter stability
- SmartBOOST compatibility with VLAN improved
- VLAN stability improved
- YouTube detection fixed
- Memory usage improvements
- Improvements to IPv6 support
- IPv6 disabled by default after Factory Reset
- Steady Ping Expert Mode fixed
- Steady Ping disabled by default after Factory Reset
- Many small frontend improvements | -| [v.4.0.236](https://forum.netduma.com/topic/56107-new-r3-firmware-40236/) | - Improvements to Geo-Filter stability
- SmartBOOST compatibility with VLAN improved
- VLAN stability improved
- YouTube detection fixed
- Memory usage improvements
- Improvements to IPv6 support
- IPv6 disabled by default after Factory Reset
- Steady Ping Expert Mode fixed
- Steady Ping disabled by default after Factory Reset
- Many small frontend improvements | -| [v.4.0.219](https://forum.netduma.com/applications/core/interface/file/attachment.php?id=41720&key=c7ef49cfa27931fba39babdc31adb17f)


| - Hybrid-VPN added
- Improved performance of SmartBOOST
- Improved performance of Steady Ping
- Improved performance of Geo-Filter
- Ping graph appears more frequently
- Ping Optimiser reliability improvements
- Chromecast/AirPlay compatibility fixed
- UPnP relay added (no more double NAT)
- Increased maximum speeds
- Improved compatibility with IPv6 and PPPoE
- Optimisations to improve memory usage
- Many other smaller bug fixes | -| [v.4.0.21](https://drive.google.com/file/d/1hoOdOxJ9Ve9JZB1yUOiLcLqRlJnL5-bp/view?usp=sharing) | - VLAN compatibility fixed | -| [v.4.0.20](https://drive.google.com/file/d/1vDkNQZdd_EAS9rgP_zk_bh9TJjj06-eh/view?usp=sharing) | - Fortnite PC login issues are fixed
- Maximum WAN speeds increased | -| [v.4.0.19](https://drive.google.com/file/d/19glLDdlx-Nb1k9MB5GifHMIvyvJvfDTn/view?usp=sharing) | - PPPoE Credentials can now be entered in Setup Wizard without issue
- Setup Wizard can now be completed without WAN access
- Small frontend improvements, styling fixes | -| [v.4.0.16](https://drive.google.com/file/d/11j913tnodzS5TKASdxtKpBI4KQ_no1ec/view?usp=sharing) | - Launch firmware | diff --git a/content/firmwares/netgear-xr1000.md b/content/firmwares/netgear-xr1000.md deleted file mode 100644 index a312a2b..0000000 --- a/content/firmwares/netgear-xr1000.md +++ /dev/null @@ -1,32 +0,0 @@ ---- -title: NETGEAR Nighthawk Pro Gaming XR1000 and XR1000v2 -weight: 4 ---- - -Most of the time you will be able to upgrade your NETGEAR Nighthawk Pro Gaming XR1000 or XR1000v2 using the built in automatic update tool. However there are some scenarios where you may need to manually download and install a firmware. - -This guide will detail the process. - -## Is your router a V1 or a V2? - -There are two versions of the XR1000 on the market. They are identical in terms of functionality, but some of the internal components were changed. Because of this, they require separate firmware files. - -Log onto DumaOS in your browser by visiting routerlogin.net while connected to your home network. The version number at the top right of the screen will either say "xr1000" or "xr1000v2". Make a note of this. - -![versionnumber.png](netgear-xr1000/versionnumber.png) - -## Downloading the firmware files - -Download the correct firmware files for your unit. These will contain the model number in the title (xr1000 or xr1000v2) and will be in .chk format. Do not attempt to install any firmwares which are not specifically intended for your unit. - -Official firmware files can be downloaded directly from Netgear here: -[XR1000 Firmware](https://www.netgear.com/support/product/xr1000/#download) -[XR1000v2 Firmware](https://www.netgear.com/support/product/xr1000v2/#download) - -## Installation steps - -After you've downloaded the firmware to your PC, log onto the DumaOS frontend, then go to Settings > Administration > Router Upgrade > Browse > Upload. - -Your router will restart during the process, so you'll lose internet access for a few minutes. Also, make sure not to unplug the unit during the upgrade, as this could potentially brick your unit. - -![upgradeclicks.png](netgear-xr1000/upgradeclicks.png) diff --git a/content/firmwares/netgear-xr300.md b/content/firmwares/netgear-xr300.md deleted file mode 100644 index b4c83d8..0000000 --- a/content/firmwares/netgear-xr300.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -title: NETGEAR Nighthawk Pro Gaming XR300 -weight: 8 ---- - -Most of the time you will be able to upgrade your NETGEAR Nighthawk Pro Gaming XR300 using the built in automatic update tool. However there are some scenarios where you may need to manually download and install a firmware. - -This guide will detail the process. - -## Downloading the firmware files - -Download the correct firmware files for your unit. These will contain the model number in the title and will be in .chk format. Do not attempt to install any firmwares which are not specifically intended for your unit. - -Official firmware files can be downloaded directly from Netgear here: -[XR300 Firmware](https://www.netgear.com/support/product/xr300/#download) - -## Installation steps - -After you've downloaded the firmware to your PC, log onto the DumaOS frontend, then go to Settings > Administration > Router Upgrade > Browse > Upload. - -Your router will restart during the process, so you'll lose internet access for a few minutes. Also, make sure not to unplug the unit during the upgrade, as this could potentially brick your unit. diff --git a/content/firmwares/netgear-xr450.md b/content/firmwares/netgear-xr450.md deleted file mode 100644 index fcc2e48..0000000 --- a/content/firmwares/netgear-xr450.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -title: NETGEAR Nighthawk Pro Gaming XR450 -weight: 7 ---- - -Most of the time you will be able to upgrade your NETGEAR Nighthawk Pro Gaming XR450 using the built in automatic update tool. However there are some scenarios where you may need to manually download and install a firmware. - -This guide will detail the process. - -## Downloading the firmware files - -Download the correct firmware files for your unit. These will contain the model number in the title and will be in .chk format. Do not attempt to install any firmwares which are not specifically intended for your unit. - -Official firmware files can be downloaded directly from Netgear here: -[XR450 Firmware](https://www.netgear.com/support/product/xr450/#download) - -## Installation steps - -After you've downloaded the firmware to your PC, log onto the DumaOS frontend, then go to Settings > Administration > Router Upgrade > Browse > Upload. - -Your router will restart during the process, so you'll lose internet access for a few minutes. Also, make sure not to unplug the unit during the upgrade, as this could potentially brick your unit. diff --git a/content/firmwares/netgear-xr500.md b/content/firmwares/netgear-xr500.md deleted file mode 100644 index 98189e5..0000000 --- a/content/firmwares/netgear-xr500.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -title: NETGEAR Nighthawk Pro Gaming XR500 Installation Instructions -weight: 6 ---- - -Most of the time you will be able to upgrade your NETGEAR Nighthawk Pro Gaming XR500 using the built in automatic update tool. However there are some scenarios where you may need to manually download and install a firmware. - -This guide will detail the process. - -## Downloading the firmware files - -Download the correct firmware files for your unit. These will contain the model number in the title and will be in .chk format. Do not attempt to install any firmwares which are not specifically intended for your unit. - -Official firmware files can be downloaded directly from Netgear here: -[XR500 Firmware](https://www.netgear.com/support/product/xr500/#download) - -## Installation steps - -After you've downloaded the firmware to your PC, log onto the DumaOS frontend, then go to Settings > Administration > Router Upgrade > Browse > Upload. - -Your router will restart during the process, so you'll lose internet access for a few minutes. Also, make sure not to unplug the unit during the upgrade, as this could potentially brick your unit. \ No newline at end of file diff --git a/content/firmwares/netgear-xr700.md b/content/firmwares/netgear-xr700.md deleted file mode 100644 index d4156cf..0000000 --- a/content/firmwares/netgear-xr700.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -title: NETGEAR Nighthawk Pro Gaming XR700 -weight: 5 ---- - -Most of the time you will be able to upgrade your NETGEAR Nighthawk Pro Gaming XR700 using the built in automatic update tool. However there are some scenarios where you may need to manually download and install a firmware. - -This guide will detail the process. - -## Downloading the firmware files - -Download the correct firmware files for your unit. These will contain the model number in the title and will be in .chk format. Do not attempt to install any firmwares which are not specifically intended for your unit. - -Official firmware files can be downloaded directly from Netgear here: -[XR700 Firmware](https://www.netgear.com/support/product/xr700/#download) - -## Installation steps - -After you've downloaded the firmware to your PC, log onto the DumaOS frontend, then go to Settings > Administration > Router Upgrade > Browse > Upload. - -Your router will restart during the process, so you'll lose internet access for a few minutes. Also, make sure not to unplug the unit during the upgrade, as this could potentially brick your unit. \ No newline at end of file diff --git a/content/frequently-asked-questions/_index.md b/content/frequently-asked-questions/_index.md index a774625..1cfca8f 100644 --- a/content/frequently-asked-questions/_index.md +++ b/content/frequently-asked-questions/_index.md @@ -1,10 +1,26 @@ --- -title: FAQ +title: FAQs weight: 3 -cascade: - type: docs +type: netduma-wide +breadcrumbs: false --- -This section contains Frequently Asked Questions about Netduma, DumaOS and networking in general. +{{< netduma/cards class="my-6" cols="6">}} + {{< netduma/card span="2" title="DumaOS 4" icon="dumaos4" subtitle="The latest version of DumaOS, featuring groundbreaking new features like SmartBOOST and Geo-Filter 2.0." >}} + {{< netduma/card-list section="frequently-asked-questions" subsection="dumaos-4" limit="5">}} + {{< netduma/button link="dumaos-4" buttonColor="primary" text="DumaOS 4 FAQs" >}} + {{< /netduma/card >}} + {{< netduma/card span="2" title="DumaOS 3" icon="dumaos3" subtitle="The version of DumaOS which shipped with the Netduma R2 and Nighthawk Pro Gaming routers." >}} + {{< netduma/card-list section="frequently-asked-questions" subsection="dumaos-3" limit="5">}} + {{< netduma/button link="dumaos-3" buttonColor="primary" text="DumaOS 3 FAQs" >}} + {{< /netduma/card >}} + {{< netduma/card span="2" title="General" subtitle="General FAQs" >}} + {{< netduma/card-list section="frequently-asked-questions" subsection="general" limit="5">}} + {{< netduma/button link="general" buttonColor="primary" text="General FAQs" >}} + {{< /netduma/card >}} + {{< netduma/card span="6" title="Legacy" subtitle="Legacy frequently asked questions. Generally concerning the R1." >}} + {{< netduma/button link="legacyfaqs" buttonColor="primary" text="Legacy Questions" >}} + {{< /netduma/card >}} +{{< /netduma/cards >}} -On mobile, you will need to open the sidebar to see the list of questions. \ No newline at end of file +{{< netduma/need-help class="mt-16" >}} \ No newline at end of file diff --git a/content/frequently-asked-questions/dumaos-3/_index.md b/content/frequently-asked-questions/dumaos-3/_index.md new file mode 100644 index 0000000..9465347 --- /dev/null +++ b/content/frequently-asked-questions/dumaos-3/_index.md @@ -0,0 +1,12 @@ +--- +title: DumaOS 3 +cascade: + type: docs +--- + +{{< netduma/cards class="my-6" cols="6">}} + {{< netduma/card span="6" subtitle="The version of DumaOS which shipped with the Netduma R2 and Nighthawk Pro Gaming routers." >}} + {{< netduma/card-list >}} + {{< netduma/button link="dumaos-3" buttonColor="primary" text="DumaOS 3 FAQs" >}} + {{< /netduma/card >}} +{{< /netduma/cards >}} \ No newline at end of file diff --git a/content/frequently-asked-questions/legacyfaqs/add-device-geofilter.md b/content/frequently-asked-questions/dumaos-3/add-device-geofilter.md similarity index 89% rename from content/frequently-asked-questions/legacyfaqs/add-device-geofilter.md rename to content/frequently-asked-questions/dumaos-3/add-device-geofilter.md index bab63ba..797f2cf 100644 --- a/content/frequently-asked-questions/legacyfaqs/add-device-geofilter.md +++ b/content/frequently-asked-questions/dumaos-3/add-device-geofilter.md @@ -1,7 +1,11 @@ --- -title: DumaOS 3 - How to add your Gaming PC to the DumaOS Geo-filter +title: How to add your Gaming PC to the DumaOS Geo-filter --- +{{< callout >}} + This guide was written for DumaOS 3 devices, and may not be applicable to DumaOS 4. +{{< /callout >}} + This is a specific guide on how to add your Gaming PC to your Geo-Filter. A full optimal settings guide for the Geo-Filter can be found [here](/docs/dumaos-3/geo-filter/).  ## How to Add your Gaming PC to the Geo-Filter diff --git a/content/frequently-asked-questions/legacyfaqs/add-device-geofilter/TKhStRC7gattT2t80hHtVuQ5fm-CodmPdQ.png b/content/frequently-asked-questions/dumaos-3/add-device-geofilter/TKhStRC7gattT2t80hHtVuQ5fm-CodmPdQ.png similarity index 100% rename from content/frequently-asked-questions/legacyfaqs/add-device-geofilter/TKhStRC7gattT2t80hHtVuQ5fm-CodmPdQ.png rename to content/frequently-asked-questions/dumaos-3/add-device-geofilter/TKhStRC7gattT2t80hHtVuQ5fm-CodmPdQ.png diff --git a/content/frequently-asked-questions/legacyfaqs/add-device-geofilter/X4YI52l1QRdV_nXt9PduffjeqQUoc7nj6g.png b/content/frequently-asked-questions/dumaos-3/add-device-geofilter/X4YI52l1QRdV_nXt9PduffjeqQUoc7nj6g.png similarity index 100% rename from content/frequently-asked-questions/legacyfaqs/add-device-geofilter/X4YI52l1QRdV_nXt9PduffjeqQUoc7nj6g.png rename to content/frequently-asked-questions/dumaos-3/add-device-geofilter/X4YI52l1QRdV_nXt9PduffjeqQUoc7nj6g.png diff --git a/content/frequently-asked-questions/legacyfaqs/add-device-geofilter/fttzpEoND7Uzb1-vq2l73Ex3O8wI4ZF6PA.png b/content/frequently-asked-questions/dumaos-3/add-device-geofilter/fttzpEoND7Uzb1-vq2l73Ex3O8wI4ZF6PA.png similarity index 100% rename from content/frequently-asked-questions/legacyfaqs/add-device-geofilter/fttzpEoND7Uzb1-vq2l73Ex3O8wI4ZF6PA.png rename to content/frequently-asked-questions/dumaos-3/add-device-geofilter/fttzpEoND7Uzb1-vq2l73Ex3O8wI4ZF6PA.png diff --git a/content/frequently-asked-questions/legacyfaqs/add-device-geofilter/qFe0CpcQts4nIKQWYZSNkjfeBBaFJlBu8Q.png b/content/frequently-asked-questions/dumaos-3/add-device-geofilter/qFe0CpcQts4nIKQWYZSNkjfeBBaFJlBu8Q.png similarity index 100% rename from content/frequently-asked-questions/legacyfaqs/add-device-geofilter/qFe0CpcQts4nIKQWYZSNkjfeBBaFJlBu8Q.png rename to content/frequently-asked-questions/dumaos-3/add-device-geofilter/qFe0CpcQts4nIKQWYZSNkjfeBBaFJlBu8Q.png diff --git a/content/frequently-asked-questions/legacyfaqs/factory-reset.md b/content/frequently-asked-questions/dumaos-3/factory-reset.md similarity index 91% rename from content/frequently-asked-questions/legacyfaqs/factory-reset.md rename to content/frequently-asked-questions/dumaos-3/factory-reset.md index a90b6ce..4108d43 100644 --- a/content/frequently-asked-questions/legacyfaqs/factory-reset.md +++ b/content/frequently-asked-questions/dumaos-3/factory-reset.md @@ -1,7 +1,11 @@ --- -title: DumaOS 3 - How to factory reset your DumaOS powered router +title: How to factory reset your DumaOS powered router --- +{{< callout >}} + This guide was written for DumaOS 3 devices, and may not be applicable to DumaOS 4. +{{< /callout >}} + This guide will talk you through the two different ways that you can factory reset your DumaOS powered router ## Soft reset diff --git a/content/frequently-asked-questions/legacyfaqs/goodput-qos.md b/content/frequently-asked-questions/dumaos-3/goodput-qos.md similarity index 71% rename from content/frequently-asked-questions/legacyfaqs/goodput-qos.md rename to content/frequently-asked-questions/dumaos-3/goodput-qos.md index 61dd5e4..b26da81 100644 --- a/content/frequently-asked-questions/legacyfaqs/goodput-qos.md +++ b/content/frequently-asked-questions/dumaos-3/goodput-qos.md @@ -1,7 +1,11 @@ --- -title: DumaOS 3 - What does Goodput in QoS do? +title: What does Goodput in QoS do? --- +{{< callout >}} + This guide was written for DumaOS 3 devices, and may not be applicable to DumaOS 4. +{{< /callout >}} + When the Goodput option is checked, the bandwidth values for both upload and download will more closely align to a Speedtest. We recommend you keep this option checked, you will only ever need to disable it if advised to do so by Tech Support. If you have any further questions, head over to our [support forum](https://forum.netduma.com/) and our team will be happy to help! diff --git a/content/frequently-asked-questions/legacyfaqs/how-to-use-allow-and-deny-dumaos.md b/content/frequently-asked-questions/dumaos-3/how-to-use-allow-and-deny-dumaos.md similarity index 94% rename from content/frequently-asked-questions/legacyfaqs/how-to-use-allow-and-deny-dumaos.md rename to content/frequently-asked-questions/dumaos-3/how-to-use-allow-and-deny-dumaos.md index f980b9f..b2a11fc 100644 --- a/content/frequently-asked-questions/legacyfaqs/how-to-use-allow-and-deny-dumaos.md +++ b/content/frequently-asked-questions/dumaos-3/how-to-use-allow-and-deny-dumaos.md @@ -1,7 +1,11 @@ --- -title: How to use Allow and Deny on DumaOS 3 +title: How to use Allow and Deny --- +{{< callout >}} + This guide was written for DumaOS 3 devices, and may not be applicable to DumaOS 4. +{{< /callout >}} + **Allow** lets you white-list your friends who live outside of your range so they can connect to you even if they are outside of your filter range.  **Deny** lets you block connections that are within your range, for example a nearby server that gives you a bad connection.  diff --git a/content/frequently-asked-questions/legacyfaqs/how-to-use-allow-and-deny-dumaos/BSv4R8ltQ7z4ksVw6QMWeE-TzFwY-n6w7A.png b/content/frequently-asked-questions/dumaos-3/how-to-use-allow-and-deny-dumaos/BSv4R8ltQ7z4ksVw6QMWeE-TzFwY-n6w7A.png similarity index 100% rename from content/frequently-asked-questions/legacyfaqs/how-to-use-allow-and-deny-dumaos/BSv4R8ltQ7z4ksVw6QMWeE-TzFwY-n6w7A.png rename to content/frequently-asked-questions/dumaos-3/how-to-use-allow-and-deny-dumaos/BSv4R8ltQ7z4ksVw6QMWeE-TzFwY-n6w7A.png diff --git a/content/frequently-asked-questions/legacyfaqs/hybrid-vpn-compatability.md b/content/frequently-asked-questions/dumaos-3/hybrid-vpn-compatability.md similarity index 66% rename from content/frequently-asked-questions/legacyfaqs/hybrid-vpn-compatability.md rename to content/frequently-asked-questions/dumaos-3/hybrid-vpn-compatability.md index 4fb13d9..d8e171a 100644 --- a/content/frequently-asked-questions/legacyfaqs/hybrid-vpn-compatability.md +++ b/content/frequently-asked-questions/dumaos-3/hybrid-vpn-compatability.md @@ -1,6 +1,10 @@ --- -title: DumaOS 3 - Is my VPN compatible with Hybrid-VPN? +title: Is my VPN compatible with Hybrid-VPN? --- +{{< callout >}} + This guide was written for DumaOS 3 devices, and may not be applicable to DumaOS 4. +{{< /callout >}} + Hybrid VPN has presets for purevpn and hidemyass, but it will actually work with any VPN service that will provide an OpenVPN file! Simply download an OpenVPN file from your VPN of choice, press ADD VPN in DumaOS, and paste the OpenVPN file into the advanced tab! Contact us if you have any problems: forum.netduma.com diff --git a/content/frequently-asked-questions/legacyfaqs/hybrid-vpn-dns-entries.md b/content/frequently-asked-questions/dumaos-3/hybrid-vpn-dns-entries.md similarity index 95% rename from content/frequently-asked-questions/legacyfaqs/hybrid-vpn-dns-entries.md rename to content/frequently-asked-questions/dumaos-3/hybrid-vpn-dns-entries.md index e035d17..26f20a3 100644 --- a/content/frequently-asked-questions/legacyfaqs/hybrid-vpn-dns-entries.md +++ b/content/frequently-asked-questions/dumaos-3/hybrid-vpn-dns-entries.md @@ -1,7 +1,11 @@ --- -title: DumaOS 3 - Why should I set DNS entries for Hybrid VPN? +title: Why should I set DNS entries for Hybrid VPN? --- +{{< callout >}} + This guide was written for DumaOS 3 devices, and may not be applicable to DumaOS 4. +{{< /callout >}} + Whenever we use a VPN server to hide our network traffic, we are hiding our IP and encrypting our data. However, there's still the chance for an external "observer" ( eg. Netflix ) to notice that we are behind a VPN server and it could not allow the access to its services (eg. watching a film from the list of a specific nation).  When this happens, we are probably experiencing DNS leak. That is to say all of our traffic is correctly tunnelled **except** the DNS queries. diff --git a/content/frequently-asked-questions/network-speeds-low.md b/content/frequently-asked-questions/dumaos-3/network-speeds-low.md similarity index 95% rename from content/frequently-asked-questions/network-speeds-low.md rename to content/frequently-asked-questions/dumaos-3/network-speeds-low.md index be48ab2..5ea16ed 100644 --- a/content/frequently-asked-questions/network-speeds-low.md +++ b/content/frequently-asked-questions/dumaos-3/network-speeds-low.md @@ -1,9 +1,11 @@ --- -title: Legacy Guide - Why can't I get full speeds from my DumaOS router? +title: Why can't I get full speeds from my DumaOS router? weight: 15 --- -> This guide was written for DumaOS 3 devices, and may not be applicable to DumaOS 4. +{{< callout >}} + This guide was written for DumaOS 3 devices, and may not be applicable to DumaOS 4. +{{< /callout >}} This article details a few reasons why you might not be seeing your full ISP network speeds through your DumaOS powered router. diff --git a/content/frequently-asked-questions/network-speeds-low/F8viid4kl7EXFLO1rQbh-rxM_sJrquAcyg.png b/content/frequently-asked-questions/dumaos-3/network-speeds-low/F8viid4kl7EXFLO1rQbh-rxM_sJrquAcyg.png similarity index 100% rename from content/frequently-asked-questions/network-speeds-low/F8viid4kl7EXFLO1rQbh-rxM_sJrquAcyg.png rename to content/frequently-asked-questions/dumaos-3/network-speeds-low/F8viid4kl7EXFLO1rQbh-rxM_sJrquAcyg.png diff --git a/content/frequently-asked-questions/network-speeds-low/ndXZlps9IKcTdd9rMPiDCoFrRhuWhd3MEA.png b/content/frequently-asked-questions/dumaos-3/network-speeds-low/ndXZlps9IKcTdd9rMPiDCoFrRhuWhd3MEA.png similarity index 100% rename from content/frequently-asked-questions/network-speeds-low/ndXZlps9IKcTdd9rMPiDCoFrRhuWhd3MEA.png rename to content/frequently-asked-questions/dumaos-3/network-speeds-low/ndXZlps9IKcTdd9rMPiDCoFrRhuWhd3MEA.png diff --git a/content/frequently-asked-questions/legacyfaqs/optimal-settings-apex-legends.md b/content/frequently-asked-questions/dumaos-3/optimal-settings-apex-legends.md similarity index 97% rename from content/frequently-asked-questions/legacyfaqs/optimal-settings-apex-legends.md rename to content/frequently-asked-questions/dumaos-3/optimal-settings-apex-legends.md index 5ae9c2d..8d2f639 100644 --- a/content/frequently-asked-questions/legacyfaqs/optimal-settings-apex-legends.md +++ b/content/frequently-asked-questions/dumaos-3/optimal-settings-apex-legends.md @@ -1,8 +1,10 @@ --- -title: Legacy Guide - Optimal DumaOS settings for Apex Legends +title: Optimal DumaOS settings for Apex Legends --- -> This guide is for DumaOS 3. If you are on DumaOS 4, the instructions may not be applicable. +{{< callout >}} + This guide was written for DumaOS 3 devices, and may not be applicable to DumaOS 4. +{{< /callout >}} You can use the Geo-Filter to guarantee you only play on your favourite server location in Apex Legends. This guide will help you to setup your Geo-Filter optimally for Apex Legends: diff --git a/content/frequently-asked-questions/legacyfaqs/optimal-settings-apex-legends/YNgoTG7dTz3XjQZNJNpK-DxMA9UUKyjmtw.png b/content/frequently-asked-questions/dumaos-3/optimal-settings-apex-legends/YNgoTG7dTz3XjQZNJNpK-DxMA9UUKyjmtw.png similarity index 100% rename from content/frequently-asked-questions/legacyfaqs/optimal-settings-apex-legends/YNgoTG7dTz3XjQZNJNpK-DxMA9UUKyjmtw.png rename to content/frequently-asked-questions/dumaos-3/optimal-settings-apex-legends/YNgoTG7dTz3XjQZNJNpK-DxMA9UUKyjmtw.png diff --git a/content/frequently-asked-questions/legacyfaqs/optimal-settings-apex-legends/ZYxKtAMUJNUSJ1Sb2GHzdi5x1EUpyhp2xw.jpg b/content/frequently-asked-questions/dumaos-3/optimal-settings-apex-legends/ZYxKtAMUJNUSJ1Sb2GHzdi5x1EUpyhp2xw.jpg similarity index 100% rename from content/frequently-asked-questions/legacyfaqs/optimal-settings-apex-legends/ZYxKtAMUJNUSJ1Sb2GHzdi5x1EUpyhp2xw.jpg rename to content/frequently-asked-questions/dumaos-3/optimal-settings-apex-legends/ZYxKtAMUJNUSJ1Sb2GHzdi5x1EUpyhp2xw.jpg diff --git a/content/frequently-asked-questions/legacyfaqs/optimal-settings-apex-legends/aCbdm-S2PEeeGrcNUpDcroFtAsNYs2e5Mw.png b/content/frequently-asked-questions/dumaos-3/optimal-settings-apex-legends/aCbdm-S2PEeeGrcNUpDcroFtAsNYs2e5Mw.png similarity index 100% rename from content/frequently-asked-questions/legacyfaqs/optimal-settings-apex-legends/aCbdm-S2PEeeGrcNUpDcroFtAsNYs2e5Mw.png rename to content/frequently-asked-questions/dumaos-3/optimal-settings-apex-legends/aCbdm-S2PEeeGrcNUpDcroFtAsNYs2e5Mw.png diff --git a/content/frequently-asked-questions/legacyfaqs/optimal-settings-apex-legends/oo_bi6cpNY6N0tq5PfqwRQnYVyPZlweqZg.png b/content/frequently-asked-questions/dumaos-3/optimal-settings-apex-legends/oo_bi6cpNY6N0tq5PfqwRQnYVyPZlweqZg.png similarity index 100% rename from content/frequently-asked-questions/legacyfaqs/optimal-settings-apex-legends/oo_bi6cpNY6N0tq5PfqwRQnYVyPZlweqZg.png rename to content/frequently-asked-questions/dumaos-3/optimal-settings-apex-legends/oo_bi6cpNY6N0tq5PfqwRQnYVyPZlweqZg.png diff --git a/content/frequently-asked-questions/legacyfaqs/optimal-settings-apex-legends/tSWWx5x6RuNUUn4HqY6v9Y99JJx2TRQ7xg.jpg b/content/frequently-asked-questions/dumaos-3/optimal-settings-apex-legends/tSWWx5x6RuNUUn4HqY6v9Y99JJx2TRQ7xg.jpg similarity index 100% rename from content/frequently-asked-questions/legacyfaqs/optimal-settings-apex-legends/tSWWx5x6RuNUUn4HqY6v9Y99JJx2TRQ7xg.jpg rename to content/frequently-asked-questions/dumaos-3/optimal-settings-apex-legends/tSWWx5x6RuNUUn4HqY6v9Y99JJx2TRQ7xg.jpg diff --git a/content/frequently-asked-questions/legacyfaqs/wireguard-config-hybridvpn.md b/content/frequently-asked-questions/dumaos-3/wireguard-config-hybridvpn.md similarity index 87% rename from content/frequently-asked-questions/legacyfaqs/wireguard-config-hybridvpn.md rename to content/frequently-asked-questions/dumaos-3/wireguard-config-hybridvpn.md index a9825d7..85f4eb0 100644 --- a/content/frequently-asked-questions/legacyfaqs/wireguard-config-hybridvpn.md +++ b/content/frequently-asked-questions/dumaos-3/wireguard-config-hybridvpn.md @@ -1,7 +1,11 @@ --- -title: DumaOS 3 - How do I use WireGuard config files with Hybrid VPN? +title: How do I use WireGuard config files with Hybrid VPN? --- +{{< callout >}} + This guide was written for DumaOS 3 devices, and may not be applicable to DumaOS 4. +{{< /callout >}} + This article will explain how to use a WireGuard config file with Hybrid VPN. Please be aware that not all VPN providers offer WireGuard config files, so check with your provider first. This article assumes that you have already used Hybrid VPN before and are familiar with adding your devices to route them through the VPN. diff --git a/content/frequently-asked-questions/dumaos-4/_index.md b/content/frequently-asked-questions/dumaos-4/_index.md new file mode 100644 index 0000000..763fcda --- /dev/null +++ b/content/frequently-asked-questions/dumaos-4/_index.md @@ -0,0 +1,11 @@ +--- +title: DumaOS 4 +cascade: + type: docs +--- + +{{< netduma/cards class="my-6" cols="6">}} + {{< netduma/card span="6" subtitle="The latest version of DumaOS, featuring groundbreaking new features like SmartBOOST and Geo-Filter 2.0." >}} + {{< netduma/card-list >}} + {{< /netduma/card >}} +{{< /netduma/cards >}} \ No newline at end of file diff --git a/content/frequently-asked-questions/fast-search.md b/content/frequently-asked-questions/fast-search.md deleted file mode 100644 index f5d5a52..0000000 --- a/content/frequently-asked-questions/fast-search.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: What is Fast Search? -weight: 9 ---- - -Fast Search is an -add-on to Ping Assist. Enabling Fast Search makes Ping Assist work much -faster, which should make finding games quicker. However, this may -occasionally mean you allow a connection that is above your Ping Assist -limit. If you would prefer to avoid this, disable Fast Search. This may -result in longer search times. - -If you have any further questions, head over to our [support forum](https://forum.netduma.com/) and our team will be happy to help! diff --git a/content/frequently-asked-questions/general/_index.md b/content/frequently-asked-questions/general/_index.md new file mode 100644 index 0000000..363e7f9 --- /dev/null +++ b/content/frequently-asked-questions/general/_index.md @@ -0,0 +1,11 @@ +--- +title: General +cascade: + type: docs +--- + +{{< netduma/cards class="my-6" cols="6">}} + {{< netduma/card span="6" subtitle="General FAQs" >}} + {{< netduma/card-list >}} + {{< /netduma/card >}} +{{< /netduma/cards >}} \ No newline at end of file diff --git a/content/frequently-asked-questions/access-dumaos-from-device.md b/content/frequently-asked-questions/general/access-dumaos-from-device.md similarity index 99% rename from content/frequently-asked-questions/access-dumaos-from-device.md rename to content/frequently-asked-questions/general/access-dumaos-from-device.md index 8fb1fd3..1453b8e 100644 --- a/content/frequently-asked-questions/access-dumaos-from-device.md +++ b/content/frequently-asked-questions/general/access-dumaos-from-device.md @@ -1,6 +1,7 @@ --- title: Can I access DumaOS from a portable device? weight: 8 + --- Yes, the interface is browser based so it will work on any device with a browser. You can also download the DumaOS Mobile App from the [Play Store](https://play.google.com/store/apps/details?id=com.netdumasoftware.dumamobile&hl=en-US)/[App Store](https://apps.apple.com/gb/app/dumaos/id1532022492). diff --git a/content/frequently-asked-questions/access-point-mode.md b/content/frequently-asked-questions/general/access-point-mode.md similarity index 100% rename from content/frequently-asked-questions/access-point-mode.md rename to content/frequently-asked-questions/general/access-point-mode.md diff --git a/content/frequently-asked-questions/do-i-need-a-modem.md b/content/frequently-asked-questions/general/do-i-need-a-modem.md similarity index 100% rename from content/frequently-asked-questions/do-i-need-a-modem.md rename to content/frequently-asked-questions/general/do-i-need-a-modem.md diff --git a/content/frequently-asked-questions/how-to-purchase.md b/content/frequently-asked-questions/general/how-to-purchase.md similarity index 100% rename from content/frequently-asked-questions/how-to-purchase.md rename to content/frequently-asked-questions/general/how-to-purchase.md diff --git a/content/frequently-asked-questions/mobile-game-compatibility.md b/content/frequently-asked-questions/general/mobile-game-compatibility.md similarity index 100% rename from content/frequently-asked-questions/mobile-game-compatibility.md rename to content/frequently-asked-questions/general/mobile-game-compatibility.md diff --git a/content/frequently-asked-questions/netgear-customer-support.md b/content/frequently-asked-questions/general/netgear-customer-support.md similarity index 100% rename from content/frequently-asked-questions/netgear-customer-support.md rename to content/frequently-asked-questions/general/netgear-customer-support.md diff --git a/content/frequently-asked-questions/quicker-game-support-dumaos.md b/content/frequently-asked-questions/general/quicker-game-support-dumaos.md similarity index 100% rename from content/frequently-asked-questions/quicker-game-support-dumaos.md rename to content/frequently-asked-questions/general/quicker-game-support-dumaos.md diff --git a/content/frequently-asked-questions/wifi-vs-ethernet.md b/content/frequently-asked-questions/general/wifi-vs-ethernet.md similarity index 100% rename from content/frequently-asked-questions/wifi-vs-ethernet.md rename to content/frequently-asked-questions/general/wifi-vs-ethernet.md diff --git a/content/frequently-asked-questions/hybrid-vpn-dns-entries.md b/content/frequently-asked-questions/hybrid-vpn-dns-entries.md deleted file mode 100644 index 38039dd..0000000 --- a/content/frequently-asked-questions/hybrid-vpn-dns-entries.md +++ /dev/null @@ -1,44 +0,0 @@ ---- -title: DumaOS 3 - Why should I set DNS entries for Hybrid VPN? -weight: 14 ---- - -Whenever we use a VPN server to hide our network traffic, we are hiding our IP and encrypting our data. However, there's still the chance for an external "observer" ( eg. Netflix ) to notice that we are behind a VPN server and it could not allow the access to its services (eg. watching a film from the list of a specific nation).  - -When this happens, we are probably experiencing DNS leak. That is to say all of our traffic is correctly tunnelled **except** the DNS queries. - -To solve this problem, we have added a new section to Hybrid VPN whereby you can specify the DNS server that you want to use for the tunnelled traffic. By default, the tunnelled traffic uses the same nameservers as the non-tunnelled traffic. - -Before we do this, we've got to make sure of a couple of things: - -- If you have a DNS server already configured on your Desktop/Laptop, please either delete this or change it to use the DumaOS routers IP for DNS (192.168.77.1 OR 192.168.1.1). -- Disable IPv6 on your WAN interface from the DumaOS GUI. This can be found in Network Settings. The reason we do this is to ensure the R2 is only sending DNS requests over IPv4, this maintains the validity of our tests. - -## How do I know if I'm experiencing a DNS Leak? - -To see if you're experiencing a DNS Leak, check out [https://www.dnsleaktest.com/](https://www.dnsleaktest.com/). - -Using this website, you'll need to run two tests: - -- Connect to a VPN server of your choice in your VPN providers desktop client and use the default configuration for the DNS servers (tunnelled and not-tunnelled that use the same DNS), then run the DNS leak test. This test is helpful to verify whether we suffer of a DNS leak. -- Connect to a VPN server and set a specific DNS server for the tunnelled traffic from the Hybrid VPN page, then run the DNS leak test. If in the previous step we have detected a DNS leak, this test will prove that we've now resolved the issue. - -## How do I do this? - -To test if you've got a DNS leak and how you can resolve it, follow the below steps.  - -1. Make sure your PC is connected directly to a DumaOS powered router -2. Choose a nation you want to pretend to live in (let's suppose we've chosen Italy as nation) -3. Access the DumaOS interface and go to Hybrid VPN -4. Set a VPN server from Italy and enable the VPN -5. Go to [https://www.dnsleaktest.com](https://www.dnsleaktest.com) and run the extended test at least twice. -6. If the nation(s) of the DNS servers showed in the result page of the previous step are not in Italy then we are likely dealing with a DNS leak. -7. Go on your favourite search engine and search for: "DNS server Italy" (Or whichever nation the VPN server you've chosen is located in. -8. Get the IP address of a server with a high reliability. -9. Ping the IP address chosen to be sure the server is up. -10. Go to the Hybrid VPN page. -11. Leave the previous configuration, just specify a DNS server in the field provided by the UI. -12. Go to [https://www.dnsleaktest.com](https://www.dnsleaktest.com) and run the extended test at least twice. -13. If the nation of the DNS servers showed in the result page of the previous step is now the country your VPN server is based in, we've now resolved the DNS leak. - -If you have any further questions or experienced any difficulty in testing/resolving your DNS leak, please create a new topic in the relevant sub-forum over at forums.netduma.com diff --git a/content/frequently-asked-questions/legacyfaqs/_index.md b/content/frequently-asked-questions/legacyfaqs/_index.md index 452ba14..327575b 100644 --- a/content/frequently-asked-questions/legacyfaqs/_index.md +++ b/content/frequently-asked-questions/legacyfaqs/_index.md @@ -1,6 +1,11 @@ --- title: Legacy FAQ -weight: 99 +cascade: + type: docs --- -Legacy or not relevant Frequently Asked Questions. \ No newline at end of file +{{< netduma/cards class="my-6" cols="6">}} + {{< netduma/card span="6" title="Legacy" icon="dumaos4" subtitle="Legacy or not relevant Frequently Asked Questions." >}} + {{< netduma/card-list >}} + {{< /netduma/card >}} +{{< /netduma/cards >}} diff --git a/content/frequently-asked-questions/legacyfaqs/dumaos-on-the-netduma-r1/_index.md b/content/frequently-asked-questions/legacyfaqs/dumaos-on-the-netduma-r1/_index.md index b601387..f1b2c29 100644 --- a/content/frequently-asked-questions/legacyfaqs/dumaos-on-the-netduma-r1/_index.md +++ b/content/frequently-asked-questions/legacyfaqs/dumaos-on-the-netduma-r1/_index.md @@ -1,6 +1,5 @@ --- title: DumaOS on the Netduma R1 -weight: 99 --- Frequently Asked Questions section for the Netduma R1. \ No newline at end of file diff --git a/content/frequently-asked-questions/legacyfaqs/share-excess.md b/content/frequently-asked-questions/legacyfaqs/share-excess.md deleted file mode 100644 index d8f5803..0000000 --- a/content/frequently-asked-questions/legacyfaqs/share-excess.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: DumaOS 3 - What does ‘Share Excess’ do? ---- - -Share Excess automatically allocates any unused bandwidth to a device that needs it. Unchecking Share Excess caps the percentage allocated to each device, preventing unneeded bandwidth from being shared across your network. We recommend you keep this option checked. - -If you have any further questions, head over to our [support forum](https://forum.netduma.com/) and our team will be happy to help! diff --git a/content/frequently-asked-questions/strict-mode.md b/content/frequently-asked-questions/strict-mode.md deleted file mode 100644 index 86dcae4..0000000 --- a/content/frequently-asked-questions/strict-mode.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -title: What is Strict Mode? -weight: 9 ---- - -Strict Mode guarantees that dedicated servers outside of your filter range will always be blocked. This should be ticked when searching in most games. Previously, it was necessary to have this disabled in Destiny, but since Bungie’s upgrade to server-based matchmaking you can now leave this enabled. - -If you have any further questions, head over to our [support forum](https://forum.netduma.com) and our team will be happy to help! diff --git a/content/platforms/_index.md b/content/platforms/_index.md new file mode 100644 index 0000000..673cd53 --- /dev/null +++ b/content/platforms/_index.md @@ -0,0 +1,76 @@ +--- +title: Platforms +weight: 1 +toc: false +breadcrumbs: false +type: netduma-wide +--- + +{{< netduma/cards cols="6" class="mt-6">}} + {{< netduma/card + span="3" + title="Netduma R3" + subtitle="Firmwares, FAQs and Guides for the Netduma R3" + image="/images/R3-Render.png" + imageClass="pt-4 px-4" + >}} + {{< netduma/card-links >}} + {{< netduma/card-link title="Firmwares" link="netduma-r3/firmware" >}} + {{< netduma/card-link title="DumaOS 4 FAQs" link="/frequently-asked-questions/dumaos-4/" >}} + {{< netduma/card-link title="DumaOS 4 Guides" link="/docs/dumaos-4/" >}} + {{< /netduma/card-links >}} + {{< netduma/button link="/platforms/netduma-r3" buttonColor="primary" text="View More" >}} + {{< /netduma/card >}} + {{< netduma/card + span="3" + title="Netduma R2" + subtitle="Firmwares, FAQs and Guides for the Netduma R2. A user manual is also available" + image="/images/R2-Render.png" + imageClass="pt-4 px-4" + >}} + {{< netduma/card-links >}} + {{< netduma/card-link title="Firmwares" link="netduma-r2/firmware" >}} + {{< netduma/card-link title="User Manual" link="netduma-r2/user-manual" >}} + {{< netduma/card-link title="DumaOS 3 FAQs" link="/frequently-asked-questions/dumaos-3/" >}} + {{< /netduma/card-links >}} + {{< netduma/button link="/platforms/netduma-r2" buttonColor="primary" text="View More" >}} + {{< /netduma/card >}} + {{< netduma/card + span="2" + title="Telstra Modem" + subtitle="We recommend using Telstra's dedicated customer support" + >}} + {{< netduma/card-links >}} + {{< netduma/card-link title="Telstra Support" link="https://www.telstra.com.au/support" >}} + {{< netduma/card-link title="Telstra Internet Optimiser Guide" link="https://www.telstra.com.au/internet-optimiser-user-guide" >}} + {{< /netduma/card-links >}} + {{< netduma/button link="/platforms/telstra" buttonColor="primary" text="View More" >}} + {{< /netduma/card >}} + {{< netduma/card + span="2" + title="Netgear Nighthawk" + subtitle="Links to Netgear firmwares and User Manuals can be found below" + >}} + {{< netduma/card-links >}} + {{< netduma/card-link title="Firmwares" link="netgear-nighthawk/firmware/" >}} + {{< netduma/card-link title="User Manual" link="netgear-nighthawk/user-manual/" >}} + {{< netduma/card-link title="DumaOS 3 FAQs" link="/frequently-asked-questions/dumaos3/" >}} + {{< /netduma/card-links >}} + {{< netduma/button link="/platforms/netgear-nighthawk" buttonColor="primary" text="View More" >}} + {{< /netduma/card >}} + {{< netduma/card + span="2" + title="Netduma R1" + subtitle="Support for the legacy Netduma R1 is limited. Firmwares, User Manuals and FAQs can be found below." + link="" + >}} + {{< netduma/card-links >}} + {{< netduma/card-link title="Firmwares" link="netduma-r1/firmware" >}} + {{< netduma/card-link title="User Manual" link="netduma-r1/user-manual" >}} + {{< netduma/card-link title="DumaOS 3 FAQs" link="/frequently-asked-questions/dumaos3/" >}} + {{< /netduma/card-links >}} + {{< netduma/button link="/platforms/netduma-r1" buttonColor="primary" text="View More" >}} + {{< /netduma/card >}} +{{< /netduma/cards >}} + +{{< netduma/need-help class="mt-16" >}} \ No newline at end of file diff --git a/content/platforms/netduma-r1/_index.md b/content/platforms/netduma-r1/_index.md new file mode 100644 index 0000000..40fca43 --- /dev/null +++ b/content/platforms/netduma-r1/_index.md @@ -0,0 +1,35 @@ +--- +title: Netduma R1 +weight: 1 +toc: false +breadcrumbs: false +cascade: + type: docs +--- + +{{< netduma/cards cols="6" class="mt-6">}} + {{< netduma/card + span="2" + title="DumaOS 3 FAQs" + subtitle="Frequently Asked Questions about DumaOS 3 on the Netduma R1" + image="/images/dumaos3-devicemanager.jpg" + >}} + {{< netduma/button icon="network-activity" buttonColor="primary" text="DumaOS 3 Guides" link="/docs/dumaos-3/" >}} + {{< /netduma/card >}} + {{< netduma/card + span="2" + title="User Manual" + subtitle="The Netduma R1 user manual" + >}} + {{< netduma/button buttonColor="primary" text="View User Manual" link="user-manual/" >}} + {{< /netduma/card >}} + {{< netduma/card + span="2" + title="Firmware" + >}} + {{< netduma/card-links >}} + {{< netduma/card-link title="Release Notes" link="firmware/" >}} + {{< /netduma/card-links >}} + {{< netduma/button link="https://www.dropbox.com/scl/fi/3oyu8bkh73fk3pifm91w7/DumaOS-R1-3.0.207.sig?rlkey=vxfqqh5n67yjsq685yijmd8zc&e=1&dl=0" buttonColor="primary" text="V.3.0.207" >}} + {{< /netduma/card >}} +{{< /netduma/cards >}} \ No newline at end of file diff --git a/content/platforms/netduma-r1/firmware.md b/content/platforms/netduma-r1/firmware.md new file mode 100644 index 0000000..679ebeb --- /dev/null +++ b/content/platforms/netduma-r1/firmware.md @@ -0,0 +1,58 @@ +--- +title: Netduma R1 Firmwares +linkTitle: Firmwares +--- + +

Releases

+
+
+
+ {{< netduma/button link="https://www.dropbox.com/s/8z4kcynmo3glplp/DumaOS-R1-3.0.207.sig?dl=0" buttonColor="primary" text="v.3.0.207" >}} + 02/01/2024 +
+
+ Current Firmware +
+
+
+
+ {{< netduma/button link="https://www.dropbox.com/s/bzep9jc2b8wzgrh/dumaos-2.1.3.29.sig?dl=0" buttonColor="primary" text="v.2.1.3.29" >}} + 02/01/2024 +
+
+
Ping
+
    +
  • Assist v2: it’s back and it’s better than ever. Ping Assist lets low ping hosts to connect to you even if they are outside your Geo-Filter limit, helping you to quickly find high quality, low ping games.
  • +
+
Hybrid VPN
+
    +
  • Apply your VPN to your entire network and also choose the devices and applications you want to put through your VPN using DumaOS Deep Packet Inspection.
  • +
+
Advanced Ping
+
    +
  • Stats: see the Server (Host) Tickrate and Receive Rate, as well as your own Client Tickrate and Send Rate. This allows you to see the quality of your game’s connection in far more detail than ever before.
  • +
+
Device
+
    +
  • Manager Enhancements: shows every device on your Network and you can now view this as a sortable table, to give you easier administration.
  • +
+
Installation Instructions
+
    +
  • Go to your R1 interface (usually at 192.168.88.1)
  • +
  • In the top right corner, click the icon that looks like a clock with a circular arrow around it. (Pre-DumaOS, go to the Upgrade option in the left-hand menu)
  • +
  • Select the upgrade file from wherever you saved it onto your PC then click Upgrade.
  • +
  • It will take about 60 seconds for your R1 to upgrade, so please be patient. DO NOT POWER OFF YOUR ROUTER DURING THIS TIME
  • +
  • You should automatically be taken back to the interface. If this does not happen, check your PC hasn’t connected you to a different WiFi whilst the R1 was temporarily offline. The default login details are admin and password
  • +
+
+
+
+
+ {{< netduma/button link="https://www.dropbox.com/s/701ezvt4qmezdgu/R1-v-1-03-6j.sig?dl=0" buttonColor="primary" text="v.1.03.6j" >}} + 02/01/2024 +
+
+ Release firmware +
+
+
\ No newline at end of file diff --git a/content/platforms/netduma-r1/user-manual.md b/content/platforms/netduma-r1/user-manual.md new file mode 100644 index 0000000..1fd388e --- /dev/null +++ b/content/platforms/netduma-r1/user-manual.md @@ -0,0 +1,8 @@ +--- +title: Netduma R1 User Manual +linkTitle: User Manual +--- + +{{< pdf "user-manual/DumaOS_R1_User_Manual.pdf" >}} + +{{< netduma/button download="DumaOS_R1_User_Manual.pdf" buttonColor="primary" text="R1 Manual Download" class="mt-4" >}} \ No newline at end of file diff --git a/content/platforms/netduma-r1/user-manual/DumaOS_R1_User_Manual.pdf b/content/platforms/netduma-r1/user-manual/DumaOS_R1_User_Manual.pdf new file mode 100644 index 0000000..3db6883 Binary files /dev/null and b/content/platforms/netduma-r1/user-manual/DumaOS_R1_User_Manual.pdf differ diff --git a/content/platforms/netduma-r2/_index.md b/content/platforms/netduma-r2/_index.md new file mode 100644 index 0000000..1febcde --- /dev/null +++ b/content/platforms/netduma-r2/_index.md @@ -0,0 +1,35 @@ +--- +title: Netduma R2 +weight: 1 +toc: false +breadcrumbs: false +cascade: + type: docs +--- + +{{< netduma/cards cols="6" class="mt-6">}} + {{< netduma/card + span="2" + title="DumaOS 3 FAQs" + subtitle="Frequently Asked Questions about DumaOS 3 on the Netduma R2" + image="/images/dumaos3-devicemanager.jpg" + >}} + {{< netduma/button icon="network-activity" buttonColor="primary" text="DumaOS 3 Guides" link="/docs/dumaos-3/" >}} + {{< /netduma/card >}} + {{< netduma/card + span="2" + title="User Manual" + subtitle="The Netduma R2 user manual" + >}} + {{< netduma/button buttonColor="primary" text="View User Manual" link="user-manual/" >}} + {{< /netduma/card >}} + {{< netduma/card + span="2" + title="Firmware" + >}} + {{< netduma/card-links >}} + {{< netduma/card-link title="Release Notes" link="firmware/" >}} + {{< /netduma/card-links >}} + {{< netduma/button link="https://forum.netduma.com/topic/50710-new-r2-firmware-33280/" buttonColor="primary" text="v.3.3.280" >}} + {{< /netduma/card >}} +{{< /netduma/cards >}} \ No newline at end of file diff --git a/content/platforms/netduma-r2/firmware.md b/content/platforms/netduma-r2/firmware.md new file mode 100644 index 0000000..d485167 --- /dev/null +++ b/content/platforms/netduma-r2/firmware.md @@ -0,0 +1,187 @@ +--- +title: Netduma R2 Firmwares +linkTitle: Firmwares +--- + +

Releases

+
+
+
+ {{< netduma/button link="https://forum.netduma.com/topic/50710-new-r2-firmware-33280/" buttonColor="primary" text="v.3.3.280" >}} + 20/03/2023 +
+
+
    +
  • Wider range of games and applications supported by DumaOS (and more to come!).
  • +
  • Hybrid VPN no longer experiences issues when switching between Wireguard and OpenVPN.
  • +
  • DNS settings for Hybrid VPN are now retained after reboot.
  • +
  • Fixed an issue where replacing a faulty config file for Hybrid VPN would cause functionality issues.
  • +
  • OpenVPN logs are no longer deleted when the VPN is disabled.
  • +
  • Various other fixes to Hybrid VPN functionality and stability.
  • +
  • IPv6 traffic is now always categorised by QoS, allowing QoS to interact with it more reliably.
  • +
  • Ping Heatmap no longer crashes if pinging an empty server group.
  • +
  • Improvements to overall DumaOS stability, reducing cases where users see random reboots or disconnections.
  • +
  • Numerous security improvements.
  • +
+
+
+
+
+ {{< netduma/button link="https://forum.netduma.com/topic/39522-new-r2-firmware-32453/" buttonColor="primary" text="v3.2.453" >}} + 09/06/2022 +
+
+
Mobile View
+
    +
  • New priority boost button - lets you temporarily prioritise any traffic type
  • +
  • New Ping Optimiser feature - which finds the best QoS settings for your home
  • +
  • Revamped Connection Benchmark to split out into a separate Speedtest and Ping Test
  • +
+
    +
  • Support for Work From Home protocols
  • +
  • Added Data History
  • +
  • Connection Benchmark upload result no longer affected by Congestion Control
  • +
  • Added Hybrid-VPN fixes
  • +
  • System-wide websocket improvements
  • +
  • Setup process uses both desktop and mobile view to automatically configure more of DumaOS
  • +
  • System-wide improvements to CPU and memory usage
  • +
  • Ping Heatmap front-end fixes
  • +
  • Improved stability of back-end processes
  • +
  • Improved clean-up process system-wide on shutdown
  • +
  • Improved wireless stability
  • +
+
+
+
+
+ {{< netduma/button link="https://www.dropbox.com/s/ctjppykaasmorxp/DumaOS-R2-3.0.394.sig?dl=0" buttonColor="primary" text="v3.0.394" >}} + 02/01/2024 +
+
+
    +
  • Added support for Wireguard in Hybrid VPN
  • +
  • Added ability to use specific IPv4/IPv6 DNS in HybridVPN
  • +
  • Fixed issue with DHCP service crashing
  • +
  • Added better backend flash usage monitoring for preventing long-term issues
  • +
  • Added improved configuration system allowing for faster and more stable integration of new features
  • +
  • Fixed issue where Wi-Fi password wouldn’t match label after reset
  • +
  • Multiple security improvements
  • +
  • Fixed ‘Rapps not loading’ issue (Big thanks to @pollutionblues for all his help troubleshooting this)
  • +
  • Fixed Hybrid VPN DNS leak issue
  • +
  • System-wide GUI improvements
  • +
  • Added cloud gaming and Work From Home categorisations for QoS
  • +
  • Added VLAN Support
  • +
  • Added Public IP viewable on Network Status panel - can be toggled on/off
  • +
  • Added Set Home by address on Geo-Filter
  • +
  • Added a Report button to the ping panel - use this to report an abnormal ping, incorrect server type, server required for online play or other (e.g. incorrect location) direct from the Geo-Filter
  • +
  • Added Resync button to Device Manager
  • +
  • Changed Device Manager Table View panel order
  • +
  • Network Monitor Category Breakdown viewable by default
  • +
+
+
+
+
+ {{< netduma/button link="https://www.dropbox.com/s/49gt1wxva9rxame/DumaOS-R2-3.0.205.sig?dl=0" buttonColor="primary" text="v3.0.205" >}} + 02/01/2024 +
+
+
    +
  • System-wide GUI improvements to both cosmetics and Security
  • +
  • Increase DHCP cache size to 10000 avoiding DHCP being filled up with only 1500 requests
  • +
  • Improved wireless devices Traffic Prioritisation
  • +
  • Fixed IPv6 devices not being assigned a DHCP IP sometimes
  • +
  • Fixes for DumaOS webserver for GUI to operate smoothly
  • +
  • Improve DPI detection services
  • +
  • Improved Bandwidth Allocation backend
  • +
+
+
+
+
+ {{< netduma/button link="https://www.dropbox.com/s/1krvgqi4peslusv/DumaOS-R2-3.0.179.sig?dl=0" buttonColor="primary" text="v3.0.179" >}} + 02/01/2024 +
+
+
General Improvements
+
    +
  • System-wide GUI improvements.
  • +
  • Memory usage improvements.
  • +
  • Added new Copy to Clipboard button for information generated by Rapp Performance and Device Manager > Wi-Fi Scan (also a new addition)
  • +
  • Fixed initial tour throwing errors if ‘Next’ clicked too early
  • +
  • Fixed various issues with upgrade process
  • +
  • Fixed various vulnerabilities
  • +
+
Wi-Fi Improvements
+
    +
  • Improved Wi-Fi band steering
  • +
  • Improved Wi-Fi range coverage
  • +
  • Fixed Wi-Fi settings not preserving on firmware upgrades
  • +
  • Fixed Wi-Fi station details displaying incorrectly if the device is disconnected
  • +
  • Fixed 5GHz channel not starting correctly when splitting the channels
  • +
  • Added auto Wi-Fi channel detection, picking the least noisy Wi-Fi channel to achieve better results
  • +
  • Added Wi-Fi channel width setting for greater control
  • +
  • Added Wi-Fi region setup to the setup wizard
  • +
  • Added Wi-Fi radar detection DFS channels
  • +
  • Added Wi-Fi Performance feature to devices
  • +
  • Added Wi-Fi Scan feature
  • +
  • Added more Wi-Fi stations information for better debugging
  • +
+
Ping Heatmap
+
    +
  • Fixed Ping Heatmap displaying multiple graphs when spam-clicking
  • +
+
QoS
+
    +
  • Congestion Control Auto-Setup is now less aggressive - users should see improved results
  • +
  • Improved QoS Stability
  • +
  • QoS now loads quicker on start-up
  • +
  • Fixed QoS not always loading correctly
  • +
  • Fixed QoS crashes and stability issues
  • +
  • Fixed Congestion Control Auto-Setup layout issues when zoomed in
  • +
  • Fixed “Applying Settings” popup appearing when Auto-Setup loads/li> +
  • Fixed Congestion Control Auto-Setup button
  • +
  • Fixed Auto-Setup not always setting the slider
  • +
  • Fixed incorrect padding around auto-setup bars
  • +
  • Fixed Auto-Setup throttling below 1%
  • +
+
Connection Benchmark
+
    +
  • Fixed issues with Speed Test when WAN is disconnected
  • +
  • Fixed Ping Under Load test not working correctly
  • +
+
Device Manager
+
    +
  • Device status will update between online and offline much faster
  • +
  • Fixed Device Manager crashes
  • +
  • Fixed Device Manager spam messages about device status
  • +
  • Fixed issue where devices sometimes have no name
  • +
  • Fixed issue when adding a new device causing Rapps to fail
  • +
+
Traffic Controller
+
    +
  • Fixed Traffic Controller causing DumaOS to fail loading
  • +
+
Network Settings
+
    +
  • Fixed MAC cloning to update the device interface correctly
  • +
  • Removed MAC address cloning toggle, added reset button
  • +
  • Added more special characters for Wi-Fi password entry
  • +
+
Misc
+
    +
  • Updated to use new multi-threaded webserver for faster GUI loading
  • +
+
Installation instructions
+
    +
  • Download the file above
  • +
  • Open DumaOS at 192.168.77.1 or /dumaos/
  • +
  • Click the three dots in the top right of the interface
  • +
  • Click Update
  • +
  • Click ‘Select Upgrade File’ and choose the file you just downloaded
  • +
  • Click ‘Upgrade’ and wait about 5 minutes for the update to apply
  • +
  • Do not unplug your unit during this time!
  • +
+
+
+
\ No newline at end of file diff --git a/content/platforms/netduma-r2/user-manual.md b/content/platforms/netduma-r2/user-manual.md new file mode 100644 index 0000000..eefd879 --- /dev/null +++ b/content/platforms/netduma-r2/user-manual.md @@ -0,0 +1,8 @@ +--- +title: Netduma R2 User Manual +linkTitle: User Manual +--- + +{{< pdf "user-manual/R2_V3_User_Manual_CMYK.pdf" >}} + +{{< netduma/button download="R2_V3_User_Manual_CMYK.pdf" buttonColor="primary" text="R2 Manual Download" class="mt-4" >}} diff --git a/content/platforms/netduma-r2/user-manual/R2_V3_User_Manual_CMYK.pdf b/content/platforms/netduma-r2/user-manual/R2_V3_User_Manual_CMYK.pdf new file mode 100644 index 0000000..6bb8b70 Binary files /dev/null and b/content/platforms/netduma-r2/user-manual/R2_V3_User_Manual_CMYK.pdf differ diff --git a/content/platforms/netduma-r3/_index.md b/content/platforms/netduma-r3/_index.md new file mode 100644 index 0000000..175072d --- /dev/null +++ b/content/platforms/netduma-r3/_index.md @@ -0,0 +1,44 @@ +--- +title: Netduma R3 +weight: 1 +toc: false +breadcrumbs: false +cascade: + type: docs +--- + +
+
+ DumaOS 4 +
+
+
Our most powerful gaming router yet, the Netduma R3 is packed with gaming features built to empower your play. With vivid customisable RGB, superfast Wi-Fi 6 and next-level ping optimisation, the R3 is the perfect device to reduce lag and stabilise your gameplay.
+
+
+ +{{< netduma/cards cols="6">}} + {{< netduma/card + span="2" + title="DumaOS 4 FAQs" + subtitle="Frequently Asked Questions about DumaOS 4 on the Netduma R3" + image="/images/dumaos4-devicemanager.jpg" + >}} + {{< netduma/button icon="network-activity" buttonColor="primary" text="View all FAQs" link="/docs/dumaos-4/" >}} + {{< /netduma/card >}} + {{< netduma/card + span="2" + title="DumaOS 4 Guides" + subtitle="The latest version of DumaOS, featuring groundbreaking new features like SmartBOOST and Geo-Filter 2.0." + >}} + {{< netduma/button buttonColor="primary" text="View all Guides" link="/docs/dumaos-4/" >}} + {{< /netduma/card >}} + {{< netduma/card + span="2" + title="Firmware" + >}} + {{< netduma/card-links >}} + {{< netduma/card-link title="Release Notes" link="/platforms/netduma-r3/firmware/" >}} + {{< /netduma/card-links >}} + {{< netduma/button link="https://forum.netduma.com/topic/58012-new-r3-firmware-dumaos-40540/" buttonColor="primary" text="v.4.0.540" >}} + {{< /netduma/card >}} +{{< /netduma/cards >}} \ No newline at end of file diff --git a/content/platforms/netduma-r3/firmware.md b/content/platforms/netduma-r3/firmware.md new file mode 100644 index 0000000..761655a --- /dev/null +++ b/content/platforms/netduma-r3/firmware.md @@ -0,0 +1,158 @@ +--- +title: Netduma R3 Firmwares +linkTitle: Firmwares +--- + +The Netduma R3 has an automatic update system which will appear on the DumaOS frontend whenever a new firmware is available for you. If you wish to download a firmware manually or return to an older version, you can download the files below. + +The manual upgrade tool can be found in the Troubleshooting section of Settings. + +

Releases

+
+
+
+ {{< netduma/button link="https://forum.netduma.com/topic/58012-new-r3-firmware-dumaos-40540/" buttonColor="primary" text="v.4.0.540" >}} + 04/02/2025 +
+
+
    +
  • + Behavioural Identification a new feature which identifies traffic based on the way it behaves. This allows us to categorise and prioritise traffic which hasn't yet been added to our DPI database, ensuring day one support for new games. It can also assume and categorise encrypted traffic based on the way that it behaves, which means that, for the first time ever, we can prioritise Gaming, Streaming and Video Calls even while you're using a VPN +
  • +
  • + New Themes have been added to DumaOS, you can now pick from Traditional Red, Gamer Green, Baby Blue or Cherry Pink +
  • +
  • + WPS Support has been added. Press the WPS button on the back of your R3 to start pairing mode for 2 minutes. +
  • +
  • + Translations have been added to the UI, you can now set your DumaOS to Chinese, Dutch, Spanish, French, Hungarian, Italian, Polish, Portuguese, Turkish and German. +
      +
    • + If there are any incorrect translations, you can report them in the change language page. +
    • +
    +
  • +
  • + LAN Disconnections have been fixed, you shouldn’t be getting random drop-outs for wired devices anymore. +
  • +
  • + Ping Optimiser has been overhauled and should be quicker and more stable than before. +
  • +
  • + WiFi Auto Channel Selection has been improved, you'll get better speeds over WiFi. +
  • +
  • + PPPoE VLAN compatibility has been fixed, you can now use both PPPoE login and VLAN tags at the same time and everything will work. +
  • +
  • + Memory leaks have been fixed, your unit should no longer have to restart because of memory build up. +
  • +
  • + LAN IPs were sometimes not being assigned before, this is fixed now. +
  • +
  • + Many various frontend fixes. +
  • +
  • + Various Stability and Security Fixes +
  • +
+
+
+
+
+ {{< netduma/button link="https://forum.netduma.com/topic/57039-new-r3-firmware-dumaos-40290/" buttonColor="primary" text="v.4.0.290" >}} + 02/10/2024 +
+
+
Geo-Filter 2.0 improvements
+
    +
  • You can now set your Geo-Filter radius using countries through the custom Geo-Filter radius.
  • +
  • Improved reliability of getting games inside your radius
  • +
+
Memory usage improvements
+
    +
  • Improvements made to fix issues with the UI not loading
  • +
+ Bugfix for SmartBOOST causing loss of total bandwidth speed over time.
+
+
+
+
+ {{< netduma/button link="https://forum.netduma.com/topic/56107-new-r3-firmware-40236/" buttonColor="primary" text="v.4.0.236" >}} + 09/07/2024 +
+
+
    +
  • Improvements to Geo-Filter stability
  • +
  • SmartBOOST compatibility with VLAN improved
  • +
  • VLAN stability improved
  • +
  • YouTube detection fixed
  • +
  • Memory usage improvements
  • +
  • Improvements to IPv6 support
  • +
  • IPv6 disabled by default after Factory Reset
  • +
  • Steady Ping Expert Mode fixed
  • +
  • Steady Ping disabled by default after Factory Reset
  • +
  • Many small frontend improvements
  • +
+
+
+
+
+ {{< netduma/button link="https://forum.netduma.com/applications/core/interface/file/attachment.php?id=41720&key=c7ef49cfa27931fba39babdc31adb17f" buttonColor="primary" text="v.4.0.219" >}} + 05/06/2024 +
+
+
    +
  • Hybrid-VPN added
  • +
  • Improved performance of SmartBOOST
  • +
  • Improved performance of Steady Ping
  • +
  • Improved performance of Geo-Filter
  • +
  • Ping graph appears more frequently
  • +
  • Ping Optimiser reliability improvements
  • +
  • Chromecast/AirPlay compatibility fixed
  • +
  • UPnP relay added (no more double NAT)
  • +
  • Increased maximum speeds
  • +
  • Improved compatibility with IPv6 and PPPoE
  • +
  • Optimisations to improve memory usage
  • +
  • Many other smaller bug fixes
  • +
+
+
+
+
+ {{< netduma/button link="https://drive.google.com/file/d/1hoOdOxJ9Ve9JZB1yUOiLcLqRlJnL5-bp/view?usp=sharing" buttonColor="primary" text="v.4.0.21" >}} + 02/01/2024 +
+
+
    +
  • VLAN compatibility fixed
  • +
+
+
+
+
+ {{< netduma/button link="https://drive.google.com/file/d/19glLDdlx-Nb1k9MB5GifHMIvyvJvfDTn/view?usp=sharing" buttonColor="primary" text="v.4.0.19" >}} + 02/01/2024 +
+
+
    +
  • PPPoE Credentials can now be entered in Setup Wizard without issue
  • +
  • Setup Wizard can now be completed without WAN access
  • +
  • Small frontend improvements, styling fixes
  • +
+
+
+
+
+ {{< netduma/button link="https://drive.google.com/file/d/11j913tnodzS5TKASdxtKpBI4KQ_no1ec/view?usp=sharing" buttonColor="primary" text="v.4.0.16" >}} + 02/01/2024 +
+
+
    +
  • Launch firmware
  • +
+
+
+
\ No newline at end of file diff --git a/content/platforms/netgear-nighthawk/_index.md b/content/platforms/netgear-nighthawk/_index.md new file mode 100644 index 0000000..d010e55 --- /dev/null +++ b/content/platforms/netgear-nighthawk/_index.md @@ -0,0 +1,25 @@ +--- +title: Netgear Nighthawk +weight: 1 +toc: false +breadcrumbs: false +cascade: + type: docs +--- + +{{< netduma/cards cols="6" class="mt-6">}} + {{< netduma/card + span="2" + title="User Manual" + subtitle="User manuals for DumaOS compatible Netgear Nighthawk routers" + >}} + {{< netduma/button buttonColor="primary" text="View" link="user-manual" >}} + {{< /netduma/card >}} + {{< netduma/card + span="2" + title="Firmware" + subtitle="Netgear Nighthawk firmwares are available for a range of routers: XR300, XR450, XR500, XR700 and XR1000 (v1 and v2)." + >}} + {{< netduma/button link="firmware" buttonColor="primary" text="View Firmwares" >}} + {{< /netduma/card >}} +{{< /netduma/cards >}} \ No newline at end of file diff --git a/content/platforms/netgear-nighthawk/firmware.md b/content/platforms/netgear-nighthawk/firmware.md new file mode 100644 index 0000000..de1bd81 --- /dev/null +++ b/content/platforms/netgear-nighthawk/firmware.md @@ -0,0 +1,42 @@ +--- +title: NETGEAR Nighthawk Firmwares +linkTitle: Firmwares +weight: 8 +--- + +Most of the time you will be able to upgrade your NETGEAR Nighthawk Pro Gaming Router using the built in automatic update tool. However there are some scenarios where you may need to manually download and install a firmware. + +## Installation steps + +{{< callout icon="r3" >}} + Please see the link below for a guide on how to update the firmware on your Netgear Nighthawk Pro Gaming Router. +{{< /callout >}} + +{{< netduma/button class="mt-6" buttonColor="primary" text="Netgear Nighthawk firmware upgrade guide" link="https://kb.netgear.com/23442/How-do-I-update-the-firmware-on-my-NETGEAR-router-with-a-web-browser" >}} + +## Downloading the firmware files + +Download the correct firmware files for your unit. These will contain the model number in the title (xr1000 or xr1000v2) and will be in .chk format. Do not attempt to install any firmwares which are not specifically intended for your unit. + +Official firmware files can be downloaded directly from Netgear below + +{{< callout icon="r3" >}} + Please ensure you determine and download the correct version for your XR1000 +{{< /callout >}} + +### Determining your Netgear Nighthawk XR1000 Version +There are two versions of the XR1000 on the market. They are identical in terms of functionality, but some of the internal components were changed. Because of this, they require separate firmware files. + +Log onto DumaOS in your browser by visiting routerlogin.net while connected to your home network. The version number at the top right of the screen will either say "xr1000" or "xr1000v2". Make a note of this. + +![versionnumber.png](../netgear-nighthawk/versionnumber.png) +
+
+ {{< netduma/button buttonColor="primary" text="XR1000 Firmware" link="https://www.netgear.com/support/product/xr1000/#download" >}} + {{< netduma/button buttonColor="primary" text="XR1000 V2 Firmware" link="https://www.netgear.com/support/product/xr1000v2/#download" >}} +
+ {{< netduma/button buttonColor="primary" text="XR700 Firmware" link="https://www.netgear.com/support/product/xr700/#download" >}} + {{< netduma/button buttonColor="primary" text="XR500 Firmware" link="https://www.netgear.com/support/product/xr500/#download" >}} + {{< netduma/button buttonColor="primary" text="XR450 Firmware" link="https://www.netgear.com/support/product/xr450/#download" >}} + {{< netduma/button buttonColor="primary" text="XR300 Firmware" link="https://www.netgear.com/support/product/xr300/#download" >}} +
\ No newline at end of file diff --git a/content/firmwares/netgear-xr1000/upgradeclicks.png b/content/platforms/netgear-nighthawk/netgear-nighthawk/upgradeclicks.png similarity index 100% rename from content/firmwares/netgear-xr1000/upgradeclicks.png rename to content/platforms/netgear-nighthawk/netgear-nighthawk/upgradeclicks.png diff --git a/content/firmwares/netgear-xr1000/versionnumber.png b/content/platforms/netgear-nighthawk/netgear-nighthawk/versionnumber.png similarity index 100% rename from content/firmwares/netgear-xr1000/versionnumber.png rename to content/platforms/netgear-nighthawk/netgear-nighthawk/versionnumber.png diff --git a/content/platforms/netgear-nighthawk/user-manual.md b/content/platforms/netgear-nighthawk/user-manual.md new file mode 100644 index 0000000..55adfae --- /dev/null +++ b/content/platforms/netgear-nighthawk/user-manual.md @@ -0,0 +1,18 @@ +--- +title: NETGEAR Nighthawk User Manuals +linkTitle: User Manuals +--- + +Most of the time you will be able to upgrade your NETGEAR Nighthawk Pro Gaming Router using the built in automatic update tool. However there are some scenarios where you may need to manually download and install a firmware. + +
+ {{< netduma/button buttonColor="primary" text="XR300 User Manual" link="https://www.downloads.netgear.com/files/GDC/XR300/XR300_UM_EN.pdf" >}} + {{< netduma/button buttonColor="primary" text="XR450 User Manual" link="https://www.downloads.netgear.com/files/GDC/XR450/XR450_UM_EN.pdf" >}} + {{< netduma/button buttonColor="primary" text="XR500 User Manual" link="https://www.downloads.netgear.com/files/GDC/XR500/XR500_UM_EN.pdf" >}} + {{< netduma/button buttonColor="primary" text="XR700 User Manual" link="https://www.downloads.netgear.com/files/GDC/XR700/XR700_UM_EN.pdf" >}} + {{< netduma/button buttonColor="primary" text="XR1000 User Manual" link="https://www.downloads.netgear.com/files/GDC/XR1000/XR1000_UM_EN.pdf" >}} +
+
+ DumaOS 4 +
+
+
Telstra Internet Optimiser brings the power of DumaOS to your Telstra Smart Modem.
+
We recommend using Telstra’s dedicated customer support
+ {{< netduma/button class="mt-2" buttonColor="primary" text="Telsta Support" link="https://www.telstra.com.au/support" >}} +
+
+ +{{< netduma/cards cols="6">}} + {{< netduma/card + span="4" + title="Telstra Support Links" + subtitle="Links for further Telstra support" + >}} + {{< netduma/card-links >}} + {{< netduma/card-link title="Telstra Support" link="https://www.telstra.com.au/support" >}} + {{< netduma/card-link title="Telstra Internet Optimiser Guide" link="https://www.telstra.com.au/internet-optimiser-user-guide" >}} + {{< netduma/card-link title="Internet Optimiser" link="https://www.telstra.com.au/internet/internet-optimiser" >}} + {{< /netduma/card-links >}} + {{< /netduma/card >}} + {{< netduma/card + span="2" + title="DumaOS 3 FAQs" + subtitle="Frequently Asked Questions about DumaOS 3 on the Telstra Modems" + image="/images/dumaos3-devicemanager.jpg" + >}} + {{< netduma/button icon="network-activity" buttonColor="primary" text="DumaOS 3 Guides" link="/docs/dumaos-3/" >}} + {{< /netduma/card >}} +{{< /netduma/cards >}} \ No newline at end of file diff --git a/data/icons.yaml b/data/icons.yaml new file mode 100644 index 0000000..fc93b62 --- /dev/null +++ b/data/icons.yaml @@ -0,0 +1,25 @@ +#brands +telstra-tonal: +telstra: +#hardware +r2: +r3: +telstra-router: +#dumaos +dumaos3: +dumaos4: +#features +geo-filter: +ping-heatmap: +smartboost: +adblocker: +device-manager: +network-activity: +#generic +grid: +firmware: +faq: +email: +forum: +youtube: +chevron: diff --git a/hugo.yaml b/hugo.yaml index 96a5028..a2e1d63 100644 --- a/hugo.yaml +++ b/hugo.yaml @@ -39,20 +39,17 @@ menu: - name: Guides pageRef: /docs weight: 1 - - name: Firmwares - pageRef: /firmwares + - name: Platforms + pageRef: /platforms weight: 2 - - name: FAQ + - name: FAQs pageRef: /frequently-asked-questions weight: 3 - - name: Contact - pageRef: /contact - weight: 4 - name: Forum ↗ url: "https://forum.netduma.com" - weight: 5 + weight: 4 - name: Search - weight: 7 + weight: 5 params: type: search diff --git a/layouts/netduma-wide/list.html b/layouts/netduma-wide/list.html new file mode 100644 index 0000000..5fc3a2a --- /dev/null +++ b/layouts/netduma-wide/list.html @@ -0,0 +1,13 @@ +{{ define "main" }} +
+ {{ partial "sidebar.html" (dict "context" . "disableSidebar" true) }} +
+
+ {{ if .Title }}

{{ .Title }}

{{ end }} +
+ {{ .Content }} +
+
+
+
+{{ end }} \ No newline at end of file diff --git a/layouts/netduma-wide/single.html b/layouts/netduma-wide/single.html new file mode 100644 index 0000000..81beaa1 --- /dev/null +++ b/layouts/netduma-wide/single.html @@ -0,0 +1,11 @@ +{{ define "main" }} +
+ single + {{ partial "sidebar.html" (dict "context" . "disableSidebar" true) }} +
+
+ {{ .Content }} +
+
+
+{{ end }} \ No newline at end of file diff --git a/layouts/partials/custom/footer.html b/layouts/partials/custom/footer.html index 09b301b..3fd0748 100644 --- a/layouts/partials/custom/footer.html +++ b/layouts/partials/custom/footer.html @@ -1,33 +1,59 @@ {{- if not .aboveVisible -}} -
+ {{- end -}} -2025

+

© Netduma Software Ltd 2025

- -
--> -
-

© Netduma Ltd 2024

-

© Netduma Software Ltd 2024

+
\ No newline at end of file diff --git a/layouts/partials/custom/head-end.html b/layouts/partials/custom/head-end.html index b47184f..51dcdb5 100644 --- a/layouts/partials/custom/head-end.html +++ b/layouts/partials/custom/head-end.html @@ -1,9 +1,61 @@ - + \ No newline at end of file diff --git a/layouts/shortcodes/netduma/button.html b/layouts/shortcodes/netduma/button.html new file mode 100644 index 0000000..7e4eb70 --- /dev/null +++ b/layouts/shortcodes/netduma/button.html @@ -0,0 +1,17 @@ +{{- $class := .Get "class" -}} +{{- $link := .Get "link" -}} +{{- $download := .Get "download" -}} +{{- $text := .Get "text" -}} +{{- $buttonColor := .Get "buttonColor" -}} + +{{- $external := hasPrefix $link "http" -}} +{{- $href := cond (hasPrefix $link "/") ($link | relURL) $link -}} + + + {{- $text -}} + \ No newline at end of file diff --git a/layouts/shortcodes/netduma/card-link.html b/layouts/shortcodes/netduma/card-link.html new file mode 100644 index 0000000..8db026a --- /dev/null +++ b/layouts/shortcodes/netduma/card-link.html @@ -0,0 +1,18 @@ +{{- $title := .Get "title" -}} +{{- $icon := .Get "icon" -}} +{{- $link := .Get "link" -}} + +{{- $external := hasPrefix $link "http" -}} +{{- $href := cond (strings.HasPrefix $link "/") ($link | relURL) $link -}} + +{{- if $link -}} + + {{ with $icon -}} + {{- partial "utils/icon.html" (dict "name" . "attributes" "class='size-5'") -}} + {{ end -}} + {{ $title }} + + +{{- end -}} \ No newline at end of file diff --git a/layouts/shortcodes/netduma/card-links.html b/layouts/shortcodes/netduma/card-links.html new file mode 100644 index 0000000..5ff5211 --- /dev/null +++ b/layouts/shortcodes/netduma/card-links.html @@ -0,0 +1,3 @@ +
+ {{ .Inner }} +
\ No newline at end of file diff --git a/layouts/shortcodes/netduma/card-list.html b/layouts/shortcodes/netduma/card-list.html new file mode 100644 index 0000000..b193397 --- /dev/null +++ b/layouts/shortcodes/netduma/card-list.html @@ -0,0 +1,40 @@ +{{- $section := .Get "section" -}} +{{- $subsection := .Get "subsection" -}} +{{- $limit := (.Get "limit" | default "0" | int) -}} + +{{- /* Build path, pick pages */ -}} +{{- $path := "" -}} +{{- if and $section $subsection -}} + {{- $path = printf "%s/%s" $section $subsection -}} +{{- else if $section -}} + {{- $path = $section -}} +{{- else if $subsection -}} + {{- $path = $subsection -}} +{{- end -}} + +{{- $pages := slice -}} +{{- if $path -}} + {{ with .Site.GetPage $path }} + {{- $pages = .RegularPagesRecursive -}} + {{ end }} +{{- else -}} + {{- $pages = .Page.RegularPagesRecursive -}} +{{- end -}} + +{{- /* Apply limit if requested */ -}} +{{- if gt $limit 0 -}} + {{- $pages = first $limit $pages -}} +{{- end -}} + +
+ {{- range $pages }} + + {{ .LinkTitle }} + + + + + {{- end }} +
\ No newline at end of file diff --git a/layouts/shortcodes/netduma/card.html b/layouts/shortcodes/netduma/card.html new file mode 100644 index 0000000..2904020 --- /dev/null +++ b/layouts/shortcodes/netduma/card.html @@ -0,0 +1,53 @@ +{{- $title := .Get "title" -}} +{{- $subtitle := .Get "subtitle" -}} +{{- $class := .Get "class" -}} +{{- $icon := .Get "icon" -}} +{{- $image := .Get "image" -}} +{{- $imageClass := .Get "imageClass" -}} +{{- $link := .Get "link" -}} +{{- $buttonLink := .Get "buttonLink" -}} +{{- $span := .Get "span" | default 1 -}} + +{{- $external := hasPrefix $link "http" -}} +{{- $href := cond (strings.HasPrefix $link "/") ($link | relURL) $link -}} + +{{- if hasPrefix $image "/" -}} + {{- $image = relURL (strings.TrimPrefix "/" $image) -}} +{{- end -}} + +{{- if $link -}} + +{{- else -}} +
+{{- end -}} + {{- with $image -}} + {{ $title }} + {{- end -}} +
+ {{- with $icon -}} + {{- partial "utils/icon.html" (dict "name" . "attributes" "class='size-9 text-text-secondary group-hover:text-primary-main transition-colors mb-2'") -}} + {{- end -}} +
+ {{- with $title -}} + {{- with $link -}} +
{{ $title }}
+ {{- else -}} +
{{ $title }}
+ {{- end -}} + {{- end -}} + {{- with $subtitle -}} +
{{ $subtitle | markdownify }}
+ {{- end -}} +
+ {{ .Inner }} +
+{{- if $link -}} +
+{{- else -}} +
+{{- end -}} \ No newline at end of file diff --git a/layouts/shortcodes/netduma/cards.html b/layouts/shortcodes/netduma/cards.html new file mode 100644 index 0000000..0d06548 --- /dev/null +++ b/layouts/shortcodes/netduma/cards.html @@ -0,0 +1,23 @@ +{{- $class := .Get "class" -}} +{{- $cols := .Get "cols" | default 3 -}} +{{- $gap := .Get "gap" | default 6 -}} +{{- $title := .Get "title" -}} + +{{- with $class -}} +
+{{- end -}} + {{- with $title -}} +
+
{{ $title }}
+ {{- end -}} + +
+ {{ .Inner }} +
+ + {{- with $title -}} +
+ {{- end -}} +{{ with $class -}} +
+{{- end -}} \ No newline at end of file diff --git a/layouts/shortcodes/netduma/grid-icon.html b/layouts/shortcodes/netduma/grid-icon.html new file mode 100644 index 0000000..c52c7e8 --- /dev/null +++ b/layouts/shortcodes/netduma/grid-icon.html @@ -0,0 +1,16 @@ +{{- $title := .Get "title" -}} +{{- $icon := .Get "icon" -}} +{{- $link := .Get "link" -}} + +{{- $external := hasPrefix $link "http" -}} +{{- $href := cond (strings.HasPrefix $link "/") ($link | relURL) $link -}} + + + {{ with $icon -}} + {{- partial "utils/icon.html" (dict "name" . "attributes" "class='size-12 text-text-secondary group-hover:text-primary-main transition-colors'") -}} + {{ end -}} +
{{ $title }}
+
\ No newline at end of file diff --git a/layouts/shortcodes/netduma/grid.html b/layouts/shortcodes/netduma/grid.html new file mode 100644 index 0000000..4eac6c2 --- /dev/null +++ b/layouts/shortcodes/netduma/grid.html @@ -0,0 +1,35 @@ +{{- $class := .Get "class" -}} +{{- $title := .Get "title" -}} +{{- $subtitle := .Get "subtitle" -}} +{{- $align := .Get "align" -}} +{{- $alignClass := .Get "align" -}} + +{{- if eq $align "left" }} + {{ $alignClass = "start" }} +{{ else if eq $align "right" }} + {{ $alignClass = "end" }} +{{ else if eq $align "center" }} + {{ $alignClass = "center" }} +{{ end -}} + +
+ +{{ with $title -}} +
+
{{ $title }}
+{{ end -}} + + +{{ with $subtitle -}} +

{{ $subtitle }}

+{{ end -}} + +
+ {{ .Inner }} +
+ +{{ with $title -}} +
+{{ end -}} + +
\ No newline at end of file diff --git a/layouts/shortcodes/netduma/hero-button.html b/layouts/shortcodes/netduma/hero-button.html deleted file mode 100644 index f3b771f..0000000 --- a/layouts/shortcodes/netduma/hero-button.html +++ /dev/null @@ -1,15 +0,0 @@ -{{- $link := .Get "link" -}} -{{- $text := .Get "text" -}} -{{- $style := .Get "style" -}} - -{{- $external := hasPrefix $link "http" -}} -{{- $href := cond (hasPrefix $link "/") ($link | relURL) $link -}} - - - {{- $text -}} - \ No newline at end of file diff --git a/layouts/shortcodes/netduma/need-help.html b/layouts/shortcodes/netduma/need-help.html new file mode 100644 index 0000000..e9ed26d --- /dev/null +++ b/layouts/shortcodes/netduma/need-help.html @@ -0,0 +1,22 @@ +{{- $class := .Get "class" -}} + +
+
+
Still need Help?
+

We are always available via email and via our support forums. Our friendly support team will answer any questions you have about Netduma, DumaOS or networking in general.

+ +
+
\ No newline at end of file diff --git a/layouts/shortcodes/netduma/tab.html b/layouts/shortcodes/netduma/tab.html new file mode 100644 index 0000000..1e17505 --- /dev/null +++ b/layouts/shortcodes/netduma/tab.html @@ -0,0 +1,13 @@ +{{- $defaultIndex := int ((.Parent.Get "defaultIndex") | default "0") -}} + +
+ {{- .Inner -}} +
+{{- /* Drop trailing newlines */ -}} \ No newline at end of file diff --git a/layouts/shortcodes/netduma/tabs.html b/layouts/shortcodes/netduma/tabs.html new file mode 100644 index 0000000..e171306 --- /dev/null +++ b/layouts/shortcodes/netduma/tabs.html @@ -0,0 +1,33 @@ +{{- $class := .Get "class" -}} +{{- $items := split (.Get "items") "," -}} +{{- $defaultIndex := int ((.Get "defaultIndex") | default "0") -}} + +{{- if not $items -}} + {{ errorf "no items provided" }} +{{- end -}} + +
+
+
+ {{- range $i, $item := $items -}} + + {{- end -}} +
+
+
+ {{- .Inner -}} +
+
+{{- /* Drop trailing newlines */ -}} \ No newline at end of file diff --git a/static/images/R2-Render.png b/static/images/R2-Render.png new file mode 100644 index 0000000..6abb430 Binary files /dev/null and b/static/images/R2-Render.png differ diff --git a/static/images/R3-Promo.webp b/static/images/R3-Promo.webp new file mode 100644 index 0000000..618ee50 Binary files /dev/null and b/static/images/R3-Promo.webp differ diff --git a/static/images/R3-Render.png b/static/images/R3-Render.png new file mode 100644 index 0000000..3a30a42 Binary files /dev/null and b/static/images/R3-Render.png differ diff --git a/static/images/dumaos-telstra.jpg b/static/images/dumaos-telstra.jpg new file mode 100644 index 0000000..9bcd6b2 Binary files /dev/null and b/static/images/dumaos-telstra.jpg differ diff --git a/static/images/dumaos3-devicemanager.jpg b/static/images/dumaos3-devicemanager.jpg new file mode 100644 index 0000000..f1f7991 Binary files /dev/null and b/static/images/dumaos3-devicemanager.jpg differ diff --git a/static/images/dumaos4-devicemanager.jpg b/static/images/dumaos4-devicemanager.jpg new file mode 100644 index 0000000..3463dae Binary files /dev/null and b/static/images/dumaos4-devicemanager.jpg differ diff --git a/static/images/telstra-render.png b/static/images/telstra-render.png new file mode 100644 index 0000000..a8f4e1c Binary files /dev/null and b/static/images/telstra-render.png differ