diff --git a/PDP11/pdp11_xq.c b/PDP11/pdp11_xq.c index aa01a98b..e4eb3757 100644 --- a/PDP11/pdp11_xq.c +++ b/PDP11/pdp11_xq.c @@ -3311,19 +3311,28 @@ const char helpString[] = #endif "+sim> ATTACH %D udp:1234:remote.host.com:1234\n" "\n" - "2 Examples\n" - " To configure two simulators to talk to each other use the following\n" - " example:\n" + "2 Examples\n\n" + " Given a simulator that only wants to talk IP to the outside world use\n" + " the following example:\n" " \n" - " Machine 1\n" - "+sim> SET %D ENABLE\n" - "+sim> SET %D PEER=LOCALHOST:2222\n" - "+sim> ATTACH %D 1111\n" + "+sim> ATTACH %D NAT:\n" " \n" - " Machine 2\n" - "+sim> SET %D ENABLE\n" - "+sim> SET %U PEER=LOCALHOST:1111\n" - "+sim> ATTACH %U 2222\n" + " Given a simulator that only wants to talk IP but also wants to allow\n" + " incoming telnet use the following example:\n" + " \n" + "+sim> ATTACH %D NAT:tcp=2323:10.0.2.15:23\n" + " \n" + " This allows connections to host port 2323 to reach port 23 on the\n" + " simulated which is configured with IP Address 10.0.2.15\n" + "\n" + " Given a simulator that only wants to talk IP but also wants to allow\n" + " incoming telnet and ftp use the following example:\n" + " \n" + "+sim> ATTACH %D NAT:tcp=2323:10.0.2.15:23,tcp=2121:10.0.2.15:21\n" + " \n" + " This allows connections to host port 2323 to reach port 23 on the\n" + " simulated which is configured with IP Address 10.0.2.15 and connections\n" + " to host port 2121 to reach port 21 on the simulated system.\n" "\n" "1 Monitoring\n" " The %D device configuration and state can be displayed with one of the\n"