1
0
mirror of https://github.com/PDP-10/its.git synced 2026-01-27 04:32:08 +00:00

Update networking documentation

Move the network support section in `README.md` to the relevant
sections of `doc/networking.md`
This commit is contained in:
Alice Wyan
2020-05-15 19:04:33 +02:00
committed by Alice Wyan
parent 97b684a026
commit a50bf2dde2
2 changed files with 26 additions and 26 deletions

View File

@@ -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)