Path: utzoo!mnetor!uunet!husc6!bbn!uwmcsd1!ig!agate!ucbvax!UDEL.EDU!mminnich From: mminnich@UDEL.EDU (Mike Minnich) Newsgroups: comp.protocols.tcp-ip Subject: Re: question about /etc/route Message-ID: <8802050947.aa08234@Huey.UDEL.EDU> Date: 5 Feb 88 14:47:08 GMT Sender: daemon@ucbvax.BERKELEY.EDU Organization: The Internet Lines: 14 > # route add 128.174.22 mygateway 3 > produces a netstat -r -n output: > 128.174.0.22 128.174.20.77 UGH You need to force the interpretation of 128.174.22 as a network address rather than as a host address. Do this by using the keyword "net" in front of 128.174.22: route add net 128.174.22 mygateway 3 The manual page in Sun/OS 3.4 (and I suspect 3.3 as well) for /etc/route does not explain this -- it seems to be out of sync with the installed binary. mike