From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1BlHk7-0002Sw-8e for qemu-devel@nongnu.org; Thu, 15 Jul 2004 21:42:31 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1BlHk5-0002Sk-JC for qemu-devel@nongnu.org; Thu, 15 Jul 2004 21:42:31 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1BlHk5-0002Sh-Gm for qemu-devel@nongnu.org; Thu, 15 Jul 2004 21:42:29 -0400 Received: from [38.113.3.61] (helo=babyruth.hotpop.com) by monty-python.gnu.org with esmtp (Exim 4.34) id 1BlHhU-0002yn-09 for qemu-devel@nongnu.org; Thu, 15 Jul 2004 21:39:48 -0400 Received: from phreaker.net (kubrick.hotpop.com [38.113.3.103]) by babyruth.hotpop.com (Postfix) with SMTP id 478A86DFED8 for ; Fri, 16 Jul 2004 00:53:23 +0000 (UTC) Received: from jbrown.mylinuxbox.org (pcp03144805pcs.midval01.tn.comcast.net [68.59.228.236]) by smtp-1.hotpop.com (Postfix) with ESMTP id AC6FB1A01BC for ; Fri, 16 Jul 2004 00:30:54 +0000 (UTC) Date: Thu, 15 Jul 2004 21:39:36 -0400 From: "Jim C. Brown" Subject: Re: /dev/tun Was: Re: [Qemu-devel] Win98: how to exchange data with Linux Message-ID: <20040716013936.GA28708@jbrown.mylinuxbox.org> References: <200407122356.02502.eschmit@tin.it> <200407142110.02061.menola@sbcglobal.net> <20040715024939.GA23838@jbrown.mylinuxbox.org> <200407152001.23559.menola@sbcglobal.net> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="BOKacYhQ+x31HxR3" Content-Disposition: inline In-Reply-To: <200407152001.23559.menola@sbcglobal.net> Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org --BOKacYhQ+x31HxR3 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Thu, Jul 15, 2004 at 08:01:23PM -0500, Joe Menola wrote: > > DHCP from the router will not work. Assuming that you've made the above > > change and are using the 192.168.254.* subnet, the router/gateway for Win98 > > is 192.168.254.254 and you can assign it any ip address you want in the > > subnet, for example 192.168.254.135 should work. You can also do > > > > /sbin/dhcpd tap0 > > > > after you set up vde and install a DHCPd server. That works great for me. > > (I can give you my dhcpd.conf file if you decide to go this route.) > > Please do. I've installed a DHCPd server, I doubt that I have dhcpd.conf setup > properly. > I attach a modified version here. I've changed the IPs to reflect your subnet (mine is 192.168.1.*) and I've deleted the section I had that gave out fixed ip addresses to certain mac addresses. You'll have to edit the domain name options and the netbios name server option yourself. If this one gives a syntax error I'll send my original, unmodified dhcpd.conf file. > Thanks again for all your help. I've been keeping a log of my efforts, if I > get this up and going I could easily put together a cut n paste trail of all > my steps. You might be able to use it as a rough draft for your up coming > "VBE For Dumbies" book? > > -jm > > > _______________________________________________ > Qemu-devel mailing list > Qemu-devel@nongnu.org > http://lists.nongnu.org/mailman/listinfo/qemu-devel -- Infinite complexity begets infinite beauty. Infinite precision begets infinite perfection. --BOKacYhQ+x31HxR3 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="dhcpd.conf" default-lease-time 600; max-lease-time 7200; option subnet-mask 255.255.255.0; option broadcast-address 192.168.254.255; option routers 192.168.254.254; option domain-name-servers 192.168.0.1; option domain-name "mylinuxbox.org"; option netbios-name-servers 192.168.0.1; subnet 192.168.254.0 netmask 255.255.255.0 { range 192.168.254.10 192.168.254.20; } --BOKacYhQ+x31HxR3--