From owner-freebsd-questions Sat Sep 14 17:49:55 1996 Return-Path: owner-questions Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id RAA21538 for questions-outgoing; Sat, 14 Sep 1996 17:49:55 -0700 (PDT) Received: from eel.dataplex.net (eel.dataplex.net [208.2.87.2]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id RAA21532 for ; Sat, 14 Sep 1996 17:49:53 -0700 (PDT) Received: from [208.2.87.4] (cod [208.2.87.4]) by eel.dataplex.net (8.7.5/8.6.9) with SMTP id TAA25819; Sat, 14 Sep 1996 19:49:46 -0500 (CDT) X-Sender: rkw@shark.dataplex.net Message-Id: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Date: Sat, 14 Sep 1996 19:49:48 -0500 To: Neil Carl Jensen From: rkw@dataplex.net (Richard Wackerbarth) Subject: Re: netstat question Cc: questions@freebsd.org Sender: owner-questions@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Doing a 'netstat -rn' produces a routing table (as expected!). The only >thing I don't understand are the numbers added on to the Destination IP >numbers, i.e. 207.34.140.100/32. What is the '/32' for? It is a count of the number of one bits in the netmask. The /32 is shorthand for a netmask of 255.255.255.255. /24 would be the standard class c mask of 255.255.255.0 What with subnetting, it is not only shorter, but IHMO easier to read.