1
0
mirror of https://github.com/PDP-10/its.git synced 2026-02-07 17:01:19 +00:00

Start a local Arpanet NCP.

This commit is contained in:
Lars Brinkhoff
2024-12-21 18:39:59 +01:00
parent e199d7d1ed
commit 80887208ce
6 changed files with 23 additions and 3 deletions

View File

@@ -11,6 +11,7 @@ set hi1 debug
set hi2 debug
attach -u mi1 4421::4431
attach -u hi1 33003:localhost:33004
attach -u hi2 33001:localhost:33002
set hi2 convert

View File

@@ -96,6 +96,11 @@ arpanet() {
(sleep 2; cd build/arpanet; ../../tools/simh/BIN/h316 imp62.simh >imp62.log 2>&1) &
started "Arpanet IMP" "$!"
export NCP="$PWD/ncp076"
rm -f "$NCP"
(sleep 5; ./tools/ncp/src/ncpd localhost 33003 33004 2>ncp076.log) &
started "Local NCP daemon" "$!"
}
help() {

View File

@@ -49,6 +49,11 @@ arpanet() {
(sleep 2; cd build/arpanet; ../../tools/simh/BIN/h316 imp62.simh >imp62.log 2>&1) &
started "Arpanet IMP" "$!"
export NCP="$PWD/ncp076"
rm -f "$NCP"
(sleep 5; ../linux-ncp/src/ncpd localhost 33003 33004 2>ncp076.log) &
started "Local NCP daemon" "$!"
}
help() {