File size: 57,438 Bytes
8ecd256 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 | ==Phrack Inc.==
Volume Four, Issue Forty, File 8 of 14
_________________________________
|| ||
|| BT Tymnet ||
|| British Telecom ||
|| ||
|| Part 1 of 3 ||
|| ||
|| Presented by Toucan Jones ||
|| ||
|| August 1, 1992 ||
||_________________________________||
"We played an instrumental role in first recognizing that they were there."
"If you mess with our network and we catch you
-- which we always do -- you will go down."
-- John Guinasso, director of global network security for Tymnet parent
BT North America in Information Week (July 13, 1992, Page 15).
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Welcome to Tymnet!
PART 1
A. BT Tymnet Access Location Index
B. BT-GNS Access Within Regional Bell Operating Companies
1. Bell Atlantic
2. BellSouth
3. Pacific Bell
4. Southwestern Bell
5. Southern New England Telephone
C. Database or Timesharing Companies on Tymnet
D. Service Classifications For Database or Timesharing Companies Using Tymnet
E. Summary of Global Network Services By Country
F. Terminal Identifiers
G. Login Options
PART 2
H. BT-GNS Worldwide Asynchronus Outdial Service
PART 3
I. BT-GNS Worldwide Access Sorted By Node
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
A. BT Tymnet Access Location Index
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Country Abbrev. Country Abbrev.
--------------- ------- --------------- -------
ANTIGUA ATG HONG KONG HKG
ARGENTINA ARG ISREAL ISR
AUSTRALIA AUS ITALY ITA
AUSTRIA AUT JAMAICA JAM
BAHAMAS BHS JAPAN JPN
BAHRAIN BHR KOREA KOR
BARBADOS BRB NETHERLANDS NLD
BELGIUM BEL NORTHERN MARIANAS SAP
BERMUDA BMU PANAMA PAN
CANADA CAN PERU PER
CAYMAN ISLANDS CAY PHILIPPINES PHL
COLUMBIA COL PURERTO RICO PRI
DENMARK DNK SWEDEN SWE
DOMINICAN RPUBLIC DOM SWITZERLAND CHE
EGYPT EGY TRINIDAD AND TOBAGO TTO
FRANCE FRA UNITED KINGDOM GBR
GREECE CRC URUGUAY URY
GUAM GUM USA USA
GUATEMALA GTM VIRGIN ISLANDS VIR
HONDURAS HND WEST GERMANY DDR
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
B. BT-GNS Access Within Regional Bell Operating Companies
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
TYMNET has gateways into many of the Regional Bell Operating Companies' packet
networks. For specifics on how to access these networks, please refer to the
information listed at the end of this listing.
DIALUP ACCESS M
PROV 100's bps N
NODE CITY ST CNTRY DENS 3 12 24 96 ACCESS NO. P COMMENTS
----- -------------------- -- ----- ---- ---------- ------------ - --------
02275 Birmingham AL USA MED B B C 205/822-8629 N @PLSK
03306 Berkeley CA USA MED B B 510/548-2121 N @PPS
03306 Berkeley CA USA MED C 510/548-5743 N @PPS
06272 El Segundo CA USA MED B B 310/640-8548 N @PPS
06272 El Segundo CA USA MED C 310/640-0350 N @PPS
06272 Fullerton CA USA MED B B 714-441-2777 N @PPS
06272 Fullerton CA USA MED C 714/441-1839 N @PPS
06272 Inglewood CA USA MED B B 310/216-7667 N @PPS
06272 Inglewood CA USA MED C 310/216-4469 N @PPS
06272 Los Angeles CA USA MED B B 213/480-1677 N @PPS
06272 Los Angeles-Downtn. CA USA MED B B 213/687-3727 N @PPS
03306 Mountain View CA USA MED B B 415/960-3363 N @PPS
03306 Mountain View CA USA MED C 415/961-2102 N @PPS
03306 Oakland CA USA MED B B C 510/893-9889 N @PPS
03306 Palo Alto CA USA MED B B 415/325-4666 N @PPS
03306 Palo Alto CA USA MED C 415/323-2019 N @PPS
06272 Pasadena CA USA MED B B 818-356-0780 N @PPS
06272 Pasadena CA USA MED C 818/356-0487 N @PPS
03306 San Francisco CA USA MED B B 415/362-2280 N @PPS
03306 San Francisco CA USA MED B B C 415/543-8275 N @PPS
03306 San Francisco CA USA MED B B 415/626-5380 N @PPS
03306 San Francisco CA USA MED B B C 415/626-7477 N @PPS
03306 San Francisco CA USA MED C 415/362-7579 N @PPS
03306 San Jose CA USA MED B B 408-920-0888 N @PPS
03306 San Jose CA USA MED C 408/298-0584 N @PPS
06272 Santa Ana CA USA MED B B 714-972-9844 N @PPS
06272 Santa Ana CA USA MED C 714/972-2314 N @PPS
06272 Van Nuys CA USA MED B B 818-780-1066 N @PPS
06272 Van Nuys CA USA MED C 818/780-5468 N @PPS
02727 Bridgeport CT USA MED B B C 203/366-6972 N @CONNNET
02727 Bristol CT USA MED B B C 203/589-5100 N @CONNNET
02727 Canaan CT USA MED B B C 203/824-5103 N @CONNNET
02727 Clinton CT USA MED B B C 203/669-4243 N @CONNNET
02727 Danbury CT USA MED B B C 203/743-2906 N @CONNNET
02727 Danielson CT USA MED B B C 203/779-1880 N @CONNNET
02727 Hartford/Middletown CT USA MED B B C 203/724-6219 N @CONNNET
02727 Meriden CT USA MED B B C 203/237-3460 N @CONNNET
02727 New Haven CT USA MED B B C 203/776-1142 N @CONNNET
02727 New London CT USA MED B B C 203/443-0884 N @CONNNET
02727 New Milford CT USA MED B B C 203/355-0764 N @CONNNET
02727 Norwalk CT USA MED B B C 203/866-5305 N @CONNNET
02727 Norwich/New London CT USA MED B B C 203/443-0884 N @CONNNET
02727 Old Greddwich CT USA MED B B C 203/637-8872 N @CONNNET
02727 Old Saybrook CT USA MED B B C 203/388-0778 N @CONNNET
02727 Seymour CT USA MED B B C 203/881-1455 N @CONNNET
02727 Stamford CT USA MED B B C 203/324-9701 N @CONNNET
02727 Storrs CT USA MED B B C 203/429-4243 N @CONNNET
02727 Stratford/Bridgeport CT USA MED B B C 203/366-6972 N @CONNNET
02727 Torrington CT USA MED B B C 203/482-9849 N @CONNNET
02727 Waterbury CT USA MED B B C 203/597-0064 N @CONNNET
02727 Willimantic CT USA MED B B C 203/456-4552 N @CONNNET
02727 Windsor CT USA MED B B C 203/688-9330 N @CONNNET
02727 Windsor Lcks/Enfield CT USA MED B B C 203/623-9804 N @CONNNET
06254 Washington DC USA MED B B 202/328-0619 N @PDN
06254 Washington DC USA MED B B 202/479-7214 N @PDN
06254 Washington DC USA MED B B 202/546-5549 N @PDN
06254 Washington (Downtown DC USA MED B B 202/393-6003 N @PDN
06254 Washington (Midtown) DC USA MED B B 202/293-4641 N @PDN
03526 Dover DE USA MED B B C 410/734-9465 N @PDN
03526 Georgetown DE USA MED B B C 302/856-7055 N @PDN
03526 Newark DE USA MED B B C 302/366-0800 N @PDN
03526 Wilmington DE USA MED C 302/655-1144 N @PDN
03526 Wilmington DE USA MED B B 302/428-0030 N @PDN
04125 Boca Raton FL USA MED B B 407/392-4801 N @PLSK
04125 Ft. Pierce FL USA MED B B 407/461-0996 N @PLSK
07064 Jacksonville FL USA MED B B C 904/354-1032 N @PLSK
04125 Miami FL USA MED B B C 305/661-0437 N @PLSK
04125 Plantation FL USA MED B B C 305/791-5663 N @PLSK
07064 St. Augustine FL USA MED B B 904/825-1101 N @PLSK
04125 Stuart FL USA MED B B 407/288-0185 N @PLSK
04125 W. Hollywood FL USA MED B B 305/962-8226 N @PLSK
04125 W. Palm Beach FL USA MED B B C 407/842-8990 N @PLSK
10200 Athens GA USA MED B B C 404/613-1289 N @PLSK
10200 Atlanta GA USA MED B B 404/261-4633 N @PLSK
10200 Atlanta GA USA MED B B C 404/266-9403 N @PLSK
10200 Columbus GA USA MED B B 404/324-5771 N @PLSK
10200 Rome GA USA MED B B 404/234/6542 N @PLSK
05443 Hays KS USA MED B B 913/625-8100 N @MRLK
05443 Hutchinson KS USA MED B B 316/669-1052 N @MRLK
05443 Kansas City KS USA MED B B 316/225-9951 N @MRLK
05443 Lawrence KS USA MED B B 913/841-5580 N @MRLK
05443 Manhattan KS USA MED B B 913/539-9291 N @MRLK
05443 Parsons KS USA MED B B 316/421-0620 N @MRLK
05443 Salina KS USA MED B B 913/825-4547 N @MRLK
05443 Topeka KS USA MED B B 913/235-1909 N @MRLK
05443 Wichita KS USA MED B B 316/269-1996 N @MRLK
06254 Bethesda MD USA MED B B 301/986-9942 N @PDN
06254 Colesville MD USA MED B B C 301/989-9324 N @PDN
06254 Hyattsville MD USA MED B B 301/779-9935 N @PDN
06254 Laurel MD USA MED B B C 301/490-9971 N @PDN
06254 Rockville MD USA MED B B 301/340-9903 N @PDN
06254 Silver Spring MD USA MED B B 301/495-9911 N @PDN
04766 Bridgeton/St. Louis MO USA MED B B 314/622-0900 N @MRLK
04766 St. Louis MO USA MED B B 314/622-0900 N @MRLK
11060 Chapel Hill NC USA MED B B 919/933-2580 N @PLSK
11060 Durham NC USA MED B B 919/687-0181 N @PLSK
11060 Raleigh NC USA MED B B C 919/664-8077 N @PLSK
07771 Bernardsville NJ USA MED B B C 908/766-7138 N @PDN
07771 Clinton NJ USA MED B B 908/730-8693 N @PDN
07771 Dover NJ USA MED B B C 201/361-9211 N @PDN
07771 Eatontown/Red Bank NJ USA MED B B C 908/758-8000 N @PDN
07771 Elizabeth NJ USA MED B B C 908/289-5100 N @PDN
07771 Englewood NJ USA MED B B C 201/871-3000 N @PDN
07771 Freehold NJ USA MED B B C 908/780-8890 N @PDN
07771 Hackensack NJ USA MED B B C 201/343-9200 N @PDN
07771 Jersey City NJ USA MED B B C 201/659-3800 N @PDN
07771 Livingston NJ USA MED B B C 201/533-0561 N @PDN
07771 Long Branch/Red Bank NJ USA MED B B C 908/758-8000 N @PDN
07771 Madison NJ USA MED B B C 201/593-0004 N @PDN
07771 Metuchen NJ USA MED B B C 908/906-9500 N @PDN
07771 Middletown NJ USA MED B B C 908/957-9000 N @PDN
07771 Morristown NJ USA MED B B C 201/455-0437 N @PDN
07771 New Boundland NJ USA MED B B C 201/697-9380 N @PDN
07771 New Brunswick NJ USA MED B B C 908/247-2700 N @PDN
07771 Newark NJ USA MED B B C 201/623-0083 N @PDN
07771 Passaic NJ USA MED B B C 201/473-6200 N @PDN
07771 Paterson NJ USA MED B B C 201/345-7700 N @PDN
07771 Phillipsburg NJ USA MED B B C 908/454-9270 N @PDN
07771 Pompton Lakes NJ USA MED B B C 201/835-8400 N @PDN
07771 Red Bank NJ USA MED B B C 908/758-8000 N @PDN
07771 Ridgewood NJ USA MED B B C 201/445-4800 N @PDN
07771 Somerville NJ USA MED B B C 908/218-1200 N @PDN
07771 South River NJ USA MED B B C 908/390-9100 N @PDN
07771 Spring Lake NJ USA MED B B C 908/974-0850 N @PDN
07771 Toms River NJ USA MED B B C 908/286-3800 N @PDN
07771 Washington NJ USA MED B B C 908/689-6894 N @PDN
07771 Wayne/Paterson NJ USA MED B B C 201/345-7700 N @PDN
06510 Ada OK USA MED B B 405/436-0252 N @MRLK
06510 Altus OK USA MED B B 405/477-0321 N @MRLK
06510 Alva OK USA MED B B 405/327-1441 N @MRLK
06510 Ardmore OK USA MED B B 405/223-8086 N @MRLK
Bartlesville OK USA MED B B 918/336-6901 N @MRLK
06510 Clinton OK USA MED B B 405/323-8102 N @MRLK
06510 Durant OK USA MED B B 405/924-2680 N @MRLK
06510 Enid OK USA MED B B 405/242-8221 N @MRLK
06510 Lawton OK USA MED B B 405/248-8772 N @MRLK
Mcalester OK USA MED B B 918/426-0900 N @MRLK
Miami OK USA MED B B 918/540-1551 N @MRLK
Muskogee OK USA MED B B 918/683-1114 N @MRLK
06510 Oklahoma City OK USA MED B B 405/236-0660 N @MRLK
06510 Ponca City OK USA MED B B 405/762-9926 N @MRLK
Sallisaw OK USA MED B B 918/775-7713 N @MRLK
06510 Shawnee OK USA MED B B 405/273-0053 N @MRLK
06510 Stillwater OK USA MED B B 405/377-5500 N @MRLK
Tulsa OK USA MED B B 918/583-6606 N @MRLK
06510 Woodward OK USA MED B B 405/256-9947 N @MRLK
03526 Allentown PA USA MED B B 215/435-0266 N @PDN
Altoona PA USA MED C 814/949-0505 N @PDN
Altoona PA USA MED B B 814/946-8639 N @PDN
03526 Ambler PA USA MED B B 215/283-2170 N @PDN
10672 Ambridge PA USA MED B B 412/266-9610 N @PDN
10672 Carnegie PA USA MED B B 412/276-1882 N @PDN
10672 Charleroi PA USA MED B B 412/483-9100 N @PDN
03526 Chester Heights PA USA MED B B 215/358-0820 N @PDN
03526 Coatesville PA USA MED B B 215/383-7212 N @PDN
10672 Connellsville PA USA MED B B 412/628-7560 N @PDN
03526 Downington/Coates. PA USA MED B B 215/383-7212 N @PDN
03562 Doylestown PA USA MED B B 215/340-0052 N @PDN
03562 Germantown PA USA MED B B 215-843-4075 N @PDN
10672 Glenshaw PA USA MED B B 412/487-6868 N @PDN
10672 Greensburg PA USA MED B B 412/836-7840 N @PDN
Harrisburg PA USA MED C 717/238-0450 N @PDN
Harrisburg PA USA MED B B 717/236-3274 N @PDN
10672 Indiana PA USA MED B B 412/465-7210 N @PDN
03526 King of Prussia PA USA MED B B 215/270-2970 N @PDN
03526 Kirklyn PA USA MED B B 215/789-5650 N @PDN
03526 Lansdowne PA USA MED B B 215/626-9001 N @PDN
10672 Latrobe PA USA MED B B 412/537-0340 N @PDN
Lemoyne/Harrisburg PA USA MED B B 717/236-3274 N @PDN
10672 McKeesport PA USA MED B B 412/673-6200 N @PDN
10672 New Castle PA USA MED B B 412/658-5982 N @PDN
10672 New Kensington PA USA MED B B 412/337-0510 N @PDN
03526 Norristown PA USA MED B B 215/270-2970 N @PDN
03526 Paoli PA USA MED B B 215/648-0010 N @PDN
Philadelphia PA USA MED C 215/625-0770 N @PDN
Philadelphia PA USA MED B B 215/923-7792 N @PDN
10672 Pittsburgh PA USA MED C 412/261-9732 N @PDN
10672 Pittsburgh PA USA MED B B 412-687-4131 N @PDN
10672 Pittsburgh PA USA MED B B 412/281-8950 N @PDN
10672 Pottstown PA USA MED B B 215/327-8032 N @PDN
03526 Quakertown PA USA MED B B 215/538-7032 N @PDN
03526 Reading PA USA MED B B 215/375-7570 N @PDN
10672 Rochester PA USA MED B B 412/728-9770 N @PDN
03526 Scranton PA USA MED C 717/341-1860 N @PDN
03526 Scranton PA USA MED B B 717/348-1123 N @PDN
10672 Sharon PA USA MED B B 412/342-1681 N @PDN
03526 Tullytown PA USA MED B B 215/547-3300 N @PDN
10672 Uniontown PA USA MED B B 412/437-5640 N @PDN
03562 Valley Forge PA USA MED B B 215/270-2970 N @PDN
10672 Washington PA USA MED B B 412/223-9090 N @PDN
03526 Wayne PA USA MED B B 215/341-9605 N @PDN
10672 Wilkinsburg PA USA MED B B 412/241-1006 N @PDN
06254 Alexandria VA USA MED B B 703/683-6710 N @PDN
06254 Arlington VA USA MED B B 703/524-8961 N @PDN
06254 Mclean VA USA MED B B 703/848-2941 N @PDN
B=BELL 103/113 (300 bps) or BELL 212A (1200 bps) compatible modems
C=CCITT V.21(300 bps) or CCITT V.22 bis(2400 bps) or CCITT V.32 compatible
modems.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
B1. Bell Atlantic
~~~~~~~~~~~~~
@PDN BELL ATLANTIC - NETWORK NAME IS PUBLIC DATA NETWORK (PDN)
(CONNECT MESSAGE)
...<CR> (SYNCHRONIZES DATA SPEEDS)
WELCOME TO THE BPA/DST PDN
*.T <CR> (TYMNET ADDRESS)
131069 (ADDRESS CONFIRMATION - TYMNET DNIC)
COM (CONFIRMATION OF CALL SET-UP)
-GWY 0XXXX- TYMNET: PLEASE LOG IN: (HOST # WITHIN DASHES)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
B2. BellSouth
~~~~~~~~~
@PLSK BELLSOUTH - NETWORK NAME IS PULSELINK
(CONNECT MESSAGE)
... <CR> (SYNCHRONIZES DATA SPEEDS)
(DOES NOT ECHO TO THE TERMINAL)
CONNECTED
PULSELINK
13106 (TYMNET ADDRESS)
(DOES NOT ECHO TO THE TERMINAL)
PULSELINK: CALL CONNECTED TO 1 3106
-GWY 0XXXX- TYMNET: PLEASE LOG IN: (HOST # WITHIN DASHES)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
B3. Pacific Bell
~~~~~~~~~~~~
@PPS PACIFIC BELL - NETWORK NAME IS PUBLIC PACKET SWITCHING (PPS)
(CONNECT MESSAGE)
...<CR (SYNCHRONIZES DATA SPEEDS)>
(DOES NOT ECHO TO THE TERMINAL)
ONLINE 1200
WELCOME TO PPS: 415-XXX-XXXX
131069 (TYMNET ADDRESS)
(DOES NOT ECHO UNTIL TYMNET RESPONDS)
-GWY 0XXXX- TYMNET: PLEASE LOG IN: (HOST # WITHIN DASHES)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
B4. Southwestern Bell
~~~~~~~~~~~~~~~~~
@MRLK - SOUTHWESTERN BELL TELEPHONE- NETWORK NAME IS MICROLINK II(R)
(CONNECT MESSAGE)
(PLEASE TYPE YOUR TERMINAL IDENTIFIER)
A (YOUR TERMINAL IDENTIFIER)
WELCOME TO MICROLINK II
-XXXX:01-030-
PLEASE LOG IN:
.T <CR> (USERNAME TO ACCESS TYMNET)
HOST: CALL CONNECTED
-GWY 0XXXX- TYMNET: PLEASE LOG IN:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
B5. Southern New England Telephone
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@CONNNET - SOUTHERN NEW ENGLAND TELEPHONE - NETWORK NAME IN CONNNET
(CONNECT MESSAGE)
HH<CR> (SYNCHRONIZES DATA SPEEDS)
(DOES NOT ECHO TO THE TERMINAL)
CONNNET
.T<CR> (MUST BE CAPITAL LETTERS)
26-SEP-88 18:33 (DATA)
031069 (ADDRESS CONFIRMATION)
COM (CONFIRMATION OF CALL SET-UP)
-GWY OXXXX-TYMNET: PLEASE LOG IN:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
C. Database or Timesharing Companies on Tymnet
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
APCUG "GLOBALNET" BBS
Bloodstock Research Information
BRS Information Technologies
BT, North America (Dialcom)
Cartermill, Inc.
Charles Schwab and Company, Inc.
Chemical Abstracts Services (CAS)
Commercial SABRE
Commodity Systems, Inc.
CompuServe, Inc.
Compusource
Computer Intelligence
Connect, Inc.
Creative Automation Co.
Delphi
Dialog Information Services, Inc.
Digital Equipment Corp.
Diversified Network Applications, Inc.
Dow Jones & Company, Inc.
Dun and Bradstreet
Electronic Data Systems Corp.
Export Network, Inc.
Gibson Information Systems (GIS)
Global Interconnect Communications, Inc.
Idioma Translation
Interactive Data Corp.
Jeppesen DataPlan
Mead Data Central
Metro On-Line Services, Ltd.
National Library of Medicine (NLM)
NewsNet, Inc.
Nikkei Telecom Japan
Nuclear Power Experience
OCR Services, Inc.
Official Airline Guide (OAG)
ORBIT Search Service
Power Computing Company
Rand McNally - TDM, Inc.
Real Estate Investment Network
SeniorNet
Southeast Regional Data Center (SERDAC)
SPEED>S Corporation
The Jockey Club Information Systems
TRW Business Credit Division
TRW Information Services
USA TODAY Sports Center
West Publishing Company (WEST)
Xerox Computer Services (XCS)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
D. Service Classifications For Database or Timesharing Companies Using Tymnet
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
MAJOR CATEGORIES:
Business Investments
Communications Legal
Computers Livestock
Economics Marketing
Education Medicine
Electronic Mail Natural Resources
Environment Real Estate
Finance Safety
Games Science
General Interest Sports
Government Trade
Health Care Transportation
Insurance Travel
International
OTHER CATEGORIES
Accounting Law
Airlines Management
Asia Manufacturing
Aviation Market Analysis
Batch (Processing) Mines
Car Network
Chats News
Chemistry Nuclear Power
Commodities Outsourcing
Computing Patents
Conferences PC
Corporate Racing
Credit (Business or Consumer) Records
Data (Processing) Registration
Direct Marketing Research
Disaster Recovery Reservations
DMV RJE
Electric Power Route Planning
Engineering Schedules
Export SEC
Fax Services Securities
Fictitious Names Software
Flight Plans Tax
Hotel Timesharing
Horses Translation
Information UCC
Instruction User Group
IRS (Internal Revenue Service) Vendors
Japan Weather
Languages
BT TYMNET's Global Network Service (GNS) combines three level of international
services:
1. BT TYMNET GLOBAL NETWORK CONNECTION SERVICE
2. ENHANCED GLOBAL CONNECTION SERVICE
3. BASIC GLOBAL CONNECTION SERVICE
BT TYMNET GLOBAL NETWORK CONNECTION SERVICE (TGN) is currently offered in the
following countries:
Australia Netherlands
Belgium New Zealand
Canada Spain
Denmark Sweden
France Switzerland
Germany United Kingdom
Italy United States
Japan
BT TYMNET GLOBAL NETWORK CONNECTION SERVICE are BT TYMNET owned and operated
sites and equipment. Global, Regional and local support is provided end-to-end
by BT TYMNET's trained and experienced technical staff, in place worldwide
since 1977. Round the clock coverage for trouble reporting and response on
critical problems is provided. BT TYMNET Global Network Service enhanced
pricing, local currency billing and end-user billing is available.
ENHANCED GLOBAL CONNECTION SERVICE (EGC) complement the service described above
and is currently available from the following locations:
Alaska (USA)* Israel
Antigua Italy
Argentina Jamaica
Australia Korea
Austria Netherland Antilles
Bahama Panama
Bahrain Peru
Barbados Philippines
Belgium Puerto Rico*
Bermuda Saudi Arabia
Cayman Islands Sweden
Denmark Switzerland
Dominican Republic Tortola
France Trinidad and Tobago
Germany United Kingdom
Guam* US Virgin Islands
Guatemala
Honduras
Hong Kong
* USA Domestic services and rates apply
ENHANCED GLOBAL CONNECTION SERVICE is offered by a local Telecommunication
Administration equipped with BT TYMNET technology. In many instances the
administration is using BT TYMNET's Network Supervisors to operate the packet
service in their area.
All ENHANCED GLOBAL CONNECTION SERVICE locations offer direct TYM2 (TYMNET's
proprietary) protocol connection to the BT TYMNET Public Network and thus may
offer BT TYMNET's comprehensive array of enhanced protocol services. Most
currently offer BT TYMNET asynchronous access and X.25 service. Naturally, a
close affinity exists between BT TYMNET and ENHANCED GLOBAL CONNECTION SERVICE
providers so a very high degree of service and support exists in these
locations. TYMUSA, a universal dial-up service which is billed back to the
customer's home office, is offered from all the above locations.
BASIC GLOBAL CONNECTION SERVICE (BGC) completes the full range of international
connectivity and is currently available from the following locations:
Antigua Greenland* Panama
Argentina Gudaelope* Peru
Australia Guam & Saipan Philippines
Austria Guatemala Portugal
Bahamas Honduras Puerto Rico
Bahrain Hong Kong Qatar
Barbados Hungary Reunion Island
Belgium Iceland Saudi Arabia
Bermuda India San Marino*
Brazil Indonesia Senegal*
Canada Ireland Singapore
Cayman Islands Israel South Africa
Chile Italy South Korea
China Ivory Coast Spain
Colombia Jamaica Sweden
CostaRica Japan Switzerland
Curacao Kuwait Taiwan
Cyprus* Luxembourg Thailand
Denmark Macau* Tortola (BVI)*
Djibouti* Malaysia Trinidad & Tobago
Dominican Republic Malta* Tunisia*
Egypt Mauritius* Turkey
Faroe Islands* Mexico UAE
Finland Mozambique* US Virgin Islands
France Nth. Antilles* USSR
French Antilles Netherlands United Kingdom
French Guiana New Caledonia* United States
French Polynesia* New Zealand Uruguay
Gabon Northern Marianas Vanuatu*
Gambia Norway Yugoslavia*
Germany Zimbabwe
Greece
* Information will be available on the next update
BASIC GLOBAL CONNECTION SERVICE providers connect their networks to BT TYMNET
exclusively via X.75 protocol gateways. The CCITT recommendation X.75 is
closely related to the better known CCITT X.25 recommendation and provides a
reliable communication channel for interworking between Public Data Networks.
As a supplier of network technology to US IRC's and foreign carriers for more
than 10 years, BT TYMNET has a wealth of experience with the X.75 standard and
actively participates in its development. BT TYMNET X.75 software has evolved
into a sophisticated product providing numerous advanced features not found in
other X.75 implementations. BT TYMNET maintains and supports more X.75 gateway
links than any other network in the world.
All of BT TYMNET's X.75 gateways are supported by BT TYMNET's International
Network Services (INS) group which ensures that all the gateways are configured
to provide a uniform interface to BT TYMNET regardless of the origination
network.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
E. Summary of Global Network Services By Country
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Note: TYMNET GLOBAL NETWORK (TGN) use BT TYMNET's assigned DNIC of 3106. The
other DNICs listed in the table below are the DNICs of the ENHANCED
GLOBAL CONNECTION (EGC) and BASIC GLOBAL CONNECTION (BGC) service
providers.
COUNTRY | TGN || DNIC/Network >> EGC | BGC |
---------------|--------||----------------->>----------|--------|
Alaska | || 3135/Alascom >> X | |
---------------|--------||----------------->>----------|--------|
Antigua | || 3443/Aganet >> X | |
---------------|--------||----------------->>----------|--------|
Argentina | || 7220/ARPAC >> X | |
---------------|--------||----------------->>----------|--------|
Argentina | || 7222/ARPAC >> | X |
---------------|--------||----------------->>----------|--------|
Australia | X || BT TYMNET >> | |
---------------|--------||----------------->>----------|--------|
Australia | || 5052/AUSPAC >> | X |
---------------|--------||----------------->>----------|--------|
Australia | || 5053/MIDAS >> | X |
---------------|--------||----------------->>----------|--------|
Austria | || 2322/DATEX-P >> | X |
---------------|--------||----------------->>----------|--------|
Austria | || 2329/RADIO AUST >> X | |
---------------|--------||----------------->>----------|--------|
Bahamas | || 3640/BaTelCo >> X | |
---------------|--------||----------------->>----------|--------|
Bahrain | || 4263/BAHNET >> X | |
---------------|--------||----------------->>----------|--------|
Barbados | || 3423/IDAS >> X | |
---------------|--------||----------------->>----------|--------|
Belgium | X || BT TYMNET >> | |
---------------|--------||----------------->>----------|--------|
Belgium | || 2062/DCS >> | X |
---------------|--------||----------------->>----------|--------|
Belgium | || 206/DCS >> | X |
---------------|--------||----------------->>----------|--------|
Belgium | || 2069/DCS >> | X |
---------------|--------||----------------->>----------|--------|
Bermuda | || 3503/Bermudanet >> X | |
---------------|--------||----------------->>----------|--------|
Brazil | || 7240/Interdata >> | X |
---------------|--------||----------------->>----------|--------|
Brazil | || 7241/Renpac >> | X |
---------------|--------||----------------->>----------|--------|
Cameroun | || 6261/Campac >> | X |
---------------|--------||----------------->>----------|--------|
Canada | X || BT TYMNET >> | |
---------------|--------||----------------->>----------|--------|
Canada | || 3020/Datapac >> | X |
---------------|--------||----------------->>----------|--------|
Canada | || 3025/Globedat >> | X |
---------------|--------||----------------->>----------|--------|
Canada | || 3028/CNCP-PACKET>> | |
| || Network >> | X |
---------------|--------||----------------->>----------|--------|
Canada | || 3029/CNCP-INFO >> | |
| || SWITCH >> | X |
---------------|--------||----------------->>----------|--------|
Cayman Islands | || 3463/IDAS >> X | |
---------------|--------||----------------->>----------|--------|
Chile | || 3104/Entel >> | X |
---------------|--------||----------------->>----------|--------|
Chile | || 7302/Entel >> | X |
---------------|--------||----------------->>----------|--------|
Chile | || 7303/Chile-PAC >> | X |
---------------|--------||----------------->>----------|--------|
Chile | || 7305/VTR >> | X |
---------------|--------||----------------->>----------|--------|
China | || 4600/PTELCOM >> | X |
---------------|--------||----------------->>----------|--------|
China | || 4602/CHINAPAK >> | X |
---------------|--------||----------------->>----------|--------|
Columbia | || 7320/DAPAQ >> | X |
---------------|--------||----------------->>----------|--------|
Columbia | || 7322/COLDAPAQ >> | X |
---------------|--------||----------------->>----------|--------|
Costa Rica | || 7122/RACSAPAC >> | X |
---------------|--------||----------------->>----------|--------|
Costa Rica | || 7129/RACSAPAC >> | X |
---------------|--------||----------------->>----------|--------|
Cyprus | || 2802/Cytapac >> | X |
---------------|--------||----------------->>----------|--------|
Cyprus | || 2803/Cytapac >> | X |
---------------|--------||----------------->>----------|--------|
Cyprus | || 2808/Cytapac >> | X |
---------------|--------||----------------->>----------|--------|
Cyprus | || 2809/Cytapac >> | X |
---------------|--------||----------------->>----------|--------|
Denmark | X || BT TYMNET >> | |
---------------|--------||----------------->>----------|--------|
Denmark | || 2382/Datapak >> | X |
---------------|--------||----------------->>----------|--------|
Denmark | || 2383/Datapak >> | X |
---------------|--------||----------------->>----------|--------|
Djibouti | || 6328/Djipac >> | X |
---------------|--------||----------------->>----------|--------|
Dominican Rep | || 3700/UDTS-I >> X | |
---------------|--------||----------------->>----------|--------|
Egypt | || 6020/ARENTO >> | X |
---------------|--------||----------------->>----------|--------|
Egypt | || 6023/EGYPTNET >> | X |
---------------|--------||----------------->>----------|--------|
Faroe Islands | || 2881/Faroepac >> | X |
---------------|--------||----------------->>----------|--------|
Finland | || 2442/Datapak >> | X |
---------------|--------||----------------->>----------|--------|
France | X || BT TYMNET >> | |
---------------|--------||----------------->>----------|--------|
France | || 2080/Transpac >> | X |
---------------|--------||----------------->>----------|--------|
France | || 2081/NTI >> | X |
---------------|--------||----------------->>----------|--------|
Fr Antillies | || 3400/Dompac >> | X |
---------------|--------||----------------->>----------|--------|
Fr Guiana | || 7420/Dompac >> | X |
---------------|--------||----------------->>----------|--------|
Fr. Polynesia | || 5470/Tompac >> | |
---------------|--------||----------------->>----------|--------|
Gabon | || 6282/Gabonpac >> | X |
---------------|--------||----------------->>----------|--------|
Germany F.R | X || BT TYMNET >> | |
---------------|--------||----------------->>----------|--------|
Germany F.R | || 2624/DATEX-P >> | X |
---------------|--------||----------------->>----------|--------|
Greece | || 2022/Helpak >> | X |
---------------|--------||----------------->>----------|--------|
Greece | || 2023/Hellaspac >> | X |
---------------|--------||----------------->>----------|--------|
Greenland | || 2901/KANUPAX >> | X |
---------------|--------||----------------->>----------|--------|
Guadeloupe | || 3441/ >> | X |
---------------|--------||----------------->>----------|--------|
Guam | || 5351/PCINET >> X | |
---------------|--------||----------------->>----------|--------|
Guatemala | || 7043/GAUTEL >> X | |
---------------|--------||----------------->>----------|--------|
Honduras | || 7080/HONDUTEL >> X | |
---------------|--------||----------------->>----------|--------|
Hong Kong | || 4542/INTELPAK >> X | |
---------------|--------||----------------->>----------|--------|
Hong Kong | || 4545/DATAPAK >> | X |
---------------|--------||----------------->>----------|--------|
Hong Kong | || 4546/DATAPAC >> | X |
---------------|--------||----------------->>----------|--------|
Hungary | || 2160/NEDEX >> | X |
---------------|--------||----------------->>----------|--------|
Hungary | || 2161/DATEX >> | X |
---------------|--------||----------------->>----------|--------|
Iceland | || 2740/Icepak >> | X |
---------------|--------||----------------->>----------|--------|
India | || 4042/GPSS >> | X |
---------------|--------||----------------->>----------|--------|
Indonesia | || 5101/SKDP >> | X |
---------------|--------||----------------->>----------|--------|
Ireland | || 2724/Eirpac >> | X |
---------------|--------||----------------->>----------|--------|
Israel | || 4251/Isranet >> | X |
---------------|--------||----------------->>----------|--------|
Italy | X || BT TYMNET >> | |
---------------|--------||----------------->>----------|--------|
Italy | || 2222/Darbo-Ital >> | X |
---------------|--------||----------------->>----------|--------|
Italy | || 2227/Italcable >> | X |
---------------|--------||----------------->>----------|--------|
Ivory Coast | || 6122/SYTRANPAC >> | X |
---------------|--------||----------------->>----------|--------|
Jamaica | || 3380/Jamintel >> X | |
---------------|--------||----------------->>----------|--------|
Japan | || 4400/Global VAN >> | X |
---------------|--------||----------------->>----------|--------|
Japan | || 4404/JAIS >> | X |
---------------|--------||----------------->>----------|--------|
Japan | X || 4406/NIS- >> | |
| || BT TYMNET >> | |
---------------|--------||----------------->>----------|--------|
Japan | || 4407/ >> | X |
---------------|--------||----------------->>----------|--------|
Japan | || 4401/NTT DDX >> | X |
---------------|--------||----------------->>----------|--------|
Japan | || 4408/Venus-P >> | X |
---------------|--------||----------------->>----------|--------|
Japan | || 4410/NI+CI >> | X |
---------------|--------||----------------->>----------|--------|
Japan | || 4411/K-NET >> | X |
---------------|--------||----------------->>----------|--------|
Korea Rep | || 4501/DACOM-NET >> | X |
---------------|--------||----------------->>----------|--------|
Kuwait | || 4190/ >> | X |
---------------|--------||----------------->>----------|--------|
Kuwait | || 4263/KUPAC >> | X |
---------------|--------||----------------->>----------|--------|
Lebanon | || 4155/RADUS >> | X |
---------------|--------||----------------->>----------|--------|
Luxembourg | || 2704/Luxpac-X.25>> | X |
---------------|--------||----------------->>----------|--------|
Luxembourg | || 2709/Luxpac-Pad >> | X |
---------------|--------||----------------->>----------|--------|
Macau | || 4550/Macoupac >> | X |
---------------|--------||----------------->>----------|--------|
Madagascar | || 6360/ >> | X |
---------------|--------||----------------->>----------|--------|
Malaysia | || 5021/Maynet >> | X |
---------------|--------||----------------->>----------|--------|
Malta | || 2782/Maltapac >> | X |
---------------|--------||----------------->>----------|--------|
Mauritius | || 6170/MauriData >> | X |
---------------|--------||----------------->>----------|--------|
Mauritius | || 6171/MauriData >> | X |
---------------|--------||----------------->>----------|--------|
Mexico | || 3340/TELEPAC >> | X |
---------------|--------||----------------->>----------|--------|
Morocco | || >> | X |
---------------|--------||----------------->>----------|--------|
Mozambique | || 6435/ >> | X |
---------------|--------||----------------->>----------|--------|
Namibia | || 6490/Swanet >> | |
---------------|--------||----------------->>----------|--------|
Niger | || 6142/ >> | |
---------------|--------||----------------->>----------|--------|
Netherlands | X || BT TYMNET >> | |
---------------|--------||----------------->>----------|--------|
Netherlands | || 2041/Datanet-1 >> | X |
---------------|--------||----------------->>----------|--------|
Netherlands | || 2044/DABAS >> | X |
---------------|--------||----------------->>----------|--------|
Netherlands | || 2049/Datanet-1 >> | |
| || Memocom >> | X |
---------------|--------||----------------->>----------|--------|
N. Antilles | || 3620/LANDSRAIDO >> X | |
---------------|--------||----------------->>----------|--------|
N. Marianas | || 5351/PCInet >> X | |
---------------|--------||----------------->>----------|--------|
New Caledonia | || 5460/Tompac >> | X |
---------------|--------||----------------->>----------|--------|
New Zealand | X || 3106/BT TYMNET >> | |
---------------|--------||----------------->>----------|--------|
New Zealand | || 5301/Pacnet >> | X |
---------------|--------||----------------->>----------|--------|
Norway | || 2422/Datapak >> | X |
---------------|--------||----------------->>----------|--------|
Panama | || 7141/INTEL >> X | |
---------------|--------||----------------->>----------|--------|
Panama | || 7142/INTELPAQ >> | X |
---------------|--------||----------------->>----------|--------|
Peru | || 3104/IMPACS >> X | |
---------------|--------||----------------->>----------|--------|
Peru | || 7160/ENTEL >> | X |
---------------|--------||----------------->>----------|--------|
Philippines | || 5152/Philcom >> X | |
---------------|--------||----------------->>----------|--------|
Philippines | || 5154/GMCR >> X | |
---------------|--------||----------------->>----------|--------|
Philippines | || 5156/ETPI >> X | |
---------------|--------||----------------->>----------|--------|
Philippines | || 5151/CAPWIRE >> | X |
---------------|--------||----------------->>----------|--------|
Polynesia | || 5470/Tompac >> | X |
---------------|--------||----------------->>----------|--------|
Portugal | || 2680/Telepac >> | X |
---------------|--------||----------------->>----------|--------|
Portugal | || 2682/CPRM >> | X |
---------------|--------||----------------->>----------|--------|
Puerto Rico | || 3300/WorldCom >> X | |
---------------|--------||----------------->>----------|--------|
Puerto Rico | || 3301/PRTC >> X | |
---------------|--------||----------------->>----------|--------|
Qatar | || 4271/DOHPAC >> | X |
---------------|--------||----------------->>----------|--------|
Reunion | || 6470/Dompac >> | X |
---------------|--------||----------------->>----------|--------|
San Marino | || 2922/X NET SMR >> | X |
---------------|--------||----------------->>----------|--------|
Saudi Arabia | || 4201/Alwaseet >> | |
---------------|--------||----------------->>----------|--------|
Saudi Arabia | || 4263/Bahnet >> X | |
---------------|--------||----------------->>----------|--------|
Senegal | || 6081/Serpac >> | |
---------------|--------||----------------->>----------|--------|
Singapore | || 5250/ >> | X |
---------------|--------||----------------->>----------|--------|
Singapore | || 5252/Telepac >> | X |
---------------|--------||----------------->>----------|--------|
South Africa | || 6550/Saponet >> | X |
---------------|--------||----------------->>----------|--------|
South Africa | || 6559/Saponet >> | X |
---------------|--------||----------------->>----------|--------|
Spain | X || BT TYMNET >> | |
---------------|--------||----------------->>----------|--------|
Spain | || 2141/TIDA >> | X |
---------------|--------||----------------->>----------|--------|
Spain | || 2145/Iberpac >> | X |
---------------|--------||----------------->>----------|--------|
Sweden | X || BT TYMNET >> | |
---------------|--------||----------------->>----------|--------|
Sweden | || 2401/Datapak >> | X |
---------------|--------||----------------->>----------|--------|
Sweden | || 2402/Datapak >> | X |
---------------|--------||----------------->>----------|--------|
Sweden | || 2403/Datapak >> | X |
---------------|--------||----------------->>----------|--------|
Switzerland | X || BT TYMNET >> | |
---------------|--------||----------------->>----------|--------|
Switzerland | || 2284/Telepac >> | X |
---------------|--------||----------------->>----------|--------|
Taiwan | || 4877/ITA >> | X |
---------------|--------||----------------->>----------|--------|
Taiwan | || 4872/PACNET >> | X |
---------------|--------||----------------->>----------|--------|
Taiwan | || 4873/DCI Telepac>> | X |
---------------|--------||----------------->>----------|--------|
Thailand | || 5200/IDAR >> | X |
---------------|--------||----------------->>----------|--------|
Thailand | || 5201/Cateng >> | |
---------------|--------||----------------->>----------|--------|
Tortola, BVI | || 3483/ >> X | |
---------------|--------||----------------->>----------|--------|
Trinidad | || 3740/Textel >> X | |
---------------|--------||----------------->>----------|--------|
Trinidad | || 3745/Datanett >> | X |
---------------|--------||----------------->>----------|--------|
Tunisia | || 6050/RED25 >> | X |
---------------|--------||----------------->>----------|--------|
Turkey | || 2860/ >> | X |
---------------|--------||----------------->>----------|--------|
Turkey | || 2862/IGX >> | X |
---------------|--------||----------------->>----------|--------|
Turkey | || 2863/Turpac >> | X |
---------------|--------||----------------->>----------|--------|
Turks BWI | || 3763/ >> X | |
---------------|--------||----------------->>----------|--------|
UAE | || 4241/ >> | X |
---------------|--------||----------------->>----------|--------|
UAE | || 3104/IMPACS >> | X |
---------------|--------||----------------->>----------|--------|
UAE | || 4243/EMDAN >> | X |
---------------|--------||----------------->>----------|--------|
U. Kingdom | X || BT TYMNET >> | |
---------------|--------||----------------->>----------|--------|
U. Kingdom | || 2350/Mercury >> | X |
---------------|--------||----------------->>----------|--------|
U. Kingdom | || 2351/Mercury >> | X |
---------------|--------||----------------->>----------|--------|
U. Kingdom | || 2341/BTI IPSS >> | X |
---------------|--------||----------------->>----------|--------|
U. Kingdom | || 2355/JAIS-Japan >> | X |
---------------|--------||----------------->>----------|--------|
U. Kingdom | || 2342/BT PSS >> | X |
---------------|--------||----------------->>----------|--------|
U. Kingdom | || 2352/Hull >> | X |
---------------|--------||----------------->>----------|--------|
United States | X || 3106/BT TYMNET >> | |
---------------|--------||----------------->>----------|--------|
Uruguay | || 7482/Antel >> | X |
---------------|--------||----------------->>----------|--------|
USSR | || 2502/Iasnet >> | X |
---------------|--------||----------------->>----------|--------|
U.S. Virgin I | || 3320/UDTS-I >> X | |
---------------|--------||----------------->>----------|--------|
Vanuatu | || 5410/Viapac >> | X |
---------------|--------||----------------->>----------|--------|
Yugoslavia | || 2201/Yupac >> | X |
---------------|--------||----------------->>----------|--------|
Zimbabwe | || 6482/Zimnet >> | X |
-----------------------------------------------------------------
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
F. Terminal Identifiers
~~~~~~~~~~~~~~~~~~~~
A terminal identifier indicates to the network the characteristics of your
terminal. Most terminals can use the "A" terminal identifier. However, if
your terminal requires a carriage return delay, for example, then the "I"
or the "E" identifier should be used.
At 'please type your terminal identifier' please enter:
A for PC's and CRT terminals (SAVE parity)
C for 300 baud Impact Printer Terminals
E for Thermal Printer Terminals like the SILENT 700 series
F for BETA transaction terminals
G for the GE Terminet at 1200 baud
I for 300 baud Thermal Printer Terminals
K for EVEN/ODD parity terminals (future implementation)
O for MARK/SPACE parity terminals (BBS access)
Y for 300 baud Transaction terminals
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
G. Login Options
~~~~~~~~~~~~~
At the 'please log in:' prompt the user can specify control characters to set
the network to the needs of the user. For example when you are connected to a
database and the data is coming in to fast you can backpressure the data by
typing ^S. The network however will only react on this command if you
specified ^R at the logon step.
^E - control E - Enter Full Duplex mode (future implementation)
^H - control H - Enter Half Duplex mode - disable echo!!
^I - control I - Build optimal circuit for Interactive traffic
^P - control P - Force EVEN Parity
^R - control R - Enable host backpressure X-on X-off
^U - control U - Force terminal data to uppercase
^V - control V - Build optimal circuit for Volume traffic
^W - control W - Erase login up to last terminator
^X - control X - Enable terminal backpressure X-on X-off
^Z - control Z - Disconnect/Logoff
ESC - escape - Discard login and get NEW please log in prompt
BREAK - break - Switch to CCITT X.3 X.28 X.29 PAD (selected nodes)
|