From mboxrd@z Thu Jan 1 00:00:00 1970 Message-Id: From: Jeff Sickel To: Fans of the OS Plan 9 from Bell Labs <9fans@9fans.net> In-Reply-To: Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v929.2) Date: Sat, 15 Nov 2008 11:12:22 -0600 References: Subject: Re: [9fans] Stupid question... Topicbox-Message-UUID: 44126008-ead4-11e9-9d60-3106f5b1d025 On Nov 15, 2008, at 10:55 AM, Eric Van Hensbergen wrote: > Haven't run into this scenario before myself, so I'm not quite sure > how to get out of it. > > I just installed a new virtual standalone CPU server on my home > machine. I followed the instructions on the wiki for standalone > cpu/auth. > > I'm drawterming in this case from a windows box. I can drawterm in as > bootes, but when I try to drawterm in as my user account I get > cpu: cannot get auth tickets in p9sk1: The operation completed > successfully. > > What step did I miss? you /lib/ndb has the loopback interface and auth settings for your virtual net? I remember putting in something like the following on my VMWare instance (: ipnet=vmnet ip=192.168.254.0 ipmask=255.255.255.0 auth=vm cpu=vm fs=vm bootf=/386/9pc dns=192.168.254.2 dnsdom=YOURDOMAIN authdom=YOURDOMAIN auth=vm ip=192.168.254.105 sys=vm ether=VIRTETHER dom=YOURDOMAIN VMWare created it's NAT'd address on 192.168.254.X So I also do the following to ease the pain: [home:~] jas% cat `which cpu` #!/usr/local/plan9/bin/rc if(! ~ $#* 1){ echo 'usage: cpu ' exit usage } drawterm -a 192.168.254.105 -c 192.168.254.105 -u $1 -jas