1
0
mirror of https://github.com/PDP-10/its.git synced 2026-04-30 13:42:06 +00:00

Updated build to make pdp10-ka-, pdp10-ks-, and pdp10-kl-based systems correctly set up IP network.

Now, KA, DB, and KL systems will set their IP address to the value of the IP make variable.
They wiil correctly define a host table entry for their machine.
They will correctly set up .mail.;names >.
They will correctly configure COMSAT for networking.

The resulting systems should allow COMSAT to come up, and with appropriate IMP configuration
in the "run" scripts to perform inbound and output IP network requests.
This commit is contained in:
Eric Swenson
2024-09-01 22:43:29 -07:00
parent b21002e7f9
commit 23a27a5345
17 changed files with 150 additions and 56 deletions

View File

@@ -48,13 +48,13 @@ proc quit_emulator {} {
}
proc initialize_comsat {} {
# commented out because you cannot run COMSAT initialization without network
# support
#respond "*" ":job comsat\r"
#respond "*" ":load .mail.;comsat launch\r"
#respond "*" "debug/-1\r"
#type "mfinit\033g"
respond "*" ":job comsat\r"
respond "*" ":load .mail.;comsat launch\r"
respond "*" "debug/-1\r"
type "mfinit\033g"
respond "Proceeding will launch Comsat" ":kill\r"
}
source build/kl10/include.tcl
source build/build.tcl

View File

@@ -512,7 +512,8 @@ DEFOPT XBL==25. ; # TCP connections
DEFOPT IMPP==1 ; Has IMP interface
DEFOPT KAIMP==1
DEFOPT IMPUS==106 ; ARPA net host number
DEFOPT IMPUS3==<IPADDR 192,168,1,100> ; Internet host number
DEFOPT IMPUS3==<IPADDR %IP%> ; IP address
DEFOPT NM%IMP==<IPADDR %NETMASK%> ; Subnet mask
DEFOPT NCPP==0 ; Flush NCP code
DEFOPT NNETCH==30. ; # NCP network channels
DEFOPT CHAOSP==1 ;NO CHAOS NET

View File

@@ -1,32 +0,0 @@
set console wru=034
set cpu its
set cpu idle
set cpu 2048k
set rpb dis
set tua dis
set lpt dis
set dc disable
set tty enabled
set tty 8b
at -u tty 10007
# VT52
at -u tty line=14,10018 speed=9600
# Tektronix
at -u tty line=13,10017 speed=9600
# Dial-up
at -u tty line=12,10015 speed=9600
set pd ena
set pd on
set mta enabled type=b
set rpa0 rp04
set rpa1 rp04
set rpa2 rp04
at rpa0 out/pdp10-kl/rp04.0
at rpa1 out/pdp10-kl/rp04.1
at rpa2 out/pdp10-kl/rp04.2
set ch enabled
set ch node=177002
set ch peer=localhost:44041
att ch 44042
load -i bin/kl10/boot/@.ddt
go

View File

@@ -57,5 +57,5 @@ while test -n "$1"; do
shift
done
tools/sims/BIN/pdp10-kl build/pdp10-kl/run
tools/sims/BIN/pdp10-kl out/pdp10-kl/run
exit 0