From 2332740b8f9d3629816a6672ef5e2b97f171cdd7 Mon Sep 17 00:00:00 2001 From: Raymond Douglas Date: Mon, 3 Sep 2018 15:20:14 -0700 Subject: [PATCH] ipcalc: add concrete values --- pages/linux/ipcalc.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pages/linux/ipcalc.md b/pages/linux/ipcalc.md index f8eb3e5666..d3f3633da1 100644 --- a/pages/linux/ipcalc.md +++ b/pages/linux/ipcalc.md @@ -4,20 +4,20 @@ - Show information about an address or network: -`ipcalc {{ip_address}} {{subnet_mask}}` +`ipcalc {{1.2.3.4}} {{255.255.255.0}}` - Show information about an address or network in CIDR notation: -`ipcalc {{ip_address}}/{{masked_bits}}` +`ipcalc {{1.2.3.4}}/{{24}}` - Show the broadcast address of an address or network: -`ipcalc -b {{ip_address}}/{{masked_bits}}` +`ipcalc -b {{1.2.3.4}}/{{30}}` - Show the network address of provided IP address and netmask: -`ipcalc -n {{ip_address}}/{{masked_bits}}` +`ipcalc -n {{1.2.3.4}}/{{24}}` - Display geographic information about a given IP address: -`ipcalc -g {{ip_address}}` +`ipcalc -g {{1.2.3.4}}`