Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!watmath!clyde!caip!brl-adm!brl-smoke!smoke!ron@BRL.ARPA From: ron@BRL.ARPA (Ron Natalie) Newsgroups: net.unix-wizards Subject: Re: ifconfig hangs with proteon ringnet card. Message-ID: <4270@brl-smoke.ARPA> Date: Wed, 1-Oct-86 06:23:41 EDT Article-I.D.: brl-smok.4270 Posted: Wed Oct 1 06:23:41 1986 Date-Received: Sat, 4-Oct-86 10:36:57 EDT Sender: news@brl-smoke.ARPA Lines: 22 I don't know if you got an answer yet, but the IFCONFIG will fail. The problem is that the vv driver insists that the local net part of the address match the hardware address. Unfortunately, the local area address at the point you do the ifconfig is still 24 bits long since the subnet mask is not set, and you can't set the subnet mask until the address is set catch-22. Two soloutions: For example to set the address to 18.88.0.12 ifconfig vv0 18.0.0.12 netmask 255.255.255.0 ifconfig vv0 18.88.0.12 The first 18.0.0.12 is just to make the thing happy on net 18 so you can set the mask, then correct it with the second if config. The other (better) solution is to modify vvioctl so that only the least significant bits of the local net part of the address is compared against the hardware address. -Ron