diff options
| author | Yuval Adam <_@yuv.al> | 2025-05-09 13:31:32 +0200 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2025-05-09 13:31:32 +0200 |
| commit | ac6725e23396447c88cde7364c3bdc47a0a546de (patch) | |
| tree | a357b149aa226b5f82f67b11b87ecca57051e89b /src/content | |
| parent | 081e46c50e81c3d54dc7d53823002baf0df2048d (diff) | |
Add dynamic faq
Diffstat (limited to 'src/content')
| -rw-r--r-- | src/content/faqs.ts | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/content/faqs.ts b/src/content/faqs.ts new file mode 100644 index 0000000..390e1a2 --- /dev/null +++ b/src/content/faqs.ts @@ -0,0 +1,22 @@ +export const faqs = [ + { + q: "What is CIDR?", + a: "Classless Inter-Domain Routing (CIDR) is a compact way to write IP address ranges and their network masks." + }, + { + q: "Why is CIDR notation useful?", + a: "It lets network engineers allocate address space precisely, aggregate routes and keep routing tables smaller." + }, + { + q: "How is an IP address structured?", + a: "An IPv4 address consists of four 8-bit numbers (octets) ranging from 0 to 255, separated by dots." + }, + { + q: "What does the number after the slash mean?", + a: "The slash value (e.g. /24) shows how many bits belong to the network prefix; the rest identify individual hosts." + }, + { + q: "How does this calculator help?", + a: "Paste any IP/CIDR and it instantly shows netmask, broadcast address, usable host range and a visual bit map." + } +];
\ No newline at end of file |
