diff --git a/README.md b/README.md index e8fdf4ea..091f5e27 100644 --- a/README.md +++ b/README.md @@ -138,27 +138,3 @@ Some major applications: - TOPS-10 and WAITS emulator There is a [detailed list of all installed programs](doc/programs.md). - -### Network Support - -Currently, networking is only supported under the KLH10 and SIMH KA10 -and KL10 emulators. The SIMH KS10 does not have the necessary -support. As of this release, only the ITS monitor, host table tools, -and binary host table are installed. - -Currently, basic TCP network support is in the build, in addition to -both a TELNET/SUPDUP server, and both TELNET and SUPDUP clients. -Additionally, both an FTP server and client are included. Chaosnet TELNET -and FTP (CHTN and CFTP), but this requires support and configuration -in the emulator to actually use. SMTP mail inbound and outbound is included, -as well as local mail delivery. - -The KLH10 dskdmp.ini file has an IP address (192.168.1.100) and gateway IP -address (192.168.0.45) configured for the ITS system. The IP address -matches the address configured in SYSTEM; CONFIG > (as IMPUS3). Finally, -the HOST table source (SYSHST; H3TEXT >) and binary (SYSBIN; HOSTS3 >) -defined a host called DB-ITS.EXAMPLE.COM at the IP address 192.168.1.100. - -In order to change the IP address of the host, you can edit IP, GW, -and NETMASK in the file conf/network. You can also set a Chaosnet -address. After that, a full rebuild (e.g. `make clean all`) is required. diff --git a/doc/networking.md b/doc/networking.md index c6c34e80..0ee2e43b 100644 --- a/doc/networking.md +++ b/doc/networking.md @@ -1,5 +1,16 @@ # TCP/IP +Currently, networking is only supported under the KLH10 and SIMH KA10 +and KL10 emulators. The SIMH KS10 does not have the necessary +support. As of this release, only the ITS monitor, host table tools, +and binary host table are installed. + +Currently, basic TCP network support is in the build, in addition to +both a TELNET/SUPDUP server, and both TELNET and SUPDUP clients. +Additionally, both an FTP server and client are included. +SMTP mail inbound and outbound is included, +as well as local mail delivery. + ## IP address To change the machine's IP address you need to [rebuild ITS](NITS.md). @@ -19,7 +30,15 @@ This example adds port forwarding for telnet, ftp, and supdup. Modify according The `simh` (KS) simulator does not currently support networking. ### KLH10 -TBC... +The KLH10 dskdmp.ini file has an IP address (192.168.1.100) and gateway IP +address (192.168.0.45) configured for the ITS system. The IP address +matches the address configured in SYSTEM; CONFIG > (as IMPUS3). Finally, +the HOST table source (SYSHST; H3TEXT >) and binary (SYSBIN; HOSTS3 >) +defined a host called DB-ITS.EXAMPLE.COM at the IP address 192.168.1.100. + +In order to change the IP address of the host, you can edit IP, GW, +and NETMASK in the file conf/network. You can also set a Chaosnet +address. After that, a full rebuild (e.g. `make clean all`) is required. ## DNS Check out this [external guide](https://its.victor.se/wiki/dqdev) @@ -27,12 +46,17 @@ Check out this [external guide](https://its.victor.se/wiki/dqdev) ## Mail Check out this [external guide](https://its.victor.se/wiki/mail-setup) -## telnet, supdup +## telnet, supdup, ftp They work out of the box # Chaosnet +Chaosnet TELNET and FTP (CHTN and CFTP), are available +but this requires support and configuration +in the emulator to actually use. + TBC... + # Useful resources - [The ITS Wiki](https://its.victor.se/wiki/start)