9front - general discussion about 9front
 help / color / mirror / Atom feed
* 9fs
@ 2020-08-08 20:44 thinktankworkspaces
  2020-08-08 21:26 ` [9front] 9fs hiro
  0 siblings, 1 reply; 8+ messages in thread
From: thinktankworkspaces @ 2020-08-08 20:44 UTC (permalink / raw)
  To: 9front

so I though by default serving 9p even as read only would 
occur by default in cpurc script as cpu+auth server

# cpu+auth server
	auth/keyfs -wp -m /mnt/keys /adm/keys
	aux/listen -q -t /rc/bin/service.auth -d $serviced tcp

ipnet=yoda ip=192.168.1.0 ipmask=255.255.255.0
	ipgw=192.168.1.1
	dns=8.8.8.8
	auth=192.168.1.172
	dnsdom=yoda
	authdom=yoda
	fs=192.168.1.1
	cpu=foo
	smtp=foo

sys=localhost dom=localhost ip=127.0.0.1
sys=foo dom=foo.yoda ether=525400123336 ip=192.168.1.172
sys=cirno dom=cirno.thinktank ether=080027f9ec98 ip=172.27.0.67
sys=cpubar dom=foo.yoda ether=525400124242 ip=192.168.1.42

There is nothing in /cfg/$sysname including no default
so how is this working as CPU/Auth but then when I dial
from my second CPU i get rejected. The port should be 564 right?. Not 9999

cpu% 9fs foo.yoda
srv: dial net!foo.yoda!9fs: connection rejected








^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [9front] 9fs
  2020-08-08 20:44 9fs thinktankworkspaces
@ 2020-08-08 21:26 ` hiro
  2020-08-08 21:28   ` thinktankworkspaces
  2020-08-08 21:49   ` hiro
  0 siblings, 2 replies; 8+ messages in thread
From: hiro @ 2020-08-08 21:26 UTC (permalink / raw)
  To: 9front

are you asking why your cpu server is not behaving like a file server?


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [9front] 9fs
  2020-08-08 21:26 ` [9front] 9fs hiro
@ 2020-08-08 21:28   ` thinktankworkspaces
  2020-08-08 21:49   ` hiro
  1 sibling, 0 replies; 8+ messages in thread
From: thinktankworkspaces @ 2020-08-08 21:28 UTC (permalink / raw)
  To: 9front

[-- Attachment #1: Type: text/plain, Size: 17 bytes --]

Its both. so yea

[-- Attachment #2: Type: message/rfc822, Size: 5109 bytes --]

From: hiro <23hiro@gmail.com>
To: 9front@9front.org
Subject: Re: [9front] 9fs
Date: Sat, 8 Aug 2020 23:26:12 +0200
Message-ID: <CAFSF3XMTPkM33PS-YxH5rHJ07exSs2o2FXNgh4+QyAVBPmHMyg@mail.gmail.com>

are you asking why your cpu server is not behaving like a file server?

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [9front] 9fs
  2020-08-08 21:26 ` [9front] 9fs hiro
  2020-08-08 21:28   ` thinktankworkspaces
@ 2020-08-08 21:49   ` hiro
  2020-08-08 22:00     ` thinktankworkspaces
  1 sibling, 1 reply; 8+ messages in thread
From: hiro @ 2020-08-08 21:49 UTC (permalink / raw)
  To: 9front

in order to set up a fileserver (that would listen on port 564), you
should follow this section:
http://fqa.9front.org/fqa7.html#7.3.3


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [9front] 9fs
  2020-08-08 21:49   ` hiro
@ 2020-08-08 22:00     ` thinktankworkspaces
  2020-08-08 22:10       ` hiro
  0 siblings, 1 reply; 8+ messages in thread
From: thinktankworkspaces @ 2020-08-08 22:00 UTC (permalink / raw)
  To: 9front

[-- Attachment #1: Type: text/plain, Size: 297 bytes --]

That only reads that I need one entry in the plan9.ini file
nobootprompt=local!/dev/sdC0/fscache -a tcp!*!564

I have had that installed for a while and can drawterm to it
from another OS. So some sort of authentication is working
but i'm not able to run 9fs foo.yoda

Why is it getting rejected?

[-- Attachment #2: Type: message/rfc822, Size: 5298 bytes --]

From: hiro <23hiro@gmail.com>
To: 9front@9front.org
Subject: Re: [9front] 9fs
Date: Sat, 8 Aug 2020 23:49:41 +0200
Message-ID: <CAFSF3XM8+QB3UFPk4hS4GiU+-YZino-7kiX0MrF-NCVoTTr8UQ@mail.gmail.com>

in order to set up a fileserver (that would listen on port 564), you
should follow this section:
http://fqa.9front.org/fqa7.html#7.3.3

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [9front] 9fs
  2020-08-08 22:00     ` thinktankworkspaces
@ 2020-08-08 22:10       ` hiro
  2020-08-08 22:43         ` thinktankworkspaces
  2020-08-08 22:52         ` thinktankworkspaces
  0 siblings, 2 replies; 8+ messages in thread
From: hiro @ 2020-08-08 22:10 UTC (permalink / raw)
  To: 9front

On 8/9/20, thinktankworkspaces@gmail.com <thinktankworkspaces@gmail.com> wrote:
> That only reads that I need one entry in the plan9.ini file
> nobootprompt=local!/dev/sdC0/fscache -a tcp!*!564

yes. is that one there?

> I have had that installed for a while and can drawterm to it

drawterm is using rcpu to connect to the rcpu service, 9fs tries to
mount a fileserver, that's something else.

it's like the difference between ssh access and NFS access on linux


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [9front] 9fs
  2020-08-08 22:10       ` hiro
@ 2020-08-08 22:43         ` thinktankworkspaces
  2020-08-08 22:52         ` thinktankworkspaces
  1 sibling, 0 replies; 8+ messages in thread
From: thinktankworkspaces @ 2020-08-08 22:43 UTC (permalink / raw)
  To: 9front

[-- Attachment #1: Type: text/plain, Size: 92 bytes --]

Yes It has been there for a while. I guess it doesn't work, 
and that it has never worked. 

[-- Attachment #2: Type: message/rfc822, Size: 5608 bytes --]

From: hiro <23hiro@gmail.com>
To: 9front@9front.org
Subject: Re: [9front] 9fs
Date: Sun, 9 Aug 2020 00:10:07 +0200
Message-ID: <CAFSF3XNKznkyq-9aPdJ+KHqtT60m3tBUgAyAoouQ48y8wf46=A@mail.gmail.com>

On 8/9/20, thinktankworkspaces@gmail.com <thinktankworkspaces@gmail.com> wrote:
> That only reads that I need one entry in the plan9.ini file
> nobootprompt=local!/dev/sdC0/fscache -a tcp!*!564

yes. is that one there?

> I have had that installed for a while and can drawterm to it

drawterm is using rcpu to connect to the rcpu service, 9fs tries to
mount a fileserver, that's something else.

it's like the difference between ssh access and NFS access on linux

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [9front] 9fs
  2020-08-08 22:10       ` hiro
  2020-08-08 22:43         ` thinktankworkspaces
@ 2020-08-08 22:52         ` thinktankworkspaces
  1 sibling, 0 replies; 8+ messages in thread
From: thinktankworkspaces @ 2020-08-08 22:52 UTC (permalink / raw)
  To: 9front

[-- Attachment #1: Type: text/plain, Size: 47 bytes --]

for the love of it had ! oh that's frustrating

[-- Attachment #2: Type: message/rfc822, Size: 5608 bytes --]

From: hiro <23hiro@gmail.com>
To: 9front@9front.org
Subject: Re: [9front] 9fs
Date: Sun, 9 Aug 2020 00:10:07 +0200
Message-ID: <CAFSF3XNKznkyq-9aPdJ+KHqtT60m3tBUgAyAoouQ48y8wf46=A@mail.gmail.com>

On 8/9/20, thinktankworkspaces@gmail.com <thinktankworkspaces@gmail.com> wrote:
> That only reads that I need one entry in the plan9.ini file
> nobootprompt=local!/dev/sdC0/fscache -a tcp!*!564

yes. is that one there?

> I have had that installed for a while and can drawterm to it

drawterm is using rcpu to connect to the rcpu service, 9fs tries to
mount a fileserver, that's something else.

it's like the difference between ssh access and NFS access on linux

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2020-08-08 22:52 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-08-08 20:44 9fs thinktankworkspaces
2020-08-08 21:26 ` [9front] 9fs hiro
2020-08-08 21:28   ` thinktankworkspaces
2020-08-08 21:49   ` hiro
2020-08-08 22:00     ` thinktankworkspaces
2020-08-08 22:10       ` hiro
2020-08-08 22:43         ` thinktankworkspaces
2020-08-08 22:52         ` thinktankworkspaces

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).