home *** CD-ROM | disk | FTP | other *** search
/ Action Ware 12: Heretic & Hexen / actionware12.iso / acware12 / network / kali / ppp.faq < prev    next >
Text File  |  1995-08-30  |  4KB  |  100 lines

  1. --See end of file for Disclaimer--
  2. Here's a quick rundown on setting up PPP.EXE and Kali for a PPP connection. 
  3. For complete details on each program, see the related README files.  Software 
  4. may be obtained from:
  5.  
  6. ftp://ftp.axxis.com/pub/kali/
  7. ftp://ftp.internexus.net/pub/kali/
  8.  
  9.  
  10. Sample files and locations:
  11.  
  12. [C:\NET\PPP]
  13. ---------------DIAL.BAT------------------
  14. @ECHO OFF
  15. ppp /c 2 /d script /s 57600
  16.  
  17. The "/c 2" tells PPP to dial out on COM2, which defaults to IRQ3.  If your com 
  18. port is on another IRQ than the default, specify /I X where X is the IRQ 
  19. number.  You also need to specify the base address of the com port as well.
  20.  
  21. The "/d script" tells PPP to use the file DIAL.PPP to obtain login 
  22. information.
  23.  
  24. The "/s 57600" tells PPP to connect at 57600 (I've got a 14.4 modem and 16550 
  25. UART).
  26.  
  27. ---------------DIAL.PPP-------------------
  28. send "AT &F2\r"        ;modem init string, data comp/err corr enabled; check 
  29. (no blank line)        ;your modem manual
  30. recv 3000 "OK\r\n"    ;wait 3000 milisecs for OK response from modem
  31. send "atdt1234567\r"    ;dial your provider; the \r is for RETURN
  32. recv 60000 "login:"    ;wait 60000 milisecs for login prompt from provider*
  33. send "username\r"    ;send your username and RETURN
  34. recv 10000 "Password:"    ;wait 10000 milisecs for password prompt*
  35. send "password\r"    ;send your password and RETURN
  36.  
  37. *These should be the exact prompts your provider is sending you.
  38.  
  39. [C:\KALI]
  40. ----------------KALI.CFG------------------
  41. Nickname = Your Nickname    ;Killer, Cobra, etc.
  42. Alert                ;Sounds alarm when users are connecting
  43. ; serial =            ;reg'd version info
  44. ; key =                ;reg'd version info
  45. ; port =             ;reg'd version info
  46.  
  47. ----------------WATTCP.CFG-----------------
  48. ;
  49. ; WATTCP Configuration File for Kali
  50. ;
  51.  
  52. my_ip=000.000.000.000    ;your IP address; see readme file for info on BOOTP
  53. netmask=255.255.255.0    ;subnet mask*
  54. nameserver=000.00.00.00    ;domain nameserver
  55. gateway=000.00.00.00    ;your gateway ip address
  56.  
  57. *This is what kept me from connecting at first.  Even though my provider is on 
  58. a subnet of 255.255.255.224, I had to enter the above subnet in order to 
  59. connect.  If you are still having problems connecting, try 255.255.0.0. (??)
  60.  
  61. Here is the process of getting logged in and playing:
  62.  
  63. CD\NET\PPP
  64. DIAL.BAT
  65. <Your modem should be dialing your provider; wait for automatic login.  If you 
  66. don't get logged in automatically, you should be able to just type in your 
  67. username and password. You will get a message "IP ADDRESS SET TO NN.NN.NN.NN". 
  68. You are now connected to your provider, and will be at a DOS prompt.  Test 
  69. your connection with PING or TCPINFO.>
  70.  
  71. CD\KALI
  72. KALI 00.00.00.00    ;If you're connecting to the Kali servers, enter 
  73.             ;their IP address here.  Two known server IP's are 
  74.             ;204.96.20.10 and 199.233.91.1
  75. or type
  76.  
  77. KALI            ;If one or more people know your IP address, this 
  78.             ;will start KALI with you as the server.  They     
  79.             ;simply type KALI YOUR.IPA.DDR.ESS and you should 
  80.             ;hear a beep and see their Nickname/IP address when 
  81.             ;they are connected.
  82.  
  83. CD\GAMES\DESCENT
  84. DESCENT
  85.  
  86. Select Multiplayer.  Someone should "START NET GAME", others "JOIN".  
  87. Determine this before starting DESCENT.
  88.  
  89. Good luck!
  90.  
  91. DISCLAIMER: All registered trademarks are copyright their respective owners. 
  92. This information is being provided as one sample configuration; it may not 
  93. work for your particular set up.  If you feel some of this information is 
  94. incorrect, feel free to append your comments.  You may email the author 
  95. directly with questions, but I cannot guarantee I'll be able to help.
  96. --
  97. |Andrew R. D. Smith - Carleton University Computer Science
  98. |am450@freenet.carleton.ca                + Psychology
  99.  
  100.