Tried to compile my little program on GORVAX but it has problems with the SCREEN SECTION that works on the AXP version..
I'm thinking I must have an old compiler or something. Anyone know what the latest is?
Anyone have a kit?
Sampsa
On Sep 12, 2012, at 9:57 AM, Sampsa Laine wrote:
By the way, the project I'm working on (just to practice my COBOL + DCL) is a little VMS-based conferencing / email system.
Try it by logging in as CBLBRD on CHIMPY. The username / password for the board is hecnet / test.
Sampsa
I'm trying to remember if DEC ever put out interesting applications that were written in Cobol. I'm not sure. I do remember a friend of mine who wrote an expression parser (RPN generator) in Cobol. Or maybe RPG? I'm not sure that's possible.
I do remember that the first release of VAX Notes was written in PL/I and started out as an exercise in learning PL/I for the author (Len Kawell).
paul
By the way, the project I'm working on (just to practice my COBOL + DCL) is a little VMS-based conferencing / email system.
Try it by logging in as CBLBRD on CHIMPY. The username / password for the board is hecnet / test.
Sampsa
I figured it out, had to do with the DELIMITED BY SIZE issue - the old buffer was overwriting the whole new one, thus nothing was ever being stored.
I added a delimiter literal and it works now, code looks like this if interested (||||) is the delimiter:
GetPayload.
MOVE "||||" TO Payload.
Move " " TO EditLine.
PERFORM UNTIL EditLine = "."
DISPLAY "> " WITH NO ADVANCING
ACCEPT EditLine
MOVE Payload TO PreviousPayload
STRING PreviousPayload DELIMITED BY "||||"
CRLF DELIMITED BY SIZE
EditLine DELIMITED BY SIZE
"||||" DELIMITED BY SIZE
INTO NewPayload
END-STRING
MOVE NewPayload TO Payload
END-PERFORM.
DISPLAY "<EOT>".
On 12 Sep 2012, at 16:35, Dennis Boone wrote:
Nothing seems to happen, however.
I assume you don't mean that literally.
De
I'm trying to read multiple lines of input and concatenate them into one string, separated by CRLF's.
This is the code I have:
GetPayload.
MOVE " " TO Payload.
Move " " TO EditLine.
PERFORM UNTIL EditLine = "."
DISPLAY "> " WITH NO ADVANCING
ACCEPT EditLine
STRING Payload DELIMITED BY SIZE
x"0a0d" DELIMITED BY SIZE
EditLine DELIMITED BY SIZE
INTO NewPayload
END-STRING
MOVE NewPayload TO Payload
END-PERFORM.
Nothing seems to happen, however. Any ideas?
Sampsa
OK, there are two new changesets. One to fix the missing update and one to
fix the warnings on format strings.
Regards
Rob
-----Original Message-----
From: owner-hecnet at Update.UU.SE [mailto:owner-hecnet at Update.UU.SE]
On Behalf Of Mark Wickens
Sent: 09 September 2012 08:13
To: hecnet at Update.UU.SE; mark at wickensonline.co.uk
Subject: Re: [HECnet] Beta User Mode DECnet Router Available For Testing
Rob,
I had a go compiling version 15891
<https://route20.codeplex.com/SourceControl/changeset/15891> of the
source code under Ubuntu 12.04.
I downloaded and built version 1.3.0 of libpcap.
I got the following compiler error. Are there some changes you need to
commit to the repository?
Regards, Mark.
<https://route20.codeplex.com/SourceControl/changeset/15891>msw at x60:
~/Downloads/Main/Route20$
OS_CCDEFS="-I/usr/local/include" OS_LDFLAGS="-L/usr/local/lib" make cc -
I . -I/usr/local/include adjacency.c area_forwarding_database.c
area_routing_database.c circuit.c decision.c decnet.c dns.c eth_circuit.c
eth_decnet.c eth_init_layer.c eth_pcap.c eth_sock.c forwarding.c
forwarding_database.c init_layer.c linux.c messages.c node.c packet.c
route20.c routing_database.c socket.c timer.c update.c -o route20 -
L/usr/local/lib -lpcap
circuit.c: In function 'CircuitCreateEthernetPcap':
circuit.c:65:9: error: 'struct circuit' has no member named
'nextLevel1Node'
circuit.c: In function 'CircuitCreateEthernetSocket':
circuit.c:84:9: error: 'struct circuit' has no member named
'nextLevel1Node'
decision.c: In function 'DumpHeading':
decision.c:214:2: warning: format not a string literal and no format
arguments [-Wformat-security]
decision.c:222:2: warning: format not a string literal and no format
arguments [-Wformat-security]
decision.c:230:2: warning: format not a string literal and no format
arguments [-Wformat-security]
linux.c: In function 'Log':
linux.c:157:6: warning: format not a string literal and no format
arguments
[-Wformat-security]
update.c: In function 'ProcessCircuitLevel1Update':
update.c:82:25: error: 'circuit_t' has no member named 'nextLevel1Node'
update.c:86:53: error: 'circuit_t' has no member named 'nextLevel1Node'
update.c:89:50: error: 'circuit_t' has no member named 'nextLevel1Node'
update.c:100:10: error: 'circuit_t' has no member named 'nextLevel1Node'
update.c:100:37: error: 'circuit_t' has no member named 'nextLevel1Node'
update.c:102:16: error: 'circuit_t' has no member named 'nextLevel1Node'
update.c:105:9: error: 'circuit_t' has no member named 'nextLevel1Node'
update.c:105:36: error: 'circuit_t' has no member named 'nextLevel1Node'
make: *** [route20] Error 1
On 09/09/12 00:07, Rob Jarratt wrote:
The source code has been updated on CodePlex to fix both issues. It
now generates level 1 routing messages, so will work correctly if you
have level
1 routers in your area. It also handles unreachable nodes in its own
area correctly now.
Regards
Rob
-----Original Message-----
From: owner-hecnet at Update.UU.SE [mailto:owner-
hecnet at Update.UU.SE]
On Behalf Of Rob Jarratt
Sent: 08 September 2012 16:43
To: hecnet at Update.UU.SE
Subject: RE: [HECnet] Beta User Mode DECnet Router Available For
Testing
I have already realised that there is at least one deficiency. If you
have
any
Level 1 routers in your area then it isn't going to work properly
because
it
doesn't send out Level 1 Routing messages (but it does process the
ones it receives). I have also had a report that when nodes in my
area are not reachable, you get a timeout instead of an "unreachable"
error.
Regards
Rob
-----Original Message-----
From: owner-hecnet at Update.UU.SE [mailto:owner-
hecnet at Update.UU.SE]
On Behalf Of Rob Jarratt
Sent: 08 September 2012 14:12
To: hecnet at Update.UU.SE
Subject: RE: [HECnet] Beta User Mode DECnet Router Available For
Testing
If you want to try routing directly to me, my config is
jarratt.dyndns.org:4711. I will need to know your details for the
link to
work.
Regards
Rob
-----Original Message-----
From: owner-hecnet at Update.UU.SE [mailto:owner-
hecnet at Update.UU.SE]
On Behalf Of Brian Hechinger
Sent: 08 September 2012 12:35
To: hecnet at Update.UU.SE
Subject: Re: [HECnet] Beta User Mode DECnet Router Available For
Testing
Excellent! I'll download and play when I have some free time!!
-brian
On Sep 8, 2012, at 4:04, "Rob Jarratt"
<robert.jarratt at ntlworld.com>
wrote:
I have published everything up on CodePlex now. Here is the link:
https://route20.codeplex.com/
Regards
Rob
-----Original Message-----
From: owner-hecnet at Update.UU.SE [mailto:owner-
hecnet at Update.UU.SE]
On Behalf Of Brian Hechinger
Sent: 08 September 2012 00:38
To: hecnet at Update.UU.SE
Subject: Re: [HECnet] Beta User Mode DECnet Router Available For
Testing
Ok, but where do we find the source? :)
-brian
On 9/7/2012 6:36 PM, Rob Jarratt wrote:
I am ready for a couple of people to try out the user mode
DECnet router I have been writing. Is anyone interested in
trying
it
out?
You will need to be able to compile C code and have pcap or
winpcap installed.
Here is an extract from the README:
User Mode DECnet Router Readme
==============================
This program is a DECnet router that implements version 2.0 of
the DECnet routing specification found here:
http://linux-decnet.sourceforge.net/docs/route20.txt
Features
--------
1. Runs on Windows either as a Windows Service, or as a console
program.
2. Runs on Linux as a daemon.
3. Full routing capability, so it avoids broadcasting all
routing messages to
entire network and kills looping packets.
4. Supports Ethernet (using pcap/winpcap).
5. Supports Johnny's bridge.
6. Can be extended to support other kinds of circuit (Cisco and
Multinet might
be examples, not tried).
7. Does dynamic DNS updates without blocking.
Limitations
-----------
1. Only tested on Windows Server 2003 and Raspberry Pi running
Debian.
2. Does not support Phase III nodes.
3. Although it can be configured as a Level 1 node, Level 1 is
not
fully
supported. It has only been tested as a Level 2 (area
router)
node.
4. Limited testing on Raspberry Pi.
5. Performance not tested.
6. Not tested with multiple ethernets.
7. Limited testing with multiple bridges.
Regards
Rob
--
http://www.wickensonline.co.ukhttp://declegacy.org.ukhttp://retrochallenge.nethttps://twitter.com/#!/%40urbancamo
You are right, there seem to be some changes missing in the repository. Let
me check and sort it out.
Regards
Rob
-----Original Message-----
From: owner-hecnet at Update.UU.SE [mailto:owner-hecnet at Update.UU.SE]
On Behalf Of Mark Wickens
Sent: 09 September 2012 08:13
To: hecnet at Update.UU.SE; mark at wickensonline.co.uk
Subject: Re: [HECnet] Beta User Mode DECnet Router Available For Testing
Rob,
I had a go compiling version 15891
<https://route20.codeplex.com/SourceControl/changeset/15891> of the
source code under Ubuntu 12.04.
I downloaded and built version 1.3.0 of libpcap.
I got the following compiler error. Are there some changes you need to
commit to the repository?
Regards, Mark.
<https://route20.codeplex.com/SourceControl/changeset/15891>msw at x60:
~/Downloads/Main/Route20$
OS_CCDEFS="-I/usr/local/include" OS_LDFLAGS="-L/usr/local/lib" make cc -
I . -I/usr/local/include adjacency.c area_forwarding_database.c
area_routing_database.c circuit.c decision.c decnet.c dns.c eth_circuit.c
eth_decnet.c eth_init_layer.c eth_pcap.c eth_sock.c forwarding.c
forwarding_database.c init_layer.c linux.c messages.c node.c packet.c
route20.c routing_database.c socket.c timer.c update.c -o route20 -
L/usr/local/lib -lpcap
circuit.c: In function 'CircuitCreateEthernetPcap':
circuit.c:65:9: error: 'struct circuit' has no member named
'nextLevel1Node'
circuit.c: In function 'CircuitCreateEthernetSocket':
circuit.c:84:9: error: 'struct circuit' has no member named
'nextLevel1Node'
decision.c: In function 'DumpHeading':
decision.c:214:2: warning: format not a string literal and no format
arguments [-Wformat-security]
decision.c:222:2: warning: format not a string literal and no format
arguments [-Wformat-security]
decision.c:230:2: warning: format not a string literal and no format
arguments [-Wformat-security]
linux.c: In function 'Log':
linux.c:157:6: warning: format not a string literal and no format
arguments
[-Wformat-security]
update.c: In function 'ProcessCircuitLevel1Update':
update.c:82:25: error: 'circuit_t' has no member named 'nextLevel1Node'
update.c:86:53: error: 'circuit_t' has no member named 'nextLevel1Node'
update.c:89:50: error: 'circuit_t' has no member named 'nextLevel1Node'
update.c:100:10: error: 'circuit_t' has no member named 'nextLevel1Node'
update.c:100:37: error: 'circuit_t' has no member named 'nextLevel1Node'
update.c:102:16: error: 'circuit_t' has no member named 'nextLevel1Node'
update.c:105:9: error: 'circuit_t' has no member named 'nextLevel1Node'
update.c:105:36: error: 'circuit_t' has no member named 'nextLevel1Node'
make: *** [route20] Error 1
On 09/09/12 00:07, Rob Jarratt wrote:
The source code has been updated on CodePlex to fix both issues. It
now generates level 1 routing messages, so will work correctly if you
have level
1 routers in your area. It also handles unreachable nodes in its own
area correctly now.
Regards
Rob
-----Original Message-----
From: owner-hecnet at Update.UU.SE [mailto:owner-
hecnet at Update.UU.SE]
On Behalf Of Rob Jarratt
Sent: 08 September 2012 16:43
To: hecnet at Update.UU.SE
Subject: RE: [HECnet] Beta User Mode DECnet Router Available For
Testing
I have already realised that there is at least one deficiency. If you
have
any
Level 1 routers in your area then it isn't going to work properly
because
it
doesn't send out Level 1 Routing messages (but it does process the
ones it receives). I have also had a report that when nodes in my
area are not reachable, you get a timeout instead of an "unreachable"
error.
Regards
Rob
-----Original Message-----
From: owner-hecnet at Update.UU.SE [mailto:owner-
hecnet at Update.UU.SE]
On Behalf Of Rob Jarratt
Sent: 08 September 2012 14:12
To: hecnet at Update.UU.SE
Subject: RE: [HECnet] Beta User Mode DECnet Router Available For
Testing
If you want to try routing directly to me, my config is
jarratt.dyndns.org:4711. I will need to know your details for the
link to
work.
Regards
Rob
-----Original Message-----
From: owner-hecnet at Update.UU.SE [mailto:owner-
hecnet at Update.UU.SE]
On Behalf Of Brian Hechinger
Sent: 08 September 2012 12:35
To: hecnet at Update.UU.SE
Subject: Re: [HECnet] Beta User Mode DECnet Router Available For
Testing
Excellent! I'll download and play when I have some free time!!
-brian
On Sep 8, 2012, at 4:04, "Rob Jarratt"
<robert.jarratt at ntlworld.com>
wrote:
I have published everything up on CodePlex now. Here is the link:
https://route20.codeplex.com/
Regards
Rob
-----Original Message-----
From: owner-hecnet at Update.UU.SE [mailto:owner-
hecnet at Update.UU.SE]
On Behalf Of Brian Hechinger
Sent: 08 September 2012 00:38
To: hecnet at Update.UU.SE
Subject: Re: [HECnet] Beta User Mode DECnet Router Available For
Testing
Ok, but where do we find the source? :)
-brian
On 9/7/2012 6:36 PM, Rob Jarratt wrote:
I am ready for a couple of people to try out the user mode
DECnet router I have been writing. Is anyone interested in
trying
it
out?
You will need to be able to compile C code and have pcap or
winpcap installed.
Here is an extract from the README:
User Mode DECnet Router Readme
==============================
This program is a DECnet router that implements version 2.0 of
the DECnet routing specification found here:
http://linux-decnet.sourceforge.net/docs/route20.txt
Features
--------
1. Runs on Windows either as a Windows Service, or as a console
program.
2. Runs on Linux as a daemon.
3. Full routing capability, so it avoids broadcasting all
routing messages to
entire network and kills looping packets.
4. Supports Ethernet (using pcap/winpcap).
5. Supports Johnny's bridge.
6. Can be extended to support other kinds of circuit (Cisco and
Multinet might
be examples, not tried).
7. Does dynamic DNS updates without blocking.
Limitations
-----------
1. Only tested on Windows Server 2003 and Raspberry Pi running
Debian.
2. Does not support Phase III nodes.
3. Although it can be configured as a Level 1 node, Level 1 is
not
fully
supported. It has only been tested as a Level 2 (area
router)
node.
4. Limited testing on Raspberry Pi.
5. Performance not tested.
6. Not tested with multiple ethernets.
7. Limited testing with multiple bridges.
Regards
Rob
--
http://www.wickensonline.co.ukhttp://declegacy.org.ukhttp://retrochallenge.nethttps://twitter.com/#!/%40urbancamo
Rob,
I had a go compiling version 15891 <https://route20.codeplex.com/SourceControl/changeset/15891> of the source code under Ubuntu 12.04.
I downloaded and built version 1.3.0 of libpcap.
I got the following compiler error. Are there some changes you need to commit to the repository?
Regards, Mark.
<https://route20.codeplex.com/SourceControl/changeset/15891>msw at x60:~/Downloads/Main/Route20$ OS_CCDEFS="-I/usr/local/include" OS_LDFLAGS="-L/usr/local/lib" make
cc -I . -I/usr/local/include adjacency.c area_forwarding_database.c area_routing_database.c circuit.c decision.c decnet.c dns.c eth_circuit.c eth_decnet.c eth_init_layer.c eth_pcap.c eth_sock.c forwarding.c forwarding_database.c init_layer.c linux.c messages.c node.c packet.c route20.c routing_database.c socket.c timer.c update.c -o route20 -L/usr/local/lib -lpcap
circuit.c: In function CircuitCreateEthernetPcap :
circuit.c:65:9: error: struct circuit has no member named nextLevel1Node
circuit.c: In function CircuitCreateEthernetSocket :
circuit.c:84:9: error: struct circuit has no member named nextLevel1Node
decision.c: In function DumpHeading :
decision.c:214:2: warning: format not a string literal and no format arguments [-Wformat-security]
decision.c:222:2: warning: format not a string literal and no format arguments [-Wformat-security]
decision.c:230:2: warning: format not a string literal and no format arguments [-Wformat-security]
linux.c: In function Log :
linux.c:157:6: warning: format not a string literal and no format arguments [-Wformat-security]
update.c: In function ProcessCircuitLevel1Update :
update.c:82:25: error: circuit_t has no member named nextLevel1Node
update.c:86:53: error: circuit_t has no member named nextLevel1Node
update.c:89:50: error: circuit_t has no member named nextLevel1Node
update.c:100:10: error: circuit_t has no member named nextLevel1Node
update.c:100:37: error: circuit_t has no member named nextLevel1Node
update.c:102:16: error: circuit_t has no member named nextLevel1Node
update.c:105:9: error: circuit_t has no member named nextLevel1Node
update.c:105:36: error: circuit_t has no member named nextLevel1Node
make: *** [route20] Error 1
On 09/09/12 00:07, Rob Jarratt wrote:
The source code has been updated on CodePlex to fix both issues. It now
generates level 1 routing messages, so will work correctly if you have level
1 routers in your area. It also handles unreachable nodes in its own area
correctly now.
Regards
Rob
-----Original Message-----
From: owner-hecnet at Update.UU.SE [mailto:owner-hecnet at Update.UU.SE]
On Behalf Of Rob Jarratt
Sent: 08 September 2012 16:43
To: hecnet at Update.UU.SE
Subject: RE: [HECnet] Beta User Mode DECnet Router Available For Testing
I have already realised that there is at least one deficiency. If you have
any
Level 1 routers in your area then it isn't going to work properly because
it
doesn't send out Level 1 Routing messages (but it does process the ones it
receives). I have also had a report that when nodes in my area are not
reachable, you get a timeout instead of an "unreachable" error.
Regards
Rob
-----Original Message-----
From: owner-hecnet at Update.UU.SE [mailto:owner-
hecnet at Update.UU.SE]
On Behalf Of Rob Jarratt
Sent: 08 September 2012 14:12
To: hecnet at Update.UU.SE
Subject: RE: [HECnet] Beta User Mode DECnet Router Available For
Testing
If you want to try routing directly to me, my config is
jarratt.dyndns.org:4711. I will need to know your details for the link
to
work.
Regards
Rob
-----Original Message-----
From: owner-hecnet at Update.UU.SE [mailto:owner-
hecnet at Update.UU.SE]
On Behalf Of Brian Hechinger
Sent: 08 September 2012 12:35
To: hecnet at Update.UU.SE
Subject: Re: [HECnet] Beta User Mode DECnet Router Available For
Testing
Excellent! I'll download and play when I have some free time!!
-brian
On Sep 8, 2012, at 4:04, "Rob Jarratt" <robert.jarratt at ntlworld.com>
wrote:
I have published everything up on CodePlex now. Here is the link:
https://route20.codeplex.com/
Regards
Rob
-----Original Message-----
From: owner-hecnet at Update.UU.SE [mailto:owner-
hecnet at Update.UU.SE]
On Behalf Of Brian Hechinger
Sent: 08 September 2012 00:38
To: hecnet at Update.UU.SE
Subject: Re: [HECnet] Beta User Mode DECnet Router Available For
Testing
Ok, but where do we find the source? :)
-brian
On 9/7/2012 6:36 PM, Rob Jarratt wrote:
I am ready for a couple of people to try out the user mode
DECnet router I have been writing. Is anyone interested in trying
it
out?
You will need to be able to compile C code and have pcap or
winpcap installed.
Here is an extract from the README:
User Mode DECnet Router Readme
==============================
This program is a DECnet router that implements version 2.0 of
the DECnet routing specification found here:
http://linux-decnet.sourceforge.net/docs/route20.txt
Features
--------
1. Runs on Windows either as a Windows Service, or as a console
program.
2. Runs on Linux as a daemon.
3. Full routing capability, so it avoids broadcasting all
routing messages to
entire network and kills looping packets.
4. Supports Ethernet (using pcap/winpcap).
5. Supports Johnny's bridge.
6. Can be extended to support other kinds of circuit (Cisco and
Multinet might
be examples, not tried).
7. Does dynamic DNS updates without blocking.
Limitations
-----------
1. Only tested on Windows Server 2003 and Raspberry Pi running
Debian.
2. Does not support Phase III nodes.
3. Although it can be configured as a Level 1 node, Level 1 is
not
fully
supported. It has only been tested as a Level 2 (area router)
node.
4. Limited testing on Raspberry Pi.
5. Performance not tested.
6. Not tested with multiple ethernets.
7. Limited testing with multiple bridges.
Regards
Rob
--
http://www.wickensonline.co.ukhttp://declegacy.org.ukhttp://retrochallenge.nethttps://twitter.com/#!/%40urbancamo
The source code has been updated on CodePlex to fix both issues. It now
generates level 1 routing messages, so will work correctly if you have level
1 routers in your area. It also handles unreachable nodes in its own area
correctly now.
Regards
Rob
-----Original Message-----
From: owner-hecnet at Update.UU.SE [mailto:owner-hecnet at Update.UU.SE]
On Behalf Of Rob Jarratt
Sent: 08 September 2012 16:43
To: hecnet at Update.UU.SE
Subject: RE: [HECnet] Beta User Mode DECnet Router Available For Testing
I have already realised that there is at least one deficiency. If you have
any
Level 1 routers in your area then it isn't going to work properly because
it
doesn't send out Level 1 Routing messages (but it does process the ones it
receives). I have also had a report that when nodes in my area are not
reachable, you get a timeout instead of an "unreachable" error.
Regards
Rob
-----Original Message-----
From: owner-hecnet at Update.UU.SE [mailto:owner-
hecnet at Update.UU.SE]
On Behalf Of Rob Jarratt
Sent: 08 September 2012 14:12
To: hecnet at Update.UU.SE
Subject: RE: [HECnet] Beta User Mode DECnet Router Available For
Testing
If you want to try routing directly to me, my config is
jarratt.dyndns.org:4711. I will need to know your details for the link
to
work.
Regards
Rob
-----Original Message-----
From: owner-hecnet at Update.UU.SE [mailto:owner-
hecnet at Update.UU.SE]
On Behalf Of Brian Hechinger
Sent: 08 September 2012 12:35
To: hecnet at Update.UU.SE
Subject: Re: [HECnet] Beta User Mode DECnet Router Available For
Testing
Excellent! I'll download and play when I have some free time!!
-brian
On Sep 8, 2012, at 4:04, "Rob Jarratt" <robert.jarratt at ntlworld.com>
wrote:
I have published everything up on CodePlex now. Here is the link:
https://route20.codeplex.com/
Regards
Rob
-----Original Message-----
From: owner-hecnet at Update.UU.SE [mailto:owner-
hecnet at Update.UU.SE]
On Behalf Of Brian Hechinger
Sent: 08 September 2012 00:38
To: hecnet at Update.UU.SE
Subject: Re: [HECnet] Beta User Mode DECnet Router Available For
Testing
Ok, but where do we find the source? :)
-brian
On 9/7/2012 6:36 PM, Rob Jarratt wrote:
I am ready for a couple of people to try out the user mode
DECnet router I have been writing. Is anyone interested in trying
it
out?
You will need to be able to compile C code and have pcap or
winpcap installed.
Here is an extract from the README:
User Mode DECnet Router Readme
==============================
This program is a DECnet router that implements version 2.0 of
the DECnet routing specification found here:
http://linux-decnet.sourceforge.net/docs/route20.txt
Features
--------
1. Runs on Windows either as a Windows Service, or as a console
program.
2. Runs on Linux as a daemon.
3. Full routing capability, so it avoids broadcasting all
routing messages to
entire network and kills looping packets.
4. Supports Ethernet (using pcap/winpcap).
5. Supports Johnny's bridge.
6. Can be extended to support other kinds of circuit (Cisco and
Multinet might
be examples, not tried).
7. Does dynamic DNS updates without blocking.
Limitations
-----------
1. Only tested on Windows Server 2003 and Raspberry Pi running
Debian.
2. Does not support Phase III nodes.
3. Although it can be configured as a Level 1 node, Level 1 is
not
fully
supported. It has only been tested as a Level 2 (area router)
node.
4. Limited testing on Raspberry Pi.
5. Performance not tested.
6. Not tested with multiple ethernets.
7. Limited testing with multiple bridges.
Regards
Rob
I just need someone to try to SET HOST to a non-existent node in my area (area 5), eg 5.500. You should get an unreachable error, but you may timeout instead, that is the problem I am trying to diagnose. If someone does try it please let me know what happens at your end.
Thanks
Rob
I have already realised that there is at least one deficiency. If you have
any Level 1 routers in your area then it isn't going to work properly
because it doesn't send out Level 1 Routing messages (but it does process
the ones it receives). I have also had a report that when nodes in my area
are not reachable, you get a timeout instead of an "unreachable" error.
Regards
Rob
-----Original Message-----
From: owner-hecnet at Update.UU.SE [mailto:owner-hecnet at Update.UU.SE]
On Behalf Of Rob Jarratt
Sent: 08 September 2012 14:12
To: hecnet at Update.UU.SE
Subject: RE: [HECnet] Beta User Mode DECnet Router Available For Testing
If you want to try routing directly to me, my config is
jarratt.dyndns.org:4711. I will need to know your details for the link to
work.
Regards
Rob
-----Original Message-----
From: owner-hecnet at Update.UU.SE [mailto:owner-
hecnet at Update.UU.SE]
On Behalf Of Brian Hechinger
Sent: 08 September 2012 12:35
To: hecnet at Update.UU.SE
Subject: Re: [HECnet] Beta User Mode DECnet Router Available For
Testing
Excellent! I'll download and play when I have some free time!!
-brian
On Sep 8, 2012, at 4:04, "Rob Jarratt" <robert.jarratt at ntlworld.com>
wrote:
I have published everything up on CodePlex now. Here is the link:
https://route20.codeplex.com/
Regards
Rob
-----Original Message-----
From: owner-hecnet at Update.UU.SE [mailto:owner-
hecnet at Update.UU.SE]
On Behalf Of Brian Hechinger
Sent: 08 September 2012 00:38
To: hecnet at Update.UU.SE
Subject: Re: [HECnet] Beta User Mode DECnet Router Available For
Testing
Ok, but where do we find the source? :)
-brian
On 9/7/2012 6:36 PM, Rob Jarratt wrote:
I am ready for a couple of people to try out the user mode DECnet
router I have been writing. Is anyone interested in trying it out?
You will need to be able to compile C code and have pcap or
winpcap installed.
Here is an extract from the README:
User Mode DECnet Router Readme
==============================
This program is a DECnet router that implements version 2.0 of the
DECnet routing specification found here:
http://linux-decnet.sourceforge.net/docs/route20.txt
Features
--------
1. Runs on Windows either as a Windows Service, or as a console
program.
2. Runs on Linux as a daemon.
3. Full routing capability, so it avoids broadcasting all routing
messages to
entire network and kills looping packets.
4. Supports Ethernet (using pcap/winpcap).
5. Supports Johnny's bridge.
6. Can be extended to support other kinds of circuit (Cisco and
Multinet might
be examples, not tried).
7. Does dynamic DNS updates without blocking.
Limitations
-----------
1. Only tested on Windows Server 2003 and Raspberry Pi running
Debian.
2. Does not support Phase III nodes.
3. Although it can be configured as a Level 1 node, Level 1 is not
fully
supported. It has only been tested as a Level 2 (area router)
node.
4. Limited testing on Raspberry Pi.
5. Performance not tested.
6. Not tested with multiple ethernets.
7. Limited testing with multiple bridges.
Regards
Rob
If you want to try routing directly to me, my config is
jarratt.dyndns.org:4711. I will need to know your details for the link to
work.
Regards
Rob
-----Original Message-----
From: owner-hecnet at Update.UU.SE [mailto:owner-hecnet at Update.UU.SE]
On Behalf Of Brian Hechinger
Sent: 08 September 2012 12:35
To: hecnet at Update.UU.SE
Subject: Re: [HECnet] Beta User Mode DECnet Router Available For Testing
Excellent! I'll download and play when I have some free time!!
-brian
On Sep 8, 2012, at 4:04, "Rob Jarratt" <robert.jarratt at ntlworld.com>
wrote:
I have published everything up on CodePlex now. Here is the link:
https://route20.codeplex.com/
Regards
Rob
-----Original Message-----
From: owner-hecnet at Update.UU.SE [mailto:owner-
hecnet at Update.UU.SE]
On Behalf Of Brian Hechinger
Sent: 08 September 2012 00:38
To: hecnet at Update.UU.SE
Subject: Re: [HECnet] Beta User Mode DECnet Router Available For
Testing
Ok, but where do we find the source? :)
-brian
On 9/7/2012 6:36 PM, Rob Jarratt wrote:
I am ready for a couple of people to try out the user mode DECnet
router I have been writing. Is anyone interested in trying it out?
You will need to be able to compile C code and have pcap or winpcap
installed.
Here is an extract from the README:
User Mode DECnet Router Readme
==============================
This program is a DECnet router that implements version 2.0 of the
DECnet routing specification found here:
http://linux-decnet.sourceforge.net/docs/route20.txt
Features
--------
1. Runs on Windows either as a Windows Service, or as a console
program.
2. Runs on Linux as a daemon.
3. Full routing capability, so it avoids broadcasting all routing
messages to
entire network and kills looping packets.
4. Supports Ethernet (using pcap/winpcap).
5. Supports Johnny's bridge.
6. Can be extended to support other kinds of circuit (Cisco and
Multinet might
be examples, not tried).
7. Does dynamic DNS updates without blocking.
Limitations
-----------
1. Only tested on Windows Server 2003 and Raspberry Pi running
Debian.
2. Does not support Phase III nodes.
3. Although it can be configured as a Level 1 node, Level 1 is not
fully
supported. It has only been tested as a Level 2 (area router) node.
4. Limited testing on Raspberry Pi.
5. Performance not tested.
6. Not tested with multiple ethernets.
7. Limited testing with multiple bridges.
Regards
Rob
Excellent! I'll download and play when I have some free time!!
-brian
On Sep 8, 2012, at 4:04, "Rob Jarratt" <robert.jarratt at ntlworld.com> wrote:
I have published everything up on CodePlex now. Here is the link:
https://route20.codeplex.com/
Regards
Rob
-----Original Message-----
From: owner-hecnet at Update.UU.SE [mailto:owner-hecnet at Update.UU.SE]
On Behalf Of Brian Hechinger
Sent: 08 September 2012 00:38
To: hecnet at Update.UU.SE
Subject: Re: [HECnet] Beta User Mode DECnet Router Available For Testing
Ok, but where do we find the source? :)
-brian
On 9/7/2012 6:36 PM, Rob Jarratt wrote:
I am ready for a couple of people to try out the user mode DECnet
router I have been writing. Is anyone interested in trying it out?
You will need to be able to compile C code and have pcap or winpcap
installed.
Here is an extract from the README:
User Mode DECnet Router Readme
==============================
This program is a DECnet router that implements version 2.0 of the
DECnet routing specification found here:
http://linux-decnet.sourceforge.net/docs/route20.txt
Features
--------
1. Runs on Windows either as a Windows Service, or as a console
program.
2. Runs on Linux as a daemon.
3. Full routing capability, so it avoids broadcasting all routing
messages to
entire network and kills looping packets.
4. Supports Ethernet (using pcap/winpcap).
5. Supports Johnny's bridge.
6. Can be extended to support other kinds of circuit (Cisco and
Multinet might
be examples, not tried).
7. Does dynamic DNS updates without blocking.
Limitations
-----------
1. Only tested on Windows Server 2003 and Raspberry Pi running Debian.
2. Does not support Phase III nodes.
3. Although it can be configured as a Level 1 node, Level 1 is not fully
supported. It has only been tested as a Level 2 (area router) node.
4. Limited testing on Raspberry Pi.
5. Performance not tested.
6. Not tested with multiple ethernets.
7. Limited testing with multiple bridges.
Regards
Rob
I have published everything up on CodePlex now. Here is the link:
https://route20.codeplex.com/
Regards
Rob
-----Original Message-----
From: owner-hecnet at Update.UU.SE [mailto:owner-hecnet at Update.UU.SE]
On Behalf Of Brian Hechinger
Sent: 08 September 2012 00:38
To: hecnet at Update.UU.SE
Subject: Re: [HECnet] Beta User Mode DECnet Router Available For Testing
Ok, but where do we find the source? :)
-brian
On 9/7/2012 6:36 PM, Rob Jarratt wrote:
I am ready for a couple of people to try out the user mode DECnet
router I have been writing. Is anyone interested in trying it out?
You will need to be able to compile C code and have pcap or winpcap
installed.
Here is an extract from the README:
User Mode DECnet Router Readme
==============================
This program is a DECnet router that implements version 2.0 of the
DECnet routing specification found here:
http://linux-decnet.sourceforge.net/docs/route20.txt
Features
--------
1. Runs on Windows either as a Windows Service, or as a console
program.
2. Runs on Linux as a daemon.
3. Full routing capability, so it avoids broadcasting all routing
messages to
entire network and kills looping packets.
4. Supports Ethernet (using pcap/winpcap).
5. Supports Johnny's bridge.
6. Can be extended to support other kinds of circuit (Cisco and
Multinet might
be examples, not tried).
7. Does dynamic DNS updates without blocking.
Limitations
-----------
1. Only tested on Windows Server 2003 and Raspberry Pi running Debian.
2. Does not support Phase III nodes.
3. Although it can be configured as a Level 1 node, Level 1 is not fully
supported. It has only been tested as a Level 2 (area router) node.
4. Limited testing on Raspberry Pi.
5. Performance not tested.
6. Not tested with multiple ethernets.
7. Limited testing with multiple bridges.
Regards
Rob
Got one here as a console server, works great.
Same model too. Recommended.
Sampsa
On 6 Sep 2012, at 15:37, Johnny Billquist wrote:
On 2012-09-06 15:12, Mark Benson wrote:
http://www.ebay.co.uk/itm/140833235554
Is this worth a punt? Looks to be untested save for that it powers on.
I've been looking for a DECServer that works on 10-baseT for a while.
What do you mean by "punt"?
Anyway, in general I like the DECserver 200 and 300. And there are pretty much always machines online on HECnet which can boot them.
(Both MIM:: and PONDUS:: for example.)
Johnny
On 09/06/2012 09:40 AM, Kari Uusim ki wrote:
On 6.9.2012 16:12, Mark Benson wrote:
http://www.ebay.co.uk/itm/140833235554
Is this worth a punt? Looks to be untested save for that it powers on.
I've been looking for a DECServer that works on 10-baseT for a while.
The seller is probably unable to test it without a MOP server.
I haven't checked the price on DECserver 200's lately, but newer ones
(DECserver 90, DECserver 700) are very expensive even on Ebay.
100s and 200s are practically giveaways, but that's practically a
giveaway price. They're great little machines.
-Dave
--
Dave McGuire, AK4HZ
New Kensington, PA
Must be UK English Johnny :-)
Punter translates to gambler so a punt for me at least translated as "attempt".
------Origineel bericht------
Van: Johnny Billquist
Afzender: owner-hecnet at Update.UU.SE
Aan: hecnet at Update.UU.SE
Beantwoorden: hecnet at Update.UU.SE
Onderwerp: Re: [HECnet] DECserver 200/MC - Worth a Punt?
Verzonden: 6 september 2012 16:37
On 2012-09-06 15:12, Mark Benson wrote:
http://www.ebay.co.uk/itm/140833235554
Is this worth a punt? Looks to be untested save for that it powers on.
I've been looking for a DECServer that works on 10-baseT for a while.
What do you mean by "punt"?
Anyway, in general I like the DECserver 200 and 300. And there are
pretty much always machines online on HECnet which can boot them.
(Both MIM:: and PONDUS:: for example.)
Johnny
On 2012-09-06 15:12, Mark Benson wrote:
http://www.ebay.co.uk/itm/140833235554
Is this worth a punt? Looks to be untested save for that it powers on.
I've been looking for a DECServer that works on 10-baseT for a while.
What do you mean by "punt"?
Anyway, in general I like the DECserver 200 and 300. And there are pretty much always machines online on HECnet which can boot them.
(Both MIM:: and PONDUS:: for example.)
Johnny
On 6.9.2012 16:12, Mark Benson wrote:
http://www.ebay.co.uk/itm/140833235554
Is this worth a punt? Looks to be untested save for that it powers on.
I've been looking for a DECServer that works on 10-baseT for a while.
The seller is probably unable to test it without a MOP server.
I haven't checked the price on DECserver 200's lately, but newer ones (DECserver 90, DECserver 700) are very expensive even on Ebay.
Kari
http://www.ebay.co.uk/itm/140833235554
Is this worth a punt? Looks to be untested save for that it powers on.
I've been looking for a DECServer that works on 10-baseT for a while.
--
Mark
On Thu, Aug 30, 2012 at 1:05 AM, Dave McGuire <mcguire at neurotica.com> wrote:
On 08/30/2012 12:10 AM, Gregg Levine wrote:
On Thu, Aug 16, 2012 at 11:25 PM, Dave McGuire <mcguire at neurotica.com> wrote:
On 08/16/2012 10:18 PM, Gregg Levine wrote:
So where are we with this package? I thought I'd write now and ask
rather then wait longer... Incidentally I've stuck a spare laptop in
place of the Compaq portable that was posing as the console for the
Sparc system. It's strange, I also attached the monitor that will be
connected to the Sparc to the laptop's monitor/projector port, and it
came up on the monitor instead of on the laptop screen first.
And the keyboard to the port for the keyboard and mouse on the laptop.
I've been in crunch mode, just getting caught up on a bunch of
long-neglected stuff around here. I'll get to it soon but not for a few
more days at least.
Hello!
Dave what news on your packing up a "care package" for my honorable self?
I thought I'd write since it has been a considerable while.
Not yet, sorry man. Another crunch time snuck up on me at work, and
I'm leaving (finally) for my very last Florida truck trip next week. It
will have to be after my return. I'm sorry for taking so long.
Incidentally the cybermen arranged around your establishment all say hello.
FEAR!
--
Dave McGuire, AK4HZ
New Kensington, PA
Hello!
Oh okay. Take your time, and be careful down there.
Why should you fear them? They were requested by your PDP-11 system to
protect it.
-----
Gregg C Levine gregg.drwho8 at gmail.com
"This signature fought the Time Wars, time and again."
On 08/30/2012 12:10 AM, Gregg Levine wrote:
On Thu, Aug 16, 2012 at 11:25 PM, Dave McGuire <mcguire at neurotica.com> wrote:
On 08/16/2012 10:18 PM, Gregg Levine wrote:
So where are we with this package? I thought I'd write now and ask
rather then wait longer... Incidentally I've stuck a spare laptop in
place of the Compaq portable that was posing as the console for the
Sparc system. It's strange, I also attached the monitor that will be
connected to the Sparc to the laptop's monitor/projector port, and it
came up on the monitor instead of on the laptop screen first.
And the keyboard to the port for the keyboard and mouse on the laptop.
I've been in crunch mode, just getting caught up on a bunch of
long-neglected stuff around here. I'll get to it soon but not for a few
more days at least.
Hello!
Dave what news on your packing up a "care package" for my honorable self?
I thought I'd write since it has been a considerable while.
Not yet, sorry man. Another crunch time snuck up on me at work, and
I'm leaving (finally) for my very last Florida truck trip next week. It
will have to be after my return. I'm sorry for taking so long.
Incidentally the cybermen arranged around your establishment all say hello.
FEAR!
--
Dave McGuire, AK4HZ
New Kensington, PA
On Thu, Aug 16, 2012 at 11:25 PM, Dave McGuire <mcguire at neurotica.com> wrote:
On 08/16/2012 10:18 PM, Gregg Levine wrote:
So where are we with this package? I thought I'd write now and ask
rather then wait longer... Incidentally I've stuck a spare laptop in
place of the Compaq portable that was posing as the console for the
Sparc system. It's strange, I also attached the monitor that will be
connected to the Sparc to the laptop's monitor/projector port, and it
came up on the monitor instead of on the laptop screen first.
And the keyboard to the port for the keyboard and mouse on the laptop.
I've been in crunch mode, just getting caught up on a bunch of
long-neglected stuff around here. I'll get to it soon but not for a few
more days at least.
-Dave
--
Dave McGuire, AK4HZ
New Kensington, PA
Hello!
Dave what news on your packing up a "care package" for my honorable self?
I thought I'd write since it has been a considerable while.
Incidentally the cybermen arranged around your establishment all say hello.
-----
Gregg C Levine gregg.drwho8 at gmail.com
"This signature fought the Time Wars, time and again."
Moro,
kuulemma sun pit k yd ruksittamassa oma.saunalahti -portaalista ensin tuo APN k ytt n.
---Saku
On Wed, Aug 29, 2012 at 2:13 PM, Sampsa Laine <sampsa at mac.com> wrote:
Won't connect with that APN, unfortunately..
Sampsa
On 29 Aug 2012, at 14:09, Saku Set l wrote:
Sampsa,
you can try to change your APN from "internet.saunalahti" to "internet4"
--Saku
On Mon, Aug 6, 2012 at 11:46 PM, Sampsa Laine <sampsa at mac.com> wrote:
Mobile operator called Saunalahti, they're a virtual operator on top of one of the two major Finnish operators, Elisa.
Speeds are amazing, middle of the woods, I get 6/3 Mbps up down on a 3G dongle hooked to my Draytek router, and like 12/5 on my iPad.
13 euros a month, unlimited bandwidth and as much speed as your device can drive.
Oh and they've got a 4G base station in town, like 7 km away, should get like 40+ Mbps there.
Then again, Helsinki cable operators are now offering 300/20 Mbps as their to product :)
Sampsa
On 6 Aug 2012, at 23:15, Gregg Levine wrote:
Hello!
Sampsa all kidding aside who did you pick? I can think of several of
the names but probably not available where you are.
Oh and the gang left Thursday last. They are around Dave's place.