home *** CD-ROM | disk | FTP | other *** search
/ ftp.xmission.com / 2014.06.ftp.xmission.com.tar / ftp.xmission.com / pub / lists / usr-tc / archive / usr-tc.200009 < prev    next >
Internet Message Format  |  2000-09-30  |  258KB

  1. From: Steve Monkhouse <steve.monkhouse@ethertech.com.au>
  2. Subject: (usr-tc) pmwho question..
  3. Date: 04 Sep 2000 16:41:47 +1000
  4.  
  5. Hello all..
  6.  
  7. Ive ben using pmwho now for probably about 2.5 years.. and it works really well for what i need.. anyway.. 
  8.  
  9. quick question if i may.. 
  10.  
  11. in the pmwho.c source, its mentioned about setting up the password tables for multiple passwords.. ( which is what we have ).. 
  12. Im having trouble compiling it again though.. 
  13. The original is thus ...........
  14.    
  15. struct {
  16.   char hostname[32];
  17.   char password[32];
  18. } pwtable[] = {
  19.   /* { "pm1", "topsecret" } */
  20. };
  21.  
  22. my modified one looks like .........
  23.    
  24. struct {
  25.   char hostname[32];
  26.   char password[32];
  27. } pwtable[] = {
  28.    { "pm1", "topsecret" } 
  29.    { "pm2", "topsecret1" }
  30. };
  31.  
  32.  
  33. Yet whenever i compile Im getting errors.. is my structure incorrect ??
  34. Thanks in advance.. 
  35.  
  36.  
  37.  
  38. -
  39.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  40.  with "unsubscribe usr-tc" in the body of the message.
  41.  For information on digests or retrieving files and old messages send
  42.  "help" to the same address.  Do not use quotes in your message.
  43.  
  44.  
  45. -------------------------------------------------------------------------------
  46.  
  47. From: Dayton Internet <w8mfd@dayton.net>
  48. Subject: Re: (usr-tc) pmwho question..
  49. Date: 04 Sep 2000 08:20:32 -0400 (EDT)
  50.  
  51. What is the text of the error message.
  52.  
  53. Just out of appearance it looks good, but didyou try:
  54.  
  55. } pwtable[] = {
  56.    { "pm1", "topsecret", "pm2", "topsecret1" }
  57. };
  58.  
  59.  
  60. Just in case the compiler is only looking for one {} 
  61.  
  62. On Mon, 4 Sep 2000, Steve Monkhouse wrote:
  63.  
  64. > Hello all..
  65. > Ive ben using pmwho now for probably about 2.5 years.. and it works really well for what i need.. anyway.. 
  66. > quick question if i may.. 
  67. > in the pmwho.c source, its mentioned about setting up the password tables for multiple passwords.. ( which is what we have ).. 
  68. > Im having trouble compiling it again though.. 
  69. > The original is thus ...........
  70. >    
  71. > struct {
  72. >   char hostname[32];
  73. >   char password[32];
  74. > } pwtable[] = {
  75. >   /* { "pm1", "topsecret" } */
  76. > };
  77. > my modified one looks like .........
  78. >    
  79. > struct {
  80. >   char hostname[32];
  81. >   char password[32];
  82. > } pwtable[] = {
  83. >    { "pm1", "topsecret" } 
  84. >    { "pm2", "topsecret1" }
  85. > };
  86. > Yet whenever i compile Im getting errors.. is my structure incorrect ??
  87. > Thanks in advance.. 
  88. > -
  89. >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  90. >  with "unsubscribe usr-tc" in the body of the message.
  91. >  For information on digests or retrieving files and old messages send
  92. >  "help" to the same address.  Do not use quotes in your message.
  93.  
  94. -- 
  95. --Rich Adams, President, Dayton Internet Services Inc., Dayton, Ohio--
  96.   --w8mfd@dayton.net--www.dayton.net--www.dayton.com--937-586-2500--
  97.  
  98.  
  99. -
  100.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  101.  with "unsubscribe usr-tc" in the body of the message.
  102.  For information on digests or retrieving files and old messages send
  103.  "help" to the same address.  Do not use quotes in your message.
  104.  
  105.  
  106. -------------------------------------------------------------------------------
  107.  
  108. From: Steve Monkhouse <steve.monkhouse@ethertech.com.au>
  109. Subject: RE: (usr-tc) pmwho question..
  110. Date: 05 Sep 2000 07:52:47 +1000
  111.  
  112.  
  113. ------ =_NextPart_000_01C0170E.4892B8D0
  114. Content-Type: text/plain; charset="us-ascii"
  115. Content-Transfer-Encoding: 7bit
  116.  
  117. Nah,.,.. tried that.. it was the missing "," operand... 
  118.  
  119.  
  120.  
  121. Steve Monkhouse - Network Engineer
  122. EtherTech Computer Services
  123.  
  124. Ph : +61-3-9768-2665
  125. Fx : +61-3-9768-2664
  126. http://www.ethertech.com.au
  127.  
  128. -----Original Message-----
  129. Sent:    Monday, 4 September 2000 22:21
  130.  
  131. What is the text of the error message.
  132.  
  133. Just out of appearance it looks good, but didyou try:
  134.  
  135. } pwtable[] = {
  136.    { "pm1", "topsecret", "pm2", "topsecret1" }
  137. };
  138.  
  139.  
  140. Just in case the compiler is only looking for one {} 
  141.  
  142. On Mon, 4 Sep 2000, Steve Monkhouse wrote:
  143.  
  144. > Hello all..
  145. > Ive ben using pmwho now for probably about 2.5 years.. and it works really well for what i need.. anyway.. 
  146. > quick question if i may.. 
  147. > in the pmwho.c source, its mentioned about setting up the password tables for multiple passwords.. ( which is what we have ).. 
  148. > Im having trouble compiling it again though.. 
  149. > The original is thus ...........
  150. >    
  151. > struct {
  152. >   char hostname[32];
  153. >   char password[32];
  154. > } pwtable[] = {
  155. >   /* { "pm1", "topsecret" } */
  156. > };
  157. > my modified one looks like .........
  158. >    
  159. > struct {
  160. >   char hostname[32];
  161. >   char password[32];
  162. > } pwtable[] = {
  163. >    { "pm1", "topsecret" } 
  164. >    { "pm2", "topsecret1" }
  165. > };
  166. > Yet whenever i compile Im getting errors.. is my structure incorrect ??
  167. > Thanks in advance.. 
  168. > -
  169. >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  170. >  with "unsubscribe usr-tc" in the body of the message.
  171. >  For information on digests or retrieving files and old messages send
  172. >  "help" to the same address.  Do not use quotes in your message.
  173.  
  174. -- 
  175. --Rich Adams, President, Dayton Internet Services Inc., Dayton, Ohio--
  176.   --w8mfd@dayton.net--www.dayton.net--www.dayton.com--937-586-2500--
  177.  
  178.  
  179. -
  180.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  181.  with "unsubscribe usr-tc" in the body of the message.
  182.  For information on digests or retrieving files and old messages send
  183.  "help" to the same address.  Do not use quotes in your message.
  184.  
  185. ------ =_NextPart_000_01C0170E.4892B8D0
  186. Content-Type: application/ms-tnef
  187. Content-Transfer-Encoding: base64
  188.  
  189. eJ8+IjAVAQaQCAAEAAAAAAABAAEAAQeQBgAIAAAA5AQAAAAAAADoAAEIgAcAGAAAAElQTS5NaWNy
  190. b3NvZnQgTWFpbC5Ob3RlADEIAQ2ABAACAAAAAgACAAEEkAYA2AEAAAEAAAARAAAAAwAAMAIAAAAL
  191. AA8OAAAAAAIB/w8BAAAAUQAAAAAAAACBKx+kvqMQGZ1uAN0BD1QCAAAAAHVzci10Y0BsaXN0cy54
  192. bWlzc2lvbi5jb20AU01UUAB1c3ItdGNAbGlzdHMueG1pc3Npb24uY29tAAAAAB4AAjABAAAABQAA
  193. AFNNVFAAAAAAHgADMAEAAAAaAAAAdXNyLXRjQGxpc3RzLnhtaXNzaW9uLmNvbQAAAAMAFQwBAAAA
  194. AwD+DwYAAAAeAAEwAQAAABwAAAAndXNyLXRjQGxpc3RzLnhtaXNzaW9uLmNvbScAAgELMAEAAAAf
  195. AAAAU01UUDpVU1ItVENATElTVFMuWE1JU1NJT04uQ09NAAADAAA5AAAAAAsAQDoBAAAAAwBxOgAA
  196. AAAeAPZfAQAAABoAAAB1c3ItdGNAbGlzdHMueG1pc3Npb24uY29tAAAAAgH3XwEAAABRAAAAAAAA
  197. AIErH6S+oxAZnW4A3QEPVAIAAAAAdXNyLXRjQGxpc3RzLnhtaXNzaW9uLmNvbQBTTVRQAHVzci10
  198. Y0BsaXN0cy54bWlzc2lvbi5jb20AAAAAAwD9XwEAAAADAP9fAAAAAAIB9g8BAAAABAAAAAAAAAKo
  199. aQEEgAEAHgAAAFJFOiAodXNyLXRjKSBwbXdobyBxdWVzdGlvbi4uAN8JAQWAAwAOAAAA0AcJAAUA
  200. BwA0AC8AAgBRAQEggAMADgAAANAHCQAFAAcANAAfAAIAQQEBCYABACEAAAAzNDQzNjZGRUFDODJE
  201. NDExOTVFRDAwOTAyNzEzMkE4NAD5BgEDkAYALAoAACMAAAALAAIAAQAAAAsAIwAAAAAAAwAmAAAA
  202. AAALACkAAQAAAAMALgAAAAAAAgExAAEAAADNAAAAUENERkVCMDkAAQACAEoAAAAAAAAAOKG7EAXl
  203. EBqhuwgAKypWwgAAbXNwc3QuZGxsAAAAAABOSVRB+b+4AQCqADfZbgAAAEM6XFdJTk5UXG91dGxv
  204. b2sucHN0ABgAAAAAAAAAyEEV2fUz0hGT1wBgsDwBoKKAAAAAAAAAGAAAAAAAAADIQRXZ9TPSEZPX
  205. AGCwPAGgwoAAABAAAAA0Q2b+rILUEZXtAJAnEyqEHgAAAFJFOiAodXNyLXRjKSBwbXdobyBxdWVz
  206. dGlvbi4uAAAAAAMANgAAAAAAQAA5AGBXSXa6FsABHgBwAAEAAAAeAAAAUkU6ICh1c3ItdGMpIHBt
  207. d2hvIHF1ZXN0aW9uLi4AAAACAXEAAQAAABYAAAABwBa6dkn+ZkM1gqwR1JXtAJAnEyqEAAAeAB4M
  208. AQAAAAUAAABTTVRQAAAAAB4AHwwBAAAAIQAAAHN0ZXZlLm1vbmtob3VzZUBldGhlcnRlY2guY29t
  209. LmF1AAAAAAMABhBX23kCAwAHEFAGAAAeAAgQAQAAAGUAAABOQUgsLFRSSUVEVEhBVElUV0FTVEhF
  210. TUlTU0lORyIsIk9QRVJBTkRTVEVWRU1PTktIT1VTRS1ORVRXT1JLRU5HSU5FRVItLS0tLS0tLS0t
  211. LS0tLS0tLS0tLS0tLS0tLS0tLS0tAAAAAAIBCRABAAAACwYAAAcGAACgCwAATFpGdUh3CNo/AAoB
  212. AwH3AqQD4wIAY2jBCsBzZXQwIAcTAoPHAFAC8g9JVGFoA3ECg0IyDtdwcnEyD+Z9EwqACMggOwlv
  213. MjU1SwKACoF2CJB3awuAZNo0DGBjAFALA2MAQQtgwG5nMTAzMwumB7CJEbAsLhjgLiB0CIFWZBkw
  214. D3B0GRFpBUB3xmEEIBmgZSBtBAELgABnICIsIiBvcPsEkABwZBkQGSAKogqEHH1HF2AC0RCRczE3
  215. BgB0VGV2GqBNAiBrEcB1SQ+gIC0HsXR3BbBrXCBFF8ALgAngchyULd8hDyIfIy8kPxyVYiAQGoEk
  216. clQFkGggCFBtcN51HpAFwAZhFjBjB5AcmgJQJmA6ICs2MS0AMy05NzY4LTLINjY1HJRGeCh/FrAF
  217. HKNoAkBwOi8vd70sAC4PsCYBHpAPYC4FoHhtLmEMcCVlAtESUjGGNhyYCzBsaTM2AUDdEvBvLJEF
  218. QCRDTwUQIEGHB0AF0AeQc2FnZSUKHy91L1ELEy+EAgBpLTGMNDQBQC8QMTgwAUDXDNAzkyXARgNh
  219. OgyDLbAgIERheXQCICBJBwIwBJEPsCBbU01UIFA6dzhtBXBAZPU1wy42cV0lVwZgAjA1J2Me4Tdx
  220. LCA0BlEFMGUfBtAm4QHQNCA6sDI6MlMW8yWTVG81JycfQHIQLXRjQC8Qc3RzXC54GsM3sSzhJzgo
  221. dUxiai+xNSdSZSiAKEE8tCkgcG13EcAg7nEKUD1APdIuMZ8yqi8Uewu2HKNXGbEaABpkHpB4+QVA
  222. b2YacwSQA2AFwAeB9zECQaccskofQEWhJsBFsvxhcBuQCsAAcCdgGgIJAFRvawQgZ0mAZDngYmFI
  223. MWRpZHkIYBkxeSs1IByqfUCgdwGRbGVwW10gPQMwAAAcoyDvTVBM0BswQLAxG0AbMDXgvnAPoAUA
  224. D7BN8kCwMk37+03gAzB9S4YUkE0ERx8LgLwgYxpQRVEakSzhcAMQ5ybhRQECIGx5SWMbAgIQvwXA
  225. AiAaoEzRS/Acmk8DoN8e4TnlOrM54B6Ody+CSxvgPiBIZWwJAEiAWeD3QZZZoFlGSR6xOoADoB9A
  226. cxsCQLRubwfgVLIvcWIPTEFUEAGgSCIyLjUg/nlIwT1gGSAbwRoDH+EEIPcJcFohVBB3WdFUo0DQ
  227. RNKvXKAJ4BvhXtF5GkB5HAf/WthBECdQIABBFhoARdBhAH8AwGHvWZFSYRqCQLMs0CD+cwhhJ2A5
  228. 4BoQBCAHgAIwvz3RGXFdxA+hQVAbEXVXAP9l8xpQA+AFsBmBTEIEIFSyeG11bEFQC1BpSF6iKL9g
  229. oSdQJmBFAWCzYCAgD3DlHrEpZJlJbW0SGwIZQP8IYExRUxUbAhoRMRALcRmR7QhgZyzAZKhUGpEF
  230. sDBl+0UDH0AgG/Fy5llGTVJZVf09QHIW0AVBTOVz8g9ibRAObz1AMJAHgFszMl0/UNV1t2lmdstL
  231. 73OYLyrnTX9Og3lCKi942HjIWVX+bVQQBGEGkBliVPJJdC8Q/msaoHMPdB91L3Y/d094X/95b4Dp
  232. e098VYevTy9QNn1P/Vq6WTaBQNAJ8B6hU5FTFv9uIjEgaJRGM16iRQF+kYIEPwhwSSFJAAWwCXAv
  233. wT8/j3EYAHBJoVJhYWR2SPL/ZJ+U7x9wgNc78FvgAIA+8P8E8jqAGTCXMTzDOeAPoF7xXwOROmAL
  234. cAMgmBEiAMBq02mxA3BvQD2KIoDXA/D/GaAbMJdaPLQbYGXFBuBKkPdFtkacgTFGBbELgFSxAMD/
  235. Y8M18UpwMSA9QXHBX6EZQv9ugzNgaiJe4gbwGYBGlQQgy5jCgNciGpBscBtgmBHvGoIxAAeAk9Fk
  236. CXAEEBkg/zWgXJIFQB9CQRAvkZOTSqFfRn5a1iCmHCUkQFJsMkHpN3BtczngUKXxSoA4we854DW+
  237. JxY2EWMY8KvVOeD6T2wgbyU2iCAkQDcerzEfLBGvvzeELOEkQDkzN9AtNTg2KUA1NCAxeP+pKUz1
  238. ly+YP5lPml9NBJvv/5z/ng9G9p+/oM+h36Lvo/W/pI+ln6avp78cdhOxAMbwAAMAEBAAAAAAAwAR
  239. EAEAAAAeAEIQAQAAAAEAAAAAAAAAAwCAEP////9AAAcwILhAbboWwAFAAAgwILhAbboWwAELAACA
  240. CCAGAAAAAADAAAAAAAAARgAAAAADhQAAAAAAAAMAAoAIIAYAAAAAAMAAAAAAAABGAAAAABCFAAAA
  241. AAAAAwAFgAggBgAAAAAAwAAAAAAAAEYAAAAAUoUAAPMVAAAeACWACCAGAAAAAADAAAAAAAAARgAA
  242. AABUhQAAAQAAAAUAAAA4LjA0AAAAAAMAJoAIIAYAAAAAAMAAAAAAAABGAAAAAAGFAAAAAAAACwAv
  243. gAggBgAAAAAAwAAAAAAAAEYAAAAADoUAAAAAAAADADCACCAGAAAAAADAAAAAAAAARgAAAAARhQAA
  244. AAAAAAMAMoAIIAYAAAAAAMAAAAAAAABGAAAAABiFAAAAAAAAHgBBgAggBgAAAAAAwAAAAAAAAEYA
  245. AAAANoUAAAEAAAABAAAAAAAAAB4AQoAIIAYAAAAAAMAAAAAAAABGAAAAADeFAAABAAAAAQAAAAAA
  246. AAAeAEOACCAGAAAAAADAAAAAAAAARgAAAAA4hQAAAQAAAAEAAAAAAAAAHgA9AAEAAAAFAAAAUkU6
  247. IAAAAAADAA00/TcAAFbJ
  248.  
  249. ------ =_NextPart_000_01C0170E.4892B8D0--
  250.  
  251.  
  252. -
  253.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  254.  with "unsubscribe usr-tc" in the body of the message.
  255.  For information on digests or retrieving files and old messages send
  256.  "help" to the same address.  Do not use quotes in your message.
  257.  
  258.  
  259. -------------------------------------------------------------------------------
  260.  
  261. From: "Steve Rivera -www.wrca.net" <sales@wrca.net>
  262. Subject: (usr-tc) WTB: USR NMC v90 enabled.
  263. Date: 05 Sep 2000 13:30:01 -0400
  264.  
  265. Looking for 5 cards. Must be v90 enabled.
  266. Please email what you have.
  267.  
  268. Want to buy NOW.
  269.  
  270. Steve Rivera (VP) - w-732-833-2111 /  c-732-433-5890 24Hr 
  271. (www.isp-networkhardware.com)
  272. Email: srivera@wrca.net - Mobile Email: srivera711@hotmail.com
  273.  
  274. Worldwide Provider of Network Hardware Since 1981.
  275.  
  276.  
  277.  
  278.  
  279.  
  280.  
  281.  
  282.       
  283.  
  284.  
  285.  
  286.  
  287.  
  288. -
  289.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  290.  with "unsubscribe usr-tc" in the body of the message.
  291.  For information on digests or retrieving files and old messages send
  292.  "help" to the same address.  Do not use quotes in your message.
  293.  
  294.  
  295. -------------------------------------------------------------------------------
  296.  
  297. From: "Steve Rivera -www.wrca.net" <sales@wrca.net>
  298. Subject: (usr-tc) WTB: Dual E1 Nic Qty 2
  299. Date: 05 Sep 2000 13:57:23 -0400
  300.  
  301. I am buying:
  302. USR Dual PRI/E1 w/ E1 Nics
  303.  
  304. Please quote price and avail.
  305.  
  306.  
  307. Steve Rivera (VP) - w-732-833-2111 /  c-732-433-5890 24Hr 
  308. (www.isp-networkhardware.com)
  309. Email: srivera@wrca.net - Mobile Email: srivera711@hotmail.com
  310.  
  311. Worldwide Provider of Network Hardware Since 1981.
  312.  
  313.  
  314.  
  315.  
  316.  
  317.  
  318.  
  319.       
  320.  
  321.  
  322.  
  323.  
  324.  
  325. -
  326.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  327.  with "unsubscribe usr-tc" in the body of the message.
  328.  For information on digests or retrieving files and old messages send
  329.  "help" to the same address.  Do not use quotes in your message.
  330.  
  331.  
  332. -------------------------------------------------------------------------------
  333.  
  334. From: "Steve Rivera -www.wrca.net" <sales@wrca.net>
  335. Subject: (usr-tc) FS: Qty USR Hiper DSP Cards
  336. Date: 06 Sep 2000 14:54:48 -0400
  337.  
  338. WR Communication Associates (WRCA) has the following available for sale.
  339.  
  340. Qty- USR Hiper DSP cards w/ nics
  341.  
  342. Please call or email if you are interested.
  343.  
  344. WTB: USR Hiper ARC w/ nic Qty 10
  345.  
  346. Steve Rivera (VP) - w-732-833-2111 /  c-732-433-5890 24Hr 
  347. (www.isp-networkhardware.com)
  348. Email: srivera@wrca.net - Mobile Email: srivera711@hotmail.com
  349.  
  350. Worldwide Provider of Network Hardware Since 1981.
  351.  
  352.  
  353.  
  354.  
  355.  
  356.  
  357.  
  358.       
  359.  
  360.  
  361.  
  362.  
  363.  
  364. -
  365.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  366.  with "unsubscribe usr-tc" in the body of the message.
  367.  For information on digests or retrieving files and old messages send
  368.  "help" to the same address.  Do not use quotes in your message.
  369.  
  370.  
  371. -------------------------------------------------------------------------------
  372.  
  373. From: "Steve Rivera -www.wrca.net" <sales@wrca.net>
  374. Subject: (usr-tc) Still buying v90 USR NMC cards and E1 cards
  375. Date: 06 Sep 2000 15:29:13 -0400
  376.  
  377. If you are sitting on these please contact me.
  378. Looking for qty NMC v90 enabled
  379.  
  380. Also need:
  381. USR E1 nics for T1/E1 or E1/PRI
  382. I will buy complete sets.
  383.  
  384. Steve Rivera (VP) - w-732-833-2111 /  c-732-433-5890 24Hr 
  385. (www.isp-networkhardware.com)
  386. Email: srivera@wrca.net - Mobile Email: srivera711@hotmail.com
  387.  
  388. Worldwide Provider of Network Hardware Since 1981.
  389.  
  390.  
  391.  
  392.  
  393.  
  394.  
  395.  
  396.       
  397.  
  398.  
  399.  
  400.  
  401.  
  402. -
  403.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  404.  with "unsubscribe usr-tc" in the body of the message.
  405.  For information on digests or retrieving files and old messages send
  406.  "help" to the same address.  Do not use quotes in your message.
  407.  
  408.  
  409. -------------------------------------------------------------------------------
  410.  
  411. From: "Mark E. Levy" <mark@fsi.net>
  412. Subject: (usr-tc) FS: HiPerARC Router
  413. Date: 06 Sep 2000 14:40:14 -0500
  414.  
  415. For sale: (1) 3Com HiPerARC Router for Total Control. Lightly Used. $3,500
  416. o.b.o. COD Certified/Cashiers check only.
  417.  
  418. Mark E. Levy, President
  419. FSINet, Inc.
  420. 800-827-6085 x202
  421. 847-753-6832 fax
  422. www.fsi.net
  423. mark@fsi.net
  424.  
  425.  
  426. -
  427.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  428.  with "unsubscribe usr-tc" in the body of the message.
  429.  For information on digests or retrieving files and old messages send
  430.  "help" to the same address.  Do not use quotes in your message.
  431.  
  432.  
  433. -------------------------------------------------------------------------------
  434.  
  435. From: "Steve Rivera -www.wrca.net" <sales@wrca.net>
  436. Subject: (usr-tc) FS: 2- Hiper DSP modem card
  437. Date: 06 Sep 2000 16:54:15 -0400
  438.  
  439. WR Communication Associates (WRCA.NET) has the following USR equipment 
  440. available:
  441.  
  442. 2- Hiper DSP nac/nic sets
  443. Flashed to latest code.
  444. 30 day warranty.
  445.  
  446. Asking $3100.00 each
  447.  
  448. Qty available. Discounted prices for large buys.
  449.  
  450. Steve Rivera (VP) - w-732-833-2111 /  c-732-433-5890 24Hr 
  451. (www.isp-networkhardware.com)
  452. Email: srivera@wrca.net - Mobile Email: srivera711@hotmail.com
  453.  
  454. Worldwide Provider of Network Hardware Since 1981.
  455.  
  456.  
  457.  
  458.  
  459.  
  460.  
  461.  
  462.       
  463.  
  464.  
  465.  
  466.  
  467.  
  468. -
  469.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  470.  with "unsubscribe usr-tc" in the body of the message.
  471.  For information on digests or retrieving files and old messages send
  472.  "help" to the same address.  Do not use quotes in your message.
  473.  
  474.  
  475. -------------------------------------------------------------------------------
  476.  
  477. From: Dwayne Varey <dwayne.varey@wn.com.au>
  478. Subject: (usr-tc) oid for harc cpu usage
  479. Date: 07 Sep 2000 08:51:00 +0800 
  480.  
  481. Is there an oid in the new release of code to find the cpu usage of the
  482. Harc?
  483.  
  484.  ________________________________________________
  485.  Dwayne Varey
  486.  Systems Administrator
  487.  WestNet - WA's Statewide Internet Provider
  488.  Phone: 92182600 - Fax: 92182666
  489.  http://www.wn.com.au
  490.  _________________________________________________
  491.  
  492.  
  493. -
  494.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  495.  with "unsubscribe usr-tc" in the body of the message.
  496.  For information on digests or retrieving files and old messages send
  497.  "help" to the same address.  Do not use quotes in your message.
  498.  
  499.  
  500. -------------------------------------------------------------------------------
  501.  
  502. From: Paul Farber <farber@admin.f-tech.net>
  503. Subject: Re: (usr-tc) oid for harc cpu usage
  504. Date: 06 Sep 2000 21:21:12 -0400 (EDT)
  505.  
  506. historically sho cpu utilization has been broke.  On both ARC's I have
  507. 4.1.59 and sho cpu util are 0% (with 250+ calls on it!)
  508.  
  509. Paul Farber
  510. Farber Technology
  511. farber@admin.f-tech.net
  512. Ph  570-628-5303
  513. Fax 570-628-5545
  514.  
  515. On Thu, 7 Sep 2000, Dwayne Varey wrote:
  516.  
  517. > Is there an oid in the new release of code to find the cpu usage of the
  518. > Harc?
  519. >  ________________________________________________
  520. >  Dwayne Varey
  521. >  Systems Administrator
  522. >  WestNet - WA's Statewide Internet Provider
  523. >  Phone: 92182600 - Fax: 92182666
  524. >  http://www.wn.com.au
  525. >  _________________________________________________
  526. >  
  527. > -
  528. >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  529. >  with "unsubscribe usr-tc" in the body of the message.
  530. >  For information on digests or retrieving files and old messages send
  531. >  "help" to the same address.  Do not use quotes in your message.
  532.  
  533.  
  534. -
  535.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  536.  with "unsubscribe usr-tc" in the body of the message.
  537.  For information on digests or retrieving files and old messages send
  538.  "help" to the same address.  Do not use quotes in your message.
  539.  
  540.  
  541. -------------------------------------------------------------------------------
  542.  
  543. From: Dwayne Varey <dwayne.varey@wn.com.au>
  544. Subject: RE: (usr-tc) oid for harc cpu usage
  545. Date: 07 Sep 2000 11:30:14 +0800 
  546.  
  547. We currently have 13 e1 hiperdsp's connected to a single harc.  Is this to
  548. many?  Is their a specification anywhere about how many of these cards a
  549. harc can handle?
  550.  
  551.  ________________________________________________
  552.  Dwayne Varey
  553.  Systems Administrator
  554.  WestNet - WA's Statewide Internet Provider
  555.  Phone: 92182600 - Fax: 92182666
  556.  http://www.wn.com.au
  557.  _________________________________________________
  558.  
  559.  
  560.  
  561. -----Original Message-----
  562. Sent: Thursday, 7 September 2000 9:21
  563.  
  564.  
  565. historically sho cpu utilization has been broke.  On both ARC's I have
  566. 4.1.59 and sho cpu util are 0% (with 250+ calls on it!)
  567.  
  568. Paul Farber
  569. Farber Technology
  570. farber@admin.f-tech.net
  571. Ph  570-628-5303
  572. Fax 570-628-5545
  573.  
  574. On Thu, 7 Sep 2000, Dwayne Varey wrote:
  575.  
  576. > Is there an oid in the new release of code to find the cpu usage of the
  577. > Harc?
  578. >  ________________________________________________
  579. >  Dwayne Varey
  580. >  Systems Administrator
  581. >  WestNet - WA's Statewide Internet Provider
  582. >  Phone: 92182600 - Fax: 92182666
  583. >  http://www.wn.com.au
  584. >  _________________________________________________
  585. >  
  586. > -
  587. >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  588. >  with "unsubscribe usr-tc" in the body of the message.
  589. >  For information on digests or retrieving files and old messages send
  590. >  "help" to the same address.  Do not use quotes in your message.
  591.  
  592.  
  593. -
  594.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  595.  with "unsubscribe usr-tc" in the body of the message.
  596.  For information on digests or retrieving files and old messages send
  597.  "help" to the same address.  Do not use quotes in your message.
  598.  
  599. -
  600.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  601.  with "unsubscribe usr-tc" in the body of the message.
  602.  For information on digests or retrieving files and old messages send
  603.  "help" to the same address.  Do not use quotes in your message.
  604.  
  605.  
  606. -------------------------------------------------------------------------------
  607.  
  608. From: "Jorge Lozano" <jorge@andinet.com>
  609. Subject: (usr-tc) proxy redirection...
  610. Date: 06 Sep 2000 23:01:57 -0500
  611.  
  612. This is a multi-part message in MIME format.
  613.  
  614. ------=_NextPart_000_0000_01C01856.75316780
  615. Content-Type: text/plain;
  616.     charset="iso-8859-1"
  617. Content-Transfer-Encoding: 7bit
  618.  
  619. -----BEGIN PGP SIGNED MESSAGE-----
  620. Hash: SHA1
  621.  
  622. Hi...
  623. Anyone know if I can redirect all the http traffic of a group of
  624. users to one proxy server with a radius parameter or something
  625. else....
  626. I want that a group use the web but with a filter installed in a
  627. proxy server.
  628.  
  629. Thnkss for all...
  630.  
  631. Jorge Lozano <jorge@andinet.com>
  632. The only way to predict the future is... to create it!
  633. Please visit, http://www.andinet.com
  634.  
  635.  
  636. -----BEGIN PGP SIGNATURE-----
  637. Version: PGPfreeware 6.5.3 for non-commercial use <http://www.pgp.com>
  638.  
  639. iQA/AwUBObcTNap3oywyFVUlEQKrBQCfS2M3rvm9UTIAhaGkQJl+FaxNYtkAn3CD
  640. gA8LODpi3yqUj+ye0+ggkBqe
  641. =6IHd
  642. -----END PGP SIGNATURE-----
  643.  
  644. ------=_NextPart_000_0000_01C01856.75316780
  645. Content-Type: text/html;
  646.     charset="iso-8859-1"
  647. Content-Transfer-Encoding: quoted-printable
  648.  
  649.  
  650. ------=_NextPart_000_0000_01C01856.75316780--
  651.  
  652.  
  653. -
  654.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  655.  with "unsubscribe usr-tc" in the body of the message.
  656.  For information on digests or retrieving files and old messages send
  657.  "help" to the same address.  Do not use quotes in your message.
  658.  
  659.  
  660. -------------------------------------------------------------------------------
  661.  
  662. From: Blake Fithen <fithen@NetworksPlus.com>
  663. Subject: RE: (usr-tc) oid for harc cpu usage
  664. Date: 06 Sep 2000 23:51:15 -0500 
  665.  
  666. Not sure if it's broken but you'd think it show a little more
  667. activity.  
  668.  
  669. man-186.12>
  670. man-186.12>
  671. man-186.12> save all
  672. Saving ....SAVE ALL  Complete
  673. sh cpu ut
  674.  
  675. CPU Utilization:
  676. Instantaneous : 35%
  677. Last Minute   : 0%
  678. Last Hour     : 0%
  679. Last Day      : 0%
  680. man-186.12>
  681.  
  682. blake
  683.  
  684. > -----Original Message-----
  685. > From:    Paul Farber [SMTP:farber@admin.f-tech.net]
  686. > Sent:    Wednesday, September 06, 2000 8:21 PM
  687. > To:    'usr-tc@lists.xmission.com'
  688. > Subject:    Re: (usr-tc) oid for harc cpu usage
  689. > historically sho cpu utilization has been broke.  On both ARC's I have
  690. > 4.1.59 and sho cpu util are 0% (with 250+ calls on it!)
  691. > Paul Farber
  692. > Farber Technology
  693. > farber@admin.f-tech.net
  694. > Ph  570-628-5303
  695. > Fax 570-628-5545
  696. > On Thu, 7 Sep 2000, Dwayne Varey wrote:
  697. > > Is there an oid in the new release of code to find the cpu usage of the
  698. > > Harc?
  699. > > 
  700. > >  ________________________________________________
  701. > >  Dwayne Varey
  702. > >  Systems Administrator
  703. > >  WestNet - WA's Statewide Internet Provider
  704. > >  Phone: 92182600 - Fax: 92182666
  705. > >  http://www.wn.com.au
  706. > >  _________________________________________________
  707. > >  
  708. > > 
  709. > > -
  710. > >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  711. > >  with "unsubscribe usr-tc" in the body of the message.
  712. > >  For information on digests or retrieving files and old messages send
  713. > >  "help" to the same address.  Do not use quotes in your message.
  714. > > 
  715. > -
  716. >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  717. >  with "unsubscribe usr-tc" in the body of the message.
  718. >  For information on digests or retrieving files and old messages send
  719. >  "help" to the same address.  Do not use quotes in your message.
  720.  
  721. -
  722.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  723.  with "unsubscribe usr-tc" in the body of the message.
  724.  For information on digests or retrieving files and old messages send
  725.  "help" to the same address.  Do not use quotes in your message.
  726.  
  727.  
  728. -------------------------------------------------------------------------------
  729.  
  730. From: Blake Fithen <fithen@NetworksPlus.com>
  731. Subject: RE: (usr-tc) oid for harc cpu usage
  732. Date: 07 Sep 2000 00:00:25 -0500 
  733.  
  734. We've got two fully-loaded chassis in a POP using PRI's- they
  735. work OK. 
  736.  
  737. blake
  738.  
  739. > -----Original Message-----
  740. > From:    Dwayne Varey [SMTP:dwayne.varey@wn.com.au]
  741. > Sent:    Wednesday, September 06, 2000 10:30 PM
  742. > To:    'usr-tc@lists.xmission.com'
  743. > Subject:    RE: (usr-tc) oid for harc cpu usage
  744. > We currently have 13 e1 hiperdsp's connected to a single harc.  Is this to
  745. > many?  Is their a specification anywhere about how many of these cards a
  746. > harc can handle?
  747. >  ________________________________________________
  748. >  Dwayne Varey
  749. >  Systems Administrator
  750. >  WestNet - WA's Statewide Internet Provider
  751. >  Phone: 92182600 - Fax: 92182666
  752. >  http://www.wn.com.au
  753. >  _________________________________________________
  754. >  
  755. > -----Original Message-----
  756. > From: Paul Farber [mailto:farber@admin.f-tech.net]
  757. > Sent: Thursday, 7 September 2000 9:21
  758. > To: 'usr-tc@lists.xmission.com'
  759. > Subject: Re: (usr-tc) oid for harc cpu usage
  760. > historically sho cpu utilization has been broke.  On both ARC's I have
  761. > 4.1.59 and sho cpu util are 0% (with 250+ calls on it!)
  762. > Paul Farber
  763. > Farber Technology
  764. > farber@admin.f-tech.net
  765. > Ph  570-628-5303
  766. > Fax 570-628-5545
  767. > On Thu, 7 Sep 2000, Dwayne Varey wrote:
  768. > > Is there an oid in the new release of code to find the cpu usage of the
  769. > > Harc?
  770. > > 
  771. > >  ________________________________________________
  772. > >  Dwayne Varey
  773. > >  Systems Administrator
  774. > >  WestNet - WA's Statewide Internet Provider
  775. > >  Phone: 92182600 - Fax: 92182666
  776. > >  http://www.wn.com.au
  777. > >  _________________________________________________
  778. > >  
  779. > > 
  780. > > -
  781. > >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  782. > >  with "unsubscribe usr-tc" in the body of the message.
  783. > >  For information on digests or retrieving files and old messages send
  784. > >  "help" to the same address.  Do not use quotes in your message.
  785. > > 
  786. > -
  787. >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  788. >  with "unsubscribe usr-tc" in the body of the message.
  789. >  For information on digests or retrieving files and old messages send
  790. >  "help" to the same address.  Do not use quotes in your message.
  791. > -
  792. >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  793. >  with "unsubscribe usr-tc" in the body of the message.
  794. >  For information on digests or retrieving files and old messages send
  795. >  "help" to the same address.  Do not use quotes in your message.
  796.  
  797. -
  798.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  799.  with "unsubscribe usr-tc" in the body of the message.
  800.  For information on digests or retrieving files and old messages send
  801.  "help" to the same address.  Do not use quotes in your message.
  802.  
  803.  
  804. -------------------------------------------------------------------------------
  805.  
  806. From: Veda Narayan <ved@iyka.com>
  807. Subject: Re: (usr-tc) oid for harc cpu usage
  808. Date: 07 Sep 2000 07:35:27 -0600
  809.  
  810. Quoting Paul Farber <farber@admin.f-tech.net>:
  811.  
  812. > historically sho cpu utilization has been broke.  On both ARC's I have
  813. > 4.1.59 and sho cpu util are 0% (with 250+ calls on it!)
  814. No - show cpu is not broken.  It shows 0% with 250+ calls is normal.  The HiPer 
  815. arc is designed to show the CPU utilization only when it reaches the level of 
  816. calls/flash updates/route tables and any other routing related activity exceeds 
  817. the bench mark.  Which basically means you will see show cpu activity 
  818. instantaneously if you do a save all and do a show cpu at that instance.
  819.  
  820. What it is that being a embaded system, the HiPer arc CPU is always being 
  821. utilized, so they have a bench mark, once you exceed the bench mark the cpu 
  822. utilization shows.  Typically for normal call volumes you will not see any cpu 
  823. utilization, do a lot of l2tp, cleartcp, pptp, calls you will see some 
  824. utilization.  
  825.  
  826.  
  827. -V
  828.  
  829.  
  830. > Paul Farber
  831. > Farber Technology
  832. > farber@admin.f-tech.net
  833. > Ph  570-628-5303
  834. > Fax 570-628-5545
  835. > On Thu, 7 Sep 2000, Dwayne Varey wrote:
  836. > > Is there an oid in the new release of code to find the cpu usage of
  837. > the
  838. > > Harc?
  839. > > 
  840. > >  ________________________________________________
  841. > >  Dwayne Varey
  842. > >  Systems Administrator
  843. > >  WestNet - WA's Statewide Internet Provider
  844. > >  Phone: 92182600 - Fax: 92182666
  845. > >  http://www.wn.com.au
  846. > >  _________________________________________________
  847. > >  
  848. > > 
  849. > > -
  850. > >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  851. > >  with "unsubscribe usr-tc" in the body of the message.
  852. > >  For information on digests or retrieving files and old messages send
  853. > >  "help" to the same address.  Do not use quotes in your message.
  854. > > 
  855. > -
  856. >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  857. >  with "unsubscribe usr-tc" in the body of the message.
  858. >  For information on digests or retrieving files and old messages send
  859. >  "help" to the same address.  Do not use quotes in your message.
  860.  
  861.  
  862.  
  863. ===========
  864.  
  865. -V
  866.  
  867. ==========
  868.  
  869. -
  870.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  871.  with "unsubscribe usr-tc" in the body of the message.
  872.  For information on digests or retrieving files and old messages send
  873.  "help" to the same address.  Do not use quotes in your message.
  874.  
  875.  
  876. -------------------------------------------------------------------------------
  877.  
  878. From: Paul Farber <farber@admin.f-tech.net>
  879. Subject: Re: (usr-tc) oid for harc cpu usage
  880. Date: 07 Sep 2000 10:35:35 -0400 (EDT)
  881.  
  882. So it's just named poorly?
  883.  
  884. From you explination.. as long as the last 3 values are 0 then the CPU is
  885. just not above some threshold set in flash.... OK, next question:  what's
  886. that value?  Or is it safe to say that as long as the values are 0 it's
  887. just nothing to worry about?
  888.  
  889. Thanks
  890.  
  891. Paul Farber
  892. Farber Technology
  893. farber@admin.f-tech.net
  894. Ph  570-628-5303
  895. Fax 570-628-5545
  896.  
  897. On Thu, 7 Sep 2000, Veda Narayan wrote:
  898.  
  899. > Quoting Paul Farber <farber@admin.f-tech.net>:
  900. > > historically sho cpu utilization has been broke.  On both ARC's I have
  901. > > 4.1.59 and sho cpu util are 0% (with 250+ calls on it!)
  902. > > 
  903. > No - show cpu is not broken.  It shows 0% with 250+ calls is normal.  The HiPer 
  904. > arc is designed to show the CPU utilization only when it reaches the level of 
  905. > calls/flash updates/route tables and any other routing related activity exceeds 
  906. > the bench mark.  Which basically means you will see show cpu activity 
  907. > instantaneously if you do a save all and do a show cpu at that instance.
  908. > What it is that being a embaded system, the HiPer arc CPU is always being 
  909. > utilized, so they have a bench mark, once you exceed the bench mark the cpu 
  910. > utilization shows.  Typically for normal call volumes you will not see any cpu 
  911. > utilization, do a lot of l2tp, cleartcp, pptp, calls you will see some 
  912. > utilization.  
  913. > -V
  914. > > Paul Farber
  915. > > Farber Technology
  916. > > farber@admin.f-tech.net
  917. > > Ph  570-628-5303
  918. > > Fax 570-628-5545
  919. > > 
  920. > > On Thu, 7 Sep 2000, Dwayne Varey wrote:
  921. > > 
  922. > > > Is there an oid in the new release of code to find the cpu usage of
  923. > > the
  924. > > > Harc?
  925. > > > 
  926. > > >  ________________________________________________
  927. > > >  Dwayne Varey
  928. > > >  Systems Administrator
  929. > > >  WestNet - WA's Statewide Internet Provider
  930. > > >  Phone: 92182600 - Fax: 92182666
  931. > > >  http://www.wn.com.au
  932. > > >  _________________________________________________
  933. > > >  
  934. > > > 
  935. > > > -
  936. > > >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  937. > > >  with "unsubscribe usr-tc" in the body of the message.
  938. > > >  For information on digests or retrieving files and old messages send
  939. > > >  "help" to the same address.  Do not use quotes in your message.
  940. > > > 
  941. > > 
  942. > > 
  943. > > -
  944. > >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  945. > >  with "unsubscribe usr-tc" in the body of the message.
  946. > >  For information on digests or retrieving files and old messages send
  947. > >  "help" to the same address.  Do not use quotes in your message.
  948. > > 
  949. > ===========
  950. > -V
  951. > ==========
  952.  
  953.  
  954. -
  955.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  956.  with "unsubscribe usr-tc" in the body of the message.
  957.  For information on digests or retrieving files and old messages send
  958.  "help" to the same address.  Do not use quotes in your message.
  959.  
  960.  
  961. -------------------------------------------------------------------------------
  962.  
  963. From: Mike Andrews <mandrews@bit0.com>
  964. Subject: Re: (usr-tc) oid for harc cpu usage
  965. Date: 07 Sep 2000 11:19:59 -0400 (EDT)
  966.  
  967. Since nobody ever answered the original question about the OID,
  968. here's an MRTG entry...
  969.  
  970. Target[foo]: 1.3.6.1.4.1.429.4.3.1.13.0&1.3.6.1.4.1.429.4.3.1.14.0:public@foo
  971. MaxBytes[foo]: 100
  972. Title[foo]: CPU usage on HiPer ARC foo
  973. Options[foo]: gauge
  974. YLegend[foo]: percent cpu
  975. ShortLegend[foo]: percent cpu
  976. LegendI[foo]:  1-min:
  977. LegendO[foo]:  5-min:
  978.  
  979. And yeah, most of the time it just graphs zero because it's reporting only
  980. "above average" usage or something similar -- but occasionally it will
  981. graph some spikes when you get really busy.
  982.  
  983.  
  984. Mike Andrews (MA12) * mandrews@dcr.net * http://www.bit0.com/
  985. VP, sysadmin, & network guy, Digital Crescent Inc, Frankfort KY
  986. Dialup/ADSL/ISDN/T1 Internet access for Frankfort KY and surrounding counties
  987. www.fark.com: If it's not news, it's Fark.  (Or something like that.)
  988.  
  989. On Thu, 7 Sep 2000, Paul Farber wrote:
  990.  
  991. > So it's just named poorly?
  992. > >From you explination.. as long as the last 3 values are 0 then the CPU is
  993. > just not above some threshold set in flash.... OK, next question:  what's
  994. > that value?  Or is it safe to say that as long as the values are 0 it's
  995. > just nothing to worry about?
  996. > Thanks
  997. > Paul Farber
  998. > Farber Technology
  999. > farber@admin.f-tech.net
  1000. > Ph  570-628-5303
  1001. > Fax 570-628-5545
  1002. > On Thu, 7 Sep 2000, Veda Narayan wrote:
  1003. > > Quoting Paul Farber <farber@admin.f-tech.net>:
  1004. > > 
  1005. > > > historically sho cpu utilization has been broke.  On both ARC's I have
  1006. > > > 4.1.59 and sho cpu util are 0% (with 250+ calls on it!)
  1007. > > > 
  1008. > > No - show cpu is not broken.  It shows 0% with 250+ calls is normal.  The HiPer 
  1009. > > arc is designed to show the CPU utilization only when it reaches the level of 
  1010. > > calls/flash updates/route tables and any other routing related activity exceeds 
  1011. > > the bench mark.  Which basically means you will see show cpu activity 
  1012. > > instantaneously if you do a save all and do a show cpu at that instance.
  1013. > > 
  1014. > > What it is that being a embaded system, the HiPer arc CPU is always being 
  1015. > > utilized, so they have a bench mark, once you exceed the bench mark the cpu 
  1016. > > utilization shows.  Typically for normal call volumes you will not see any cpu 
  1017. > > utilization, do a lot of l2tp, cleartcp, pptp, calls you will see some 
  1018. > > utilization.  
  1019. > > 
  1020. > > 
  1021. > > -V
  1022. > > 
  1023. > > 
  1024. > > > Paul Farber
  1025. > > > Farber Technology
  1026. > > > farber@admin.f-tech.net
  1027. > > > Ph  570-628-5303
  1028. > > > Fax 570-628-5545
  1029. > > > 
  1030. > > > On Thu, 7 Sep 2000, Dwayne Varey wrote:
  1031. > > > 
  1032. > > > > Is there an oid in the new release of code to find the cpu usage of
  1033. > > > the
  1034. > > > > Harc?
  1035. > > > > 
  1036. > > > >  ________________________________________________
  1037. > > > >  Dwayne Varey
  1038. > > > >  Systems Administrator
  1039. > > > >  WestNet - WA's Statewide Internet Provider
  1040. > > > >  Phone: 92182600 - Fax: 92182666
  1041. > > > >  http://www.wn.com.au
  1042. > > > >  _________________________________________________
  1043. > > > >  
  1044. > > > > 
  1045. > > > > -
  1046. > > > >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  1047. > > > >  with "unsubscribe usr-tc" in the body of the message.
  1048. > > > >  For information on digests or retrieving files and old messages send
  1049. > > > >  "help" to the same address.  Do not use quotes in your message.
  1050. > > > > 
  1051. > > > 
  1052. > > > 
  1053. > > > -
  1054. > > >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  1055. > > >  with "unsubscribe usr-tc" in the body of the message.
  1056. > > >  For information on digests or retrieving files and old messages send
  1057. > > >  "help" to the same address.  Do not use quotes in your message.
  1058. > > > 
  1059. > > 
  1060. > > 
  1061. > > 
  1062. > > ===========
  1063. > > 
  1064. > > -V
  1065. > > 
  1066. > > ==========
  1067. > > 
  1068. > -
  1069. >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  1070. >  with "unsubscribe usr-tc" in the body of the message.
  1071. >  For information on digests or retrieving files and old messages send
  1072. >  "help" to the same address.  Do not use quotes in your message.
  1073.  
  1074.  
  1075. -
  1076.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  1077.  with "unsubscribe usr-tc" in the body of the message.
  1078.  For information on digests or retrieving files and old messages send
  1079.  "help" to the same address.  Do not use quotes in your message.
  1080.  
  1081.  
  1082. -------------------------------------------------------------------------------
  1083.  
  1084. From: "Seth Jacobs" <seth.jacobs@onramp113.org>
  1085. Subject: (usr-tc) Relocation User 
  1086. Date: 07 Sep 2000 08:33:19 -0700
  1087.  
  1088. My TC unit is sending an error message ("Relocation User") to my RADIUS
  1089. server.  The error message is:
  1090.  
  1091. (Radius  :01857) 9/5/2000 21:17:38 Relocation User jneeley from port 4 to 1
  1092. due to ClassID: 84f6
  1093. (Radius  :01857) 9/5/2000 21:20:56 Relocation User porsh from port 4 to 2
  1094. due to ClassID: 84c9
  1095. (Radius  :01857) 9/5/2000 21:25:26 Relocation User amendoza from port 4 to 3
  1096. due to ClassID: 84f7
  1097.  
  1098. Can anyone tell me what this means, if it's anything I should be concerned
  1099. about, and how I can find out more about it?
  1100.  
  1101. Thanks.
  1102.  
  1103. Seth
  1104.  
  1105.  
  1106.  
  1107.  
  1108. -
  1109.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  1110.  with "unsubscribe usr-tc" in the body of the message.
  1111.  For information on digests or retrieving files and old messages send
  1112.  "help" to the same address.  Do not use quotes in your message.
  1113.  
  1114.  
  1115. -------------------------------------------------------------------------------
  1116.  
  1117. From: Paul Farber <farber@admin.f-tech.net>
  1118. Subject: Re: (usr-tc) FS: USR Hiper Hardware
  1119. Date: 07 Sep 2000 12:23:21 -0400 (EDT)
  1120.  
  1121. Looking for 1 Netserver Card (from 2059 bundle, X2 enabled) and 6 Digital
  1122. Quad modem NIC/NACS.
  1123.  
  1124. Have 1 HiperARC NIC/NAC and 6 Analog/Digital quad NIC/NACs for sale or
  1125. trade.
  1126.  
  1127. Any deals?
  1128.  
  1129. Paul Farber
  1130. Farber Technology
  1131. farber@admin.f-tech.net
  1132. Ph  570-628-5303
  1133. Fax 570-628-5545
  1134.  
  1135. On Thu, 24 Aug 2000, Steve Rivera -www.wrca.net wrote:
  1136.  
  1137. > WR Communication Associates (WRCA) has the following USR hardware available:
  1138. > 2- Hiper DSP w/ nic $3000
  1139. > 3- Hiper NMC w/ nic $900 (Factory Warranty)
  1140. > 1- EdgeServer Card w/ SCSI-2 NIC $1100
  1141. > Part# 69-001160-01 R:5
  1142. > Part# 69-001410-00 R:2
  1143. > 1- Hiper DSP NIC $550 (backplane card only)
  1144. > 1- Hiper ARC NIC $500 (backplane card only)
  1145. > 18- Quad Analog Modems w/ analog nic (2 card) $250
  1146. > 64- Quad Digital Modems $225
  1147. > I also have huge inventory of TC cards, chassis, power supplies..ect
  1148. > 2- Netserver 16 v34 $750...sold
  1149. > 1- Netserver 8 v34 $500
  1150. > 3- Netserver 8I $750
  1151. > 6- MP16 v34 $650
  1152. > 2- MP8 v34 $500
  1153. > 1- MP8I $900
  1154. > 2- MMP16 v34 $850
  1155. > Steve Rivera (VP) - w-732-833-2111 /  c-732-433-5890 24Hr
  1156. > www.isp-networkhardware.com
  1157. > ICQ# 75229638
  1158. > Email: srivera@wrca.net
  1159. > Mobile Email: srivera711@hotmail.com
  1160. > Worldwide Provider of Network Hardware Since 1981.
  1161. > Cisco, Ascend,USR,Adtran, Kentrox,Livingston, Microcom,Computone,Verilink,
  1162. > IBM,Motorola,UDS,Codex,ATT,Paradyne,Hayes,Racal,GDC,Telebit,MultiTech,
  1163. > Sync/Tylink,Wellfleet,,Black Box,Micom, APC Batteries & More
  1164. >       
  1165. > -
  1166. >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  1167. >  with "unsubscribe usr-tc" in the body of the message.
  1168. >  For information on digests or retrieving files and old messages send
  1169. >  "help" to the same address.  Do not use quotes in your message.
  1170.  
  1171.  
  1172. -
  1173.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  1174.  with "unsubscribe usr-tc" in the body of the message.
  1175.  For information on digests or retrieving files and old messages send
  1176.  "help" to the same address.  Do not use quotes in your message.
  1177.  
  1178.  
  1179. -------------------------------------------------------------------------------
  1180.  
  1181. From: "Steve Rivera -www.wrca.net" <sales@wrca.net>
  1182. Subject: Re: (usr-tc) FS: USR Hiper Hardware
  1183. Date: 07 Sep 2000 12:24:55 -0400
  1184.  
  1185. I can offer $800 for the Hiper ARC.
  1186.  
  1187. 1- Netserver PRI $700
  1188. 6- Quad Digital set $200 each.
  1189.  
  1190.  
  1191. At 12:23 PM 09/07/2000 -0400, you wrote:
  1192. >Looking for 1 Netserver Card (from 2059 bundle, X2 enabled) and 6 Digital
  1193. >Quad modem NIC/NACS.
  1194. >
  1195. >Have 1 HiperARC NIC/NAC and 6 Analog/Digital quad NIC/NACs for sale or
  1196. >trade.
  1197. >
  1198. >Any deals?
  1199. >
  1200. >Paul Farber
  1201. >Farber Technology
  1202. >farber@admin.f-tech.net
  1203. >Ph  570-628-5303
  1204. >Fax 570-628-5545
  1205. >
  1206. >On Thu, 24 Aug 2000, Steve Rivera -www.wrca.net wrote:
  1207. >
  1208. > > WR Communication Associates (WRCA) has the following USR hardware 
  1209. > available:
  1210. > >
  1211. > > 2- Hiper DSP w/ nic $3000
  1212. > > 3- Hiper NMC w/ nic $900 (Factory Warranty)
  1213. > > 1- EdgeServer Card w/ SCSI-2 NIC $1100
  1214. > > Part# 69-001160-01 R:5
  1215. > > Part# 69-001410-00 R:2
  1216. > > 1- Hiper DSP NIC $550 (backplane card only)
  1217. > > 1- Hiper ARC NIC $500 (backplane card only)
  1218. > > 18- Quad Analog Modems w/ analog nic (2 card) $250
  1219. > > 64- Quad Digital Modems $225
  1220. > >
  1221. > > I also have huge inventory of TC cards, chassis, power supplies..ect
  1222. > >
  1223. > > 2- Netserver 16 v34 $750...sold
  1224. > > 1- Netserver 8 v34 $500
  1225. > > 3- Netserver 8I $750
  1226. > > 6- MP16 v34 $650
  1227. > > 2- MP8 v34 $500
  1228. > > 1- MP8I $900
  1229. > > 2- MMP16 v34 $850
  1230. > >
  1231. > > Steve Rivera (VP) - w-732-833-2111 /  c-732-433-5890 24Hr
  1232. > > www.isp-networkhardware.com
  1233. > > ICQ# 75229638
  1234. > > Email: srivera@wrca.net
  1235. > > Mobile Email: srivera711@hotmail.com
  1236. > >
  1237. > > Worldwide Provider of Network Hardware Since 1981.
  1238. > > Cisco, Ascend,USR,Adtran, Kentrox,Livingston, Microcom,Computone,Verilink,
  1239. > > IBM,Motorola,UDS,Codex,ATT,Paradyne,Hayes,Racal,GDC,Telebit,MultiTech,
  1240. > > Sync/Tylink,Wellfleet,,Black Box,Micom, APC Batteries & More
  1241. > >
  1242. > >
  1243. > >
  1244. > >
  1245. > >
  1246. > >
  1247. > >
  1248. > >
  1249. > >
  1250. > >
  1251. > >
  1252. > >
  1253. > > -
  1254. > >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  1255. > >  with "unsubscribe usr-tc" in the body of the message.
  1256. > >  For information on digests or retrieving files and old messages send
  1257. > >  "help" to the same address.  Do not use quotes in your message.
  1258. > >
  1259. >
  1260. >
  1261. >-
  1262. >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  1263. >  with "unsubscribe usr-tc" in the body of the message.
  1264. >  For information on digests or retrieving files and old messages send
  1265. >  "help" to the same address.  Do not use quotes in your message.
  1266.  
  1267.  
  1268. -
  1269.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  1270.  with "unsubscribe usr-tc" in the body of the message.
  1271.  For information on digests or retrieving files and old messages send
  1272.  "help" to the same address.  Do not use quotes in your message.
  1273.  
  1274.  
  1275. -------------------------------------------------------------------------------
  1276.  
  1277. From: "Mark E. Levy" <mark@fsi.net>
  1278. Subject: RE: (usr-tc) FS: USR Hiper Hardware
  1279. Date: 07 Sep 2000 11:38:23 -0500
  1280.  
  1281. > I can offer $800 for the Hiper ARC.
  1282.  
  1283. Has the price of HiperARCs really dropped that much? Just a little over a
  1284. year ago I had traded one for a HiperDSP.
  1285.  
  1286. Mark E. Levy, President
  1287. FSINet, Inc.
  1288. 800-827-6085 x202
  1289. 847-753-6832 fax
  1290. www.fsi.net
  1291. mark@fsi.net
  1292.  
  1293.  
  1294. -
  1295.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  1296.  with "unsubscribe usr-tc" in the body of the message.
  1297.  For information on digests or retrieving files and old messages send
  1298.  "help" to the same address.  Do not use quotes in your message.
  1299.  
  1300.  
  1301. -------------------------------------------------------------------------------
  1302.  
  1303. From: Mike Andrews <mandrews@bit0.com>
  1304. Subject: (usr-tc) totalservice warranty registration fubared
  1305. Date: 07 Sep 2000 17:12:02 -0400 (EDT)
  1306.  
  1307. I can't get into totalservice to enable the warranty registration for the
  1308. two new chassis I got in today.  As soon as I log into the warranty
  1309. registration, it tries to send me to totalservice.usr.com instead of
  1310. totalservice.3com.com.  Whoops.
  1311.  
  1312. The two boxes came with different versions of code; one came with the
  1313. latest, one had old ARC and HiPer NMC code.  I don't have a copy of the
  1314. HiPer NMC code to flash onto the other one (this are my first two P5
  1315. NMCs), because I can't get into the software download site, and I can't
  1316. get into that because I can't get into the warranty registration site...
  1317.  
  1318. So unless someone can tell me how to siphon the .dmf file from a running
  1319. HiPer NMC card back into a file, or wants to send me a copy of the 7.2.8
  1320. DMF file to match what I have running on other hardware I legally own, or
  1321. can tell me who to yell at at 3com to get the URL on their website
  1322. corrected... :p
  1323.  
  1324.  
  1325.  
  1326. Mike Andrews (MA12) * mandrews@dcr.net * http://www.bit0.com/
  1327. VP, sysadmin, & network guy, Digital Crescent Inc, Frankfort KY
  1328. Dialup/ADSL/ISDN/T1 Internet access for Frankfort KY and surrounding counties
  1329. www.fark.com: If it's not news, it's Fark.  (Or something like that.)
  1330.  
  1331.  
  1332. -
  1333.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  1334.  with "unsubscribe usr-tc" in the body of the message.
  1335.  For information on digests or retrieving files and old messages send
  1336.  "help" to the same address.  Do not use quotes in your message.
  1337.  
  1338.  
  1339. -------------------------------------------------------------------------------
  1340.  
  1341. From: Mike Andrews <mandrews@bit0.com>
  1342. Subject: Re: (usr-tc) totalservice warranty registration fubared
  1343. Date: 07 Sep 2000 17:48:22 -0400 (EDT)
  1344.  
  1345. Nevermind (sort of); I worked around it by editing c:\windows\hosts and
  1346. fudging an entry for totalservice.usr.com in there.  That let me get
  1347. in to get my cards registered and get the firmware I needed.
  1348.  
  1349. 3Com still needs to fix the site (or DNS) though.
  1350.  
  1351.  
  1352. Mike Andrews (MA12) * mandrews@dcr.net * http://www.bit0.com/
  1353. VP, sysadmin, & network guy, Digital Crescent Inc, Frankfort KY
  1354. Dialup/ADSL/ISDN/T1 Internet access for Frankfort KY and surrounding counties
  1355. www.fark.com: If it's not news, it's Fark.  (Or something like that.)
  1356.  
  1357. On Thu, 7 Sep 2000, Mike Andrews wrote:
  1358.  
  1359. > I can't get into totalservice to enable the warranty registration for the
  1360. > two new chassis I got in today.  As soon as I log into the warranty
  1361. > registration, it tries to send me to totalservice.usr.com instead of
  1362. > totalservice.3com.com.  Whoops.
  1363. > The two boxes came with different versions of code; one came with the
  1364. > latest, one had old ARC and HiPer NMC code.  I don't have a copy of the
  1365. > HiPer NMC code to flash onto the other one (this are my first two P5
  1366. > NMCs), because I can't get into the software download site, and I can't
  1367. > get into that because I can't get into the warranty registration site...
  1368. > So unless someone can tell me how to siphon the .dmf file from a running
  1369. > HiPer NMC card back into a file, or wants to send me a copy of the 7.2.8
  1370. > DMF file to match what I have running on other hardware I legally own, or
  1371. > can tell me who to yell at at 3com to get the URL on their website
  1372. > corrected... :p
  1373. > Mike Andrews (MA12) * mandrews@dcr.net * http://www.bit0.com/
  1374. > VP, sysadmin, & network guy, Digital Crescent Inc, Frankfort KY
  1375. > Dialup/ADSL/ISDN/T1 Internet access for Frankfort KY and surrounding counties
  1376. > www.fark.com: If it's not news, it's Fark.  (Or something like that.)
  1377. > -
  1378. >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  1379. >  with "unsubscribe usr-tc" in the body of the message.
  1380. >  For information on digests or retrieving files and old messages send
  1381. >  "help" to the same address.  Do not use quotes in your message.
  1382.  
  1383.  
  1384. -
  1385.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  1386.  with "unsubscribe usr-tc" in the body of the message.
  1387.  For information on digests or retrieving files and old messages send
  1388.  "help" to the same address.  Do not use quotes in your message.
  1389.  
  1390.  
  1391. -------------------------------------------------------------------------------
  1392.  
  1393. From: "Steve Rivera -www.wrca.net" <sales@wrca.net>
  1394. Subject: (usr-tc) WTB: USR TC hardware
  1395. Date: 07 Sep 2000 18:35:04 -0400
  1396.  
  1397. WR Communication Associate (WRCA) is looking to BUY the following USR hardware:
  1398. I look forward to hearing from you. email or phone is fine.
  1399.  
  1400. Remember...next week a load of DSP cards are coming in. I will be looking 
  1401. to sell them for $3200.00ea.
  1402. Those of you that have responded to my emails know that I will DEAL for you 
  1403. business :)
  1404. They are not the E1 daughter card type.
  1405.  
  1406. 24- Quad Analog/Digital Modems..... will pay $200+/-
  1407. 10- NMC v90 enabled w/ nics ...someone has to have these sitting in the 
  1408. closet...
  1409. 10- Netserver 16 v34...with all the complaints on these there should be 
  1410. many available...you would think.
  1411. Any- Hiper ARC w/ nic
  1412. Any- Hiper DSP E1 style...must have enabled daughtercard.
  1413.  
  1414. All equipment must be guaranteed working. I am willing to pay COD/Visa/MC/AMEX
  1415.  
  1416. Steve Rivera (VP) - w-732-833-2111 /  c-732-433-5890 24Hr 
  1417. (www.isp-networkhardware.com)
  1418. Email: srivera@wrca.net - Mobile Email: srivera711@hotmail.com
  1419.  
  1420. Worldwide Provider of Network Hardware Since 1981.
  1421.  
  1422.  
  1423.  
  1424.  
  1425.  
  1426.  
  1427.  
  1428.       
  1429.  
  1430.  
  1431.  
  1432.  
  1433.  
  1434. -
  1435.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  1436.  with "unsubscribe usr-tc" in the body of the message.
  1437.  For information on digests or retrieving files and old messages send
  1438.  "help" to the same address.  Do not use quotes in your message.
  1439.  
  1440.  
  1441. -------------------------------------------------------------------------------
  1442.  
  1443. From: "Steve Rivera -www.wrca.net" <sales@wrca.net>
  1444. Subject: (usr-tc) WTB: USR TC hardware
  1445. Date: 07 Sep 2000 18:35:04 -0400
  1446.  
  1447. WR Communication Associate (WRCA) is looking to BUY the following USR hardware:
  1448. I look forward to hearing from you. email or phone is fine.
  1449.  
  1450. Remember...next week a load of DSP cards are coming in. I will be looking 
  1451. to sell them for $3200.00ea.
  1452. Those of you that have responded to my emails know that I will DEAL for you 
  1453. business :)
  1454. They are not the E1 daughter card type.
  1455.  
  1456. 24- Quad Analog/Digital Modems..... will pay $200+/-
  1457. 10- NMC v90 enabled w/ nics ...someone has to have these sitting in the 
  1458. closet...
  1459. 10- Netserver 16 v34...with all the complaints on these there should be 
  1460. many available...you would think.
  1461. Any- Hiper ARC w/ nic
  1462. Any- Hiper DSP E1 style...must have enabled daughtercard.
  1463.  
  1464. All equipment must be guaranteed working. I am willing to pay COD/Visa/MC/AMEX
  1465.  
  1466. Steve Rivera (VP) - w-732-833-2111 /  c-732-433-5890 24Hr 
  1467. (www.isp-networkhardware.com)
  1468. Email: srivera@wrca.net - Mobile Email: srivera711@hotmail.com
  1469.  
  1470. Worldwide Provider of Network Hardware Since 1981.
  1471.  
  1472.  
  1473.  
  1474.  
  1475.  
  1476.  
  1477.  
  1478.       
  1479.  
  1480.  
  1481.  
  1482.  
  1483.  
  1484. -
  1485.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  1486.  with "unsubscribe usr-tc" in the body of the message.
  1487.  For information on digests or retrieving files and old messages send
  1488.  "help" to the same address.  Do not use quotes in your message.
  1489.  
  1490.  
  1491. -------------------------------------------------------------------------------
  1492.  
  1493. From: Chris Thomas <chris.thomas@wn.com.au>
  1494. Subject: RE: (usr-tc) oid for harc cpu usage
  1495. Date: 08 Sep 2000 09:02:38 +0800 
  1496.  
  1497. Actually, the question was "Is there an oid in the new release of code to
  1498. find the cpu usage of the Harc?", not the delta CPU usage. While Mike's
  1499. answer at least attempts to answer the question, it sounds like the answer
  1500. is actually "No". The delta CPU usage has been part of the HARC MIB for some
  1501. time, and while it may serve a purpose, it certainly doesn't show the total
  1502. CPU usage. Dwayne was simply asking if there is an OID in the new code that
  1503. shows the total CPU usage, once again, sounds like the answer is "No".
  1504.  
  1505. Leaving all the discussion about the older delta CPU usage OID out, does
  1506. anybody know if 3Com have included an OID to measure true CPU usage in the
  1507. new HARC code.
  1508.  
  1509. Thanks,
  1510.  
  1511. Chris
  1512.  
  1513. > -----Original Message-----
  1514. > From: Mike Andrews [mailto:mandrews@bit0.com]
  1515. > Sent: Thursday, 7 September 2000 23:20
  1516. > To: 'usr-tc@lists.xmission.com'
  1517. > Subject: Re: (usr-tc) oid for harc cpu usage
  1518. > Since nobody ever answered the original question about the OID,
  1519. > here's an MRTG entry...
  1520. > Target[foo]: 
  1521. > 1.3.6.1.4.1.429.4.3.1.13.0&1.3.6.1.4.1.429.4.3.1.14.0:public@foo
  1522. > MaxBytes[foo]: 100
  1523. > Title[foo]: CPU usage on HiPer ARC foo
  1524. > Options[foo]: gauge
  1525. > YLegend[foo]: percent cpu
  1526. > ShortLegend[foo]: percent cpu
  1527. > LegendI[foo]:  1-min:
  1528. > LegendO[foo]:  5-min:
  1529. > And yeah, most of the time it just graphs zero because it's 
  1530. > reporting only
  1531. > "above average" usage or something similar -- but occasionally it will
  1532. > graph some spikes when you get really busy.
  1533. > Mike Andrews (MA12) * mandrews@dcr.net * http://www.bit0.com/
  1534. > VP, sysadmin, & network guy, Digital Crescent Inc, Frankfort KY
  1535. > Dialup/ADSL/ISDN/T1 Internet access for Frankfort KY and 
  1536. > surrounding counties
  1537. > www.fark.com: If it's not news, it's Fark.  (Or something like that.)
  1538. > On Thu, 7 Sep 2000, Paul Farber wrote:
  1539. > > So it's just named poorly?
  1540. > > 
  1541. > > >From you explination.. as long as the last 3 values are 0 
  1542. > then the CPU is
  1543. > > just not above some threshold set in flash.... OK, next 
  1544. > question:  what's
  1545. > > that value?  Or is it safe to say that as long as the 
  1546. > values are 0 it's
  1547. > > just nothing to worry about?
  1548. > > 
  1549. > > Thanks
  1550. > > 
  1551. > > Paul Farber
  1552. > > Farber Technology
  1553. > > farber@admin.f-tech.net
  1554. > > Ph  570-628-5303
  1555. > > Fax 570-628-5545
  1556. > > 
  1557. > > On Thu, 7 Sep 2000, Veda Narayan wrote:
  1558. > > 
  1559. > > > Quoting Paul Farber <farber@admin.f-tech.net>:
  1560. > > > 
  1561. > > > > historically sho cpu utilization has been broke.  On 
  1562. > both ARC's I have
  1563. > > > > 4.1.59 and sho cpu util are 0% (with 250+ calls on it!)
  1564. > > > > 
  1565. > > > No - show cpu is not broken.  It shows 0% with 250+ calls 
  1566. > is normal.  The HiPer 
  1567. > > > arc is designed to show the CPU utilization only when it 
  1568. > reaches the level of 
  1569. > > > calls/flash updates/route tables and any other routing 
  1570. > related activity exceeds 
  1571. > > > the bench mark.  Which basically means you will see show 
  1572. > cpu activity 
  1573. > > > instantaneously if you do a save all and do a show cpu at 
  1574. > that instance.
  1575. > > > 
  1576. > > > What it is that being a embaded system, the HiPer arc CPU 
  1577. > is always being 
  1578. > > > utilized, so they have a bench mark, once you exceed the 
  1579. > bench mark the cpu 
  1580. > > > utilization shows.  Typically for normal call volumes you 
  1581. > will not see any cpu 
  1582. > > > utilization, do a lot of l2tp, cleartcp, pptp, calls you 
  1583. > will see some 
  1584. > > > utilization.  
  1585. > > > 
  1586. > > > 
  1587. > > > -V
  1588. > > > 
  1589. > > > 
  1590. > > > > Paul Farber
  1591. > > > > Farber Technology
  1592. > > > > farber@admin.f-tech.net
  1593. > > > > Ph  570-628-5303
  1594. > > > > Fax 570-628-5545
  1595. > > > > 
  1596. > > > > On Thu, 7 Sep 2000, Dwayne Varey wrote:
  1597. > > > > 
  1598. > > > > > Is there an oid in the new release of code to find 
  1599. > the cpu usage of
  1600. > > > > the
  1601. > > > > > Harc?
  1602. > > > > > 
  1603. > > > > >  ________________________________________________
  1604. > > > > >  Dwayne Varey
  1605. > > > > >  Systems Administrator
  1606. > > > > >  WestNet - WA's Statewide Internet Provider
  1607. > > > > >  Phone: 92182600 - Fax: 92182666
  1608. > > > > >  http://www.wn.com.au
  1609. > > > > >  _________________________________________________
  1610. > > > > >  
  1611. > > > > > 
  1612. > > > > > -
  1613. > > > > >  To unsubscribe to usr-tc, send an email to 
  1614. > "majordomo@xmission.com"
  1615. > > > > >  with "unsubscribe usr-tc" in the body of the message.
  1616. > > > > >  For information on digests or retrieving files and 
  1617. > old messages send
  1618. > > > > >  "help" to the same address.  Do not use quotes in 
  1619. > your message.
  1620. > > > > > 
  1621. > > > > 
  1622. > > > > 
  1623. > > > > -
  1624. > > > >  To unsubscribe to usr-tc, send an email to 
  1625. > "majordomo@xmission.com"
  1626. > > > >  with "unsubscribe usr-tc" in the body of the message.
  1627. > > > >  For information on digests or retrieving files and old 
  1628. > messages send
  1629. > > > >  "help" to the same address.  Do not use quotes in your message.
  1630. > > > > 
  1631. > > > 
  1632. > > > 
  1633. > > > 
  1634. > > > ===========
  1635. > > > 
  1636. > > > -V
  1637. > > > 
  1638. > > > ==========
  1639. > > > 
  1640. > > 
  1641. > > 
  1642. > > -
  1643. > >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  1644. > >  with "unsubscribe usr-tc" in the body of the message.
  1645. > >  For information on digests or retrieving files and old 
  1646. > messages send
  1647. > >  "help" to the same address.  Do not use quotes in your message.
  1648. > > 
  1649. > -
  1650. >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  1651. >  with "unsubscribe usr-tc" in the body of the message.
  1652. >  For information on digests or retrieving files and old messages send
  1653. >  "help" to the same address.  Do not use quotes in your message.
  1654.  
  1655. -
  1656.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  1657.  with "unsubscribe usr-tc" in the body of the message.
  1658.  For information on digests or retrieving files and old messages send
  1659.  "help" to the same address.  Do not use quotes in your message.
  1660.  
  1661.  
  1662. -------------------------------------------------------------------------------
  1663.  
  1664. From: Veda Narayan <ved@iyka.com>
  1665. Subject: Re: (usr-tc) oid for harc cpu usage
  1666. Date: 07 Sep 2000 20:53:02 -0600
  1667.  
  1668. Quoting Paul Farber <farber@admin.f-tech.net>:
  1669.  
  1670. > So it's just named poorly?
  1671. Not its not, you have to have a base line for the CPU utilization and it could 
  1672. have been nice if they showed the minimun cpu utilization as some percentage 
  1673. rather than showing 0.
  1674.  
  1675. > >From you explination.. as long as the last 3 values are 0 then the CPU
  1676. > is
  1677. > just not above some threshold set in flash.... OK, next question: 
  1678. > what's
  1679. > that value?  Or is it safe to say that as long as the values are 0 it's
  1680. > just nothing to worry about?
  1681. What you need to look at is what is the instantaneous utilzation, last hour, 
  1682. last min and last day.  There is no issue for the CPU to run 100% at any given 
  1683. instance but if for the last hour you see it being used 100% that is an 
  1684. indication of too much processing.  I do not have an answer for the exact save 
  1685. value - if I come across I will let you know
  1686.  
  1687. V
  1688.  
  1689.  
  1690. > Thanks
  1691. > Paul Farber
  1692. > Farber Technology
  1693. > farber@admin.f-tech.net
  1694. > Ph  570-628-5303
  1695. > Fax 570-628-5545
  1696. > On Thu, 7 Sep 2000, Veda Narayan wrote:
  1697. > > Quoting Paul Farber <farber@admin.f-tech.net>:
  1698. > > 
  1699. > > > historically sho cpu utilization has been broke.  On both ARC's I
  1700. > have
  1701. > > > 4.1.59 and sho cpu util are 0% (with 250+ calls on it!)
  1702. > > > 
  1703. > > No - show cpu is not broken.  It shows 0% with 250+ calls is normal. 
  1704. > The HiPer 
  1705. > > arc is designed to show the CPU utilization only when it reaches the
  1706. > level of 
  1707. > > calls/flash updates/route tables and any other routing related
  1708. > activity exceeds 
  1709. > > the bench mark.  Which basically means you will see show cpu activity 
  1710. > > instantaneously if you do a save all and do a show cpu at that
  1711. > instance.
  1712. > > 
  1713. > > What it is that being a embaded system, the HiPer arc CPU is always
  1714. > being 
  1715. > > utilized, so they have a bench mark, once you exceed the bench mark
  1716. > the cpu 
  1717. > > utilization shows.  Typically for normal call volumes you will not see
  1718. > any cpu 
  1719. > > utilization, do a lot of l2tp, cleartcp, pptp, calls you will see some
  1720. > > utilization.  
  1721. > > 
  1722. > > 
  1723. > > -V
  1724. > > 
  1725. > > 
  1726. > > > Paul Farber
  1727. > > > Farber Technology
  1728. > > > farber@admin.f-tech.net
  1729. > > > Ph  570-628-5303
  1730. > > > Fax 570-628-5545
  1731. > > > 
  1732. > > > On Thu, 7 Sep 2000, Dwayne Varey wrote:
  1733. > > > 
  1734. > > > > Is there an oid in the new release of code to find the cpu usage
  1735. > of
  1736. > > > the
  1737. > > > > Harc?
  1738. > > > > 
  1739. > > > >  ________________________________________________
  1740. > > > >  Dwayne Varey
  1741. > > > >  Systems Administrator
  1742. > > > >  WestNet - WA's Statewide Internet Provider
  1743. > > > >  Phone: 92182600 - Fax: 92182666
  1744. > > > >  http://www.wn.com.au
  1745. > > > >  _________________________________________________
  1746. > > > >  
  1747. > > > > 
  1748. > > > > -
  1749. > > > >  To unsubscribe to usr-tc, send an email to
  1750. > "majordomo@xmission.com"
  1751. > > > >  with "unsubscribe usr-tc" in the body of the message.
  1752. > > > >  For information on digests or retrieving files and old messages
  1753. > send
  1754. > > > >  "help" to the same address.  Do not use quotes in your message.
  1755. > > > > 
  1756. > > > 
  1757. > > > 
  1758. > > > -
  1759. > > >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  1760. > > >  with "unsubscribe usr-tc" in the body of the message.
  1761. > > >  For information on digests or retrieving files and old messages
  1762. > send
  1763. > > >  "help" to the same address.  Do not use quotes in your message.
  1764. > > > 
  1765. > > 
  1766. > > 
  1767. > > 
  1768. > > ===========
  1769. > > 
  1770. > > -V
  1771. > > 
  1772. > > ==========
  1773. > > 
  1774.  
  1775.  
  1776.  
  1777. ===========
  1778.  
  1779. -V
  1780.  
  1781. ==========
  1782.  
  1783. -
  1784.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  1785.  with "unsubscribe usr-tc" in the body of the message.
  1786.  For information on digests or retrieving files and old messages send
  1787.  "help" to the same address.  Do not use quotes in your message.
  1788.  
  1789.  
  1790. -------------------------------------------------------------------------------
  1791.  
  1792. From: Veda Narayan <ved@iyka.com>
  1793. Subject: Re: (usr-tc) Relocation User
  1794. Date: 07 Sep 2000 20:54:53 -0600
  1795.  
  1796. Quoting Seth Jacobs <seth.jacobs@onramp113.org>:
  1797.  
  1798. > My TC unit is sending an error message ("Relocation User") to my RADIUS
  1799. > server.  The error message is:
  1800. > (Radius  :01857) 9/5/2000 21:17:38 Relocation User jneeley from port 4
  1801. > to 1
  1802. > due to ClassID: 84f6
  1803.  
  1804. Looks more like radius trying to tell you about some ID.  What radius server do 
  1805. you have and what version of ARC code?  Also 
  1806. if you can get a mon radius for this packet that could help
  1807.  
  1808. -v
  1809.  
  1810. > (Radius  :01857) 9/5/2000 21:20:56 Relocation User porsh from port 4 to
  1811. > 2
  1812. > due to ClassID: 84c9
  1813. > (Radius  :01857) 9/5/2000 21:25:26 Relocation User amendoza from port 4
  1814. > to 3
  1815. > due to ClassID: 84f7
  1816. > Can anyone tell me what this means, if it's anything I should be
  1817. > concerned
  1818. > about, and how I can find out more about it?
  1819. > Thanks.
  1820. > Seth
  1821. > -
  1822. >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  1823. >  with "unsubscribe usr-tc" in the body of the message.
  1824. >  For information on digests or retrieving files and old messages send
  1825. >  "help" to the same address.  Do not use quotes in your message.
  1826.  
  1827.  
  1828.  
  1829. ===========
  1830.  
  1831. -V
  1832.  
  1833. ==========
  1834.  
  1835. -
  1836.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  1837.  with "unsubscribe usr-tc" in the body of the message.
  1838.  For information on digests or retrieving files and old messages send
  1839.  "help" to the same address.  Do not use quotes in your message.
  1840.  
  1841.  
  1842. -------------------------------------------------------------------------------
  1843.  
  1844. From: "David Arnold" <darnold@qzip.net>
  1845. Subject: (usr-tc) WTB: 2 ISDN Netserver PRI cards for USR TC
  1846. Date: 08 Sep 2000 09:55:45 -0500
  1847.  
  1848. With or without NICs, depending on price. Will pay M.O., COD, CC or check.
  1849. Please reply to darnold@qzip.net with pricing, model # and memory.
  1850.  
  1851. Thank you,
  1852. David Arnold
  1853. Systems Administrator
  1854. QZIP.net
  1855. Paragon Micro Technologies, Inc.
  1856. 713-681-9861
  1857. darnold@qzip.net
  1858.  
  1859.  
  1860.  
  1861. -
  1862.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  1863.  with "unsubscribe usr-tc" in the body of the message.
  1864.  For information on digests or retrieving files and old messages send
  1865.  "help" to the same address.  Do not use quotes in your message.
  1866.  
  1867.  
  1868. -------------------------------------------------------------------------------
  1869.  
  1870. From: Brian <signal@shreve.net>
  1871. Subject: (usr-tc) 4.1.13 sought
  1872. Date: 08 Sep 2000 12:15:22 -0500 (CDT)
  1873.  
  1874.  
  1875. I am currently running 4.1.22 ARC code.........I have been for it seems
  1876. like forever.
  1877.  
  1878. I am not looking for any new features.  I need some bugs fixed though, and
  1879. thats all 4.1.13 really buys you over 4.1.22...........actually I think
  1880. 4.1.13 added some obscure l2tp feature.........but I don't use l2tp.
  1881.  
  1882. In any case, if someone could be so kind as to mail me 4.1.13, or give me
  1883. a way to get my hands on it, I would appreciate it, and maybe I can help
  1884. you sometime.  3Com apparently feels one should pay for a software release
  1885. that does nothing but fix about 10 issues.........
  1886.  
  1887. Are others comfortable with 4.1.13 (as far as 4.1 train code goes)?
  1888.  
  1889. I take baby steps with 3com code these days...........although I do here
  1890. the 5.x stuff is good.
  1891.  
  1892. Brian
  1893.  
  1894.  
  1895. Brian Feeny, CCNA, CCDA       signal@shreve.net   
  1896. Network Administrator          
  1897. ShreveNet Inc. (ASN 11881)          
  1898.  
  1899.  
  1900. -
  1901.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  1902.  with "unsubscribe usr-tc" in the body of the message.
  1903.  For information on digests or retrieving files and old messages send
  1904.  "help" to the same address.  Do not use quotes in your message.
  1905.  
  1906.  
  1907. -------------------------------------------------------------------------------
  1908.  
  1909. From: <blacksea@pumba.cheep.net.ua>
  1910. Subject: (usr-tc) Looking for Configuration Info for E1 access
  1911. Date: 09 Sep 2000 16:32:55 +0300 (EEST)
  1912.  
  1913. I have a total control but are not sure of the correct or possible card 
  1914. configuration needed! Can any one direct me to such infromation
  1915.  
  1916. Thank you
  1917. Crve
  1918.  
  1919. -
  1920.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  1921.  with "unsubscribe usr-tc" in the body of the message.
  1922.  For information on digests or retrieving files and old messages send
  1923.  "help" to the same address.  Do not use quotes in your message.
  1924.  
  1925.  
  1926. -------------------------------------------------------------------------------
  1927.  
  1928. From: Veda Narayan <ved@iyka.com>
  1929. Subject: Re: (usr-tc) Looking for Configuration Info for E1 access
  1930. Date: 09 Sep 2000 11:09:07 -0600
  1931.  
  1932. Quoting blacksea@pumba.cheep.net.ua:
  1933.  
  1934. > I have a total control but are not sure of the correct or possible card 
  1935. > configuration needed! Can any one direct me to such infromation
  1936. What Total control do you have?  Need to know exactly the configuration of the 
  1937. chassis, the cards that you have and also info on if youhave TCM or not etc.
  1938.  
  1939. -V
  1940.  
  1941. > Thank you
  1942. > Crve
  1943. > -
  1944. >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  1945. >  with "unsubscribe usr-tc" in the body of the message.
  1946. >  For information on digests or retrieving files and old messages send
  1947. >  "help" to the same address.  Do not use quotes in your message.
  1948.  
  1949.  
  1950.  
  1951. ===========
  1952.  
  1953. -V
  1954.  
  1955. ==========
  1956.  
  1957. -
  1958.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  1959.  with "unsubscribe usr-tc" in the body of the message.
  1960.  For information on digests or retrieving files and old messages send
  1961.  "help" to the same address.  Do not use quotes in your message.
  1962.  
  1963.  
  1964. -------------------------------------------------------------------------------
  1965.  
  1966. From: Veda Narayan <ved@iyka.com>
  1967. Subject: Re: (usr-tc) Looking for Configuration Info for E1 access
  1968. Date: 09 Sep 2000 11:09:07 -0600
  1969.  
  1970. Quoting blacksea@pumba.cheep.net.ua:
  1971.  
  1972. > I have a total control but are not sure of the correct or possible card 
  1973. > configuration needed! Can any one direct me to such infromation
  1974. What Total control do you have?  Need to know exactly the configuration of the 
  1975. chassis, the cards that you have and also info on if youhave TCM or not etc.
  1976.  
  1977. -V
  1978.  
  1979. > Thank you
  1980. > Crve
  1981. > -
  1982. >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  1983. >  with "unsubscribe usr-tc" in the body of the message.
  1984. >  For information on digests or retrieving files and old messages send
  1985. >  "help" to the same address.  Do not use quotes in your message.
  1986.  
  1987.  
  1988.  
  1989. ===========
  1990.  
  1991. -V
  1992.  
  1993. ==========
  1994.  
  1995. -
  1996.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  1997.  with "unsubscribe usr-tc" in the body of the message.
  1998.  For information on digests or retrieving files and old messages send
  1999.  "help" to the same address.  Do not use quotes in your message.
  2000.  
  2001.  
  2002. -------------------------------------------------------------------------------
  2003.  
  2004. From: "Seth Jacobs" <seth.jacobs@onramp113.org>
  2005. Subject: Re: (usr-tc) Relocation User
  2006. Date: 11 Sep 2000 19:49:18 -0700
  2007.  
  2008. Veda,
  2009.  
  2010. We're using Vircom RADIUS and software version 4.2.32 on the HyperArc.  I
  2011. contacted Vircom and they say that the RADIUS server is simply reporting
  2012. what it's being told by the RAS.
  2013.  
  2014. Seth
  2015.  
  2016. ----- Original Message -----
  2017. Sent: Thursday, September 07, 2000 7:54 PM
  2018.  
  2019.  
  2020. > Quoting Seth Jacobs <seth.jacobs@onramp113.org>:
  2021. >
  2022. > > My TC unit is sending an error message ("Relocation User") to my RADIUS
  2023. > > server.  The error message is:
  2024. > >
  2025. > > (Radius  :01857) 9/5/2000 21:17:38 Relocation User jneeley from port 4
  2026. > > to 1
  2027. > > due to ClassID: 84f6
  2028. >
  2029. > Looks more like radius trying to tell you about some ID.  What radius
  2030. server do
  2031. > you have and what version of ARC code?  Also
  2032. > if you can get a mon radius for this packet that could help
  2033. >
  2034. > -v
  2035. >
  2036. > > (Radius  :01857) 9/5/2000 21:20:56 Relocation User porsh from port 4 to
  2037. > > 2
  2038. > > due to ClassID: 84c9
  2039. > > (Radius  :01857) 9/5/2000 21:25:26 Relocation User amendoza from port 4
  2040. > > to 3
  2041. > > due to ClassID: 84f7
  2042. > >
  2043. > > Can anyone tell me what this means, if it's anything I should be
  2044. > > concerned
  2045. > > about, and how I can find out more about it?
  2046. > >
  2047. > > Thanks.
  2048. > >
  2049. > > Seth
  2050. > >
  2051. > >
  2052. > >
  2053. > >
  2054. > > -
  2055. > >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  2056. > >  with "unsubscribe usr-tc" in the body of the message.
  2057. > >  For information on digests or retrieving files and old messages send
  2058. > >  "help" to the same address.  Do not use quotes in your message.
  2059. > >
  2060. >
  2061. >
  2062. >
  2063. > ===========
  2064. >
  2065. > -V
  2066. >
  2067. > ==========
  2068. >
  2069. > -
  2070. >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  2071. >  with "unsubscribe usr-tc" in the body of the message.
  2072. >  For information on digests or retrieving files and old messages send
  2073. >  "help" to the same address.  Do not use quotes in your message.
  2074.  
  2075.  
  2076. -
  2077.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  2078.  with "unsubscribe usr-tc" in the body of the message.
  2079.  For information on digests or retrieving files and old messages send
  2080.  "help" to the same address.  Do not use quotes in your message.
  2081.  
  2082.  
  2083. -------------------------------------------------------------------------------
  2084.  
  2085. From: Scott Trautman <scottt@corp.gdinet.com>
  2086. Subject: (usr-tc) The connection for call id 219549253, on if slot:14/mod:23 was dr
  2087. Date: 13 Sep 2000 09:33:30 -0500
  2088.  
  2089. Hi, I seem to have seen this before, can't recall for the life of me what
  2090. this ended up meaning.
  2091.  
  2092. Sequence on this call:
  2093.  
  2094. Sep 13 08:53:19 lkm-ha1 At 13:49:00, Facility "Auth Facility", 
  2095. Level "VERBOSE":: A call, call id = 219549253, has arrived on interface 
  2096. slot:14/mod:23
  2097. Sep 13 08:53:38 lkm-ha1 At 13:49:19, Facility "Auth Facility", Level
  2098. "COMMON":: 
  2099. A call is established, call id 219549253, on interface slot:14/mod:23
  2100. Sep 13 08:53:38 lkm-ha1 At 13:49:20, Facility "Auth Facility", Level
  2101. "COMMON":: 
  2102. The connection for call id 219549253, on if slot:14/mod:23 was dropped for
  2103. user 
  2104. UNKNOWN
  2105.  
  2106. Doing a trace (mon ppp), I see:
  2107.  
  2108.  User Name: [Prrrrbj                         ]
  2109.  Monitoring user Prrrrbj.
  2110. Decode tracing started, press ESCAPE to stop; press X for hex tracing.
  2111. ....Tracing for user "Prrrrbj"; Escape to stop...
  2112.  
  2113. Outgoing PPP Data on interface: slot:14/mod:23 
  2114.     PAP        ACK               
  2115. Outgoing PPP Data on interface: slot:14/mod:23 
  2116.     IPCP       CFG_REQ           COMPR_TYPE     00 2d 0f 00 
  2117.                                  NEW_ADDRS      9c 2e b9 01 
  2118.  
  2119. Incoming PPP Data on interface: slot:14/mod:23 
  2120.     LCP        TERM_REQ          
  2121.  
  2122. Outgoing PPP Data on interface: slot:14/mod:23 
  2123.     LCP        TERM_ACK  
  2124.  
  2125. It's saying to me the client is <requesting> to be terminated (suicide?)
  2126. All their settings appear to be correct...definately is set to "let server
  2127. assign" the IP address--
  2128.  
  2129. Any hints here as to what's going on?
  2130.  
  2131. I hate to have someone rip out their dialup networking if I don't have a
  2132. good reason for it.
  2133.  
  2134. Anyone seen this before
  2135.  
  2136. Thanks!!
  2137.  
  2138. Scott M. Trautman     800-482-4638    
  2139. Global Dialog Internet     608-240-4638,4637fax    
  2140. 2810 Crossroads, STE LL2     scott@gdinet.com    
  2141. Madison WI 53718     <http://www.gdinet.com/>    
  2142.  
  2143.  
  2144. -
  2145.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  2146.  with "unsubscribe usr-tc" in the body of the message.
  2147.  For information on digests or retrieving files and old messages send
  2148.  "help" to the same address.  Do not use quotes in your message.
  2149.  
  2150.  
  2151. -------------------------------------------------------------------------------
  2152.  
  2153. From: Veda Narayan <ved@iyka.com>
  2154. Subject: Re: (usr-tc) Relocation User
  2155. Date: 13 Sep 2000 13:42:49 -0600
  2156.  
  2157. Quoting Seth Jacobs <seth.jacobs@onramp113.org>:
  2158.  
  2159. > Veda,
  2160. > We're using Vircom RADIUS and software version 4.2.32 on the HyperArc. 
  2161. > I
  2162. > contacted Vircom and they say that the RADIUS server is simply reporting
  2163. > what it's being told by the RAS.
  2164. What we would need is on the HiPer arc you can do a mon radius, this has 
  2165. options to capture the data that is sent out to the radius server and vice 
  2166. versa, you have to capture that and compare to what you see - My guess you have 
  2167. a vendor specific attribute that is not being properlly interpreted by the 
  2168. radius server
  2169.  
  2170. -V
  2171.  
  2172. > Seth
  2173. > ----- Original Message -----
  2174. > From: Veda Narayan <ved@iyka.com>
  2175. > To: <usr-tc@lists.xmission.com>; Seth Jacobs <seth.jacobs@onramp113.org>
  2176. > Sent: Thursday, September 07, 2000 7:54 PM
  2177. > Subject: Re: (usr-tc) Relocation User
  2178. > > Quoting Seth Jacobs <seth.jacobs@onramp113.org>:
  2179. > >
  2180. > > > My TC unit is sending an error message ("Relocation User") to my
  2181. > RADIUS
  2182. > > > server.  The error message is:
  2183. > > >
  2184. > > > (Radius  :01857) 9/5/2000 21:17:38 Relocation User jneeley from port
  2185. > 4
  2186. > > > to 1
  2187. > > > due to ClassID: 84f6
  2188. > >
  2189. > > Looks more like radius trying to tell you about some ID.  What radius
  2190. > server do
  2191. > > you have and what version of ARC code?  Also
  2192. > > if you can get a mon radius for this packet that could help
  2193. > >
  2194. > > -v
  2195. > >
  2196. > > > (Radius  :01857) 9/5/2000 21:20:56 Relocation User porsh from port 4
  2197. > to
  2198. > > > 2
  2199. > > > due to ClassID: 84c9
  2200. > > > (Radius  :01857) 9/5/2000 21:25:26 Relocation User amendoza from
  2201. > port 4
  2202. > > > to 3
  2203. > > > due to ClassID: 84f7
  2204. > > >
  2205. > > > Can anyone tell me what this means, if it's anything I should be
  2206. > > > concerned
  2207. > > > about, and how I can find out more about it?
  2208. > > >
  2209. > > > Thanks.
  2210. > > >
  2211. > > > Seth
  2212. > > >
  2213. > > >
  2214. > > >
  2215. > > >
  2216. > > > -
  2217. > > >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  2218. > > >  with "unsubscribe usr-tc" in the body of the message.
  2219. > > >  For information on digests or retrieving files and old messages
  2220. > send
  2221. > > >  "help" to the same address.  Do not use quotes in your message.
  2222. > > >
  2223. > >
  2224. > >
  2225. > >
  2226. > > ===========
  2227. > >
  2228. > > -V
  2229. > >
  2230. > > ==========
  2231. > >
  2232. > > -
  2233. > >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  2234. > >  with "unsubscribe usr-tc" in the body of the message.
  2235. > >  For information on digests or retrieving files and old messages send
  2236. > >  "help" to the same address.  Do not use quotes in your message.
  2237. > -
  2238. >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  2239. >  with "unsubscribe usr-tc" in the body of the message.
  2240. >  For information on digests or retrieving files and old messages send
  2241. >  "help" to the same address.  Do not use quotes in your message.
  2242.  
  2243.  
  2244.  
  2245. ===========
  2246.  
  2247. -V
  2248.  
  2249. ==========
  2250.  
  2251. -
  2252.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  2253.  with "unsubscribe usr-tc" in the body of the message.
  2254.  For information on digests or retrieving files and old messages send
  2255.  "help" to the same address.  Do not use quotes in your message.
  2256.  
  2257.  
  2258. -------------------------------------------------------------------------------
  2259.  
  2260. From: Veda Narayan <ved@iyka.com>
  2261. Subject: Re: (usr-tc) The connection for call id 219549253, on if slot:14/mod:23 was dr opped for user - after successful RADIUS authentication
  2262. Date: 13 Sep 2000 13:47:17 -0600
  2263.  
  2264. Quoting Scott Trautman <scottt@corp.gdinet.com>:
  2265.  
  2266.  
  2267. When a user dials in to the total control, if the call fails due to some 
  2268. modem/connection/user-error etc, the HiPer arc does not know the name of the 
  2269. person who called, thus it calls the user unknow.  In this case as you see you 
  2270. have got IPCP being sent out by the HiPer arc but you get a LCP termination 
  2271. request - thus the user asked for disconnection - at this point the PPP stack 
  2272. on the hiper arc does not know that a username thus the unknown user has been 
  2273. disconnected.
  2274.  
  2275. -V
  2276.  
  2277.  
  2278. > Hi, I seem to have seen this before, can't recall for the life of me
  2279. > what
  2280. > this ended up meaning.
  2281. > Sequence on this call:
  2282. > Sep 13 08:53:19 lkm-ha1 At 13:49:00, Facility "Auth Facility", 
  2283. > Level "VERBOSE":: A call, call id = 219549253, has arrived on interface 
  2284. > slot:14/mod:23
  2285. > Sep 13 08:53:38 lkm-ha1 At 13:49:19, Facility "Auth Facility", Level
  2286. > "COMMON":: 
  2287. > A call is established, call id 219549253, on interface slot:14/mod:23
  2288. > Sep 13 08:53:38 lkm-ha1 At 13:49:20, Facility "Auth Facility", Level
  2289. > "COMMON":: 
  2290. > The connection for call id 219549253, on if slot:14/mod:23 was dropped
  2291. > for
  2292. > user 
  2293. > UNKNOWN
  2294. > Doing a trace (mon ppp), I see:
  2295. >  User Name: [Prrrrbj                         ]
  2296. >  Monitoring user Prrrrbj.
  2297. > Decode tracing started, press ESCAPE to stop; press X for hex tracing.
  2298. > ....Tracing for user "Prrrrbj"; Escape to stop...
  2299. > Outgoing PPP Data on interface: slot:14/mod:23 
  2300. >     PAP        ACK               
  2301. > Outgoing PPP Data on interface: slot:14/mod:23 
  2302. >     IPCP       CFG_REQ           COMPR_TYPE     00 2d 0f 00 
  2303. >                                  NEW_ADDRS      9c 2e b9 01 
  2304. > Incoming PPP Data on interface: slot:14/mod:23 
  2305. >     LCP        TERM_REQ          
  2306. > Outgoing PPP Data on interface: slot:14/mod:23 
  2307. >     LCP        TERM_ACK  
  2308. > It's saying to me the client is <requesting> to be terminated (suicide?)
  2309. > All their settings appear to be correct...definately is set to "let
  2310. > server
  2311. > assign" the IP address--
  2312. > Any hints here as to what's going on?
  2313. > I hate to have someone rip out their dialup networking if I don't have a
  2314. > good reason for it.
  2315. > Anyone seen this before
  2316. > Thanks!!
  2317. > Scott M. Trautman     800-482-4638    
  2318. > Global Dialog Internet     608-240-4638,4637fax    
  2319. > 2810 Crossroads, STE LL2     scott@gdinet.com    
  2320. > Madison WI 53718     <http://www.gdinet.com/>    
  2321. > -
  2322. >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  2323. >  with "unsubscribe usr-tc" in the body of the message.
  2324. >  For information on digests or retrieving files and old messages send
  2325. >  "help" to the same address.  Do not use quotes in your message.
  2326.  
  2327.  
  2328.  
  2329. ===========
  2330.  
  2331. -V
  2332.  
  2333. ==========
  2334.  
  2335. -
  2336.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  2337.  with "unsubscribe usr-tc" in the body of the message.
  2338.  For information on digests or retrieving files and old messages send
  2339.  "help" to the same address.  Do not use quotes in your message.
  2340.  
  2341.  
  2342. -------------------------------------------------------------------------------
  2343.  
  2344. From: Jeff Mcadams <jeffm@iglou.com>
  2345. Subject: Re: (usr-tc) The connection for call id 219549253, on if slot:14/mod:23 was dr opped for user - after successful RADIUS authentication
  2346. Date: 13 Sep 2000 14:55:13 -0400
  2347.  
  2348. Also sprach Veda Narayan
  2349. >When a user dials in to the total control, if the call fails due to
  2350. >some modem/connection/user-error etc, the HiPer arc does not know the
  2351. >name of the person who called, thus it calls the user unknow.  In this
  2352. >case as you see you have got IPCP being sent out by the HiPer arc but
  2353. >you get a LCP termination request - thus the user asked for
  2354. >disconnection - at this point the PPP stack on the hiper arc does not
  2355. >know that a username thus the unknown user has been disconnected.
  2356.  
  2357. Uhm, yes it does know the username...he did a mon user with the username
  2358. to get the log, and IPCP occurs after PAP, (you can see the PAP auth
  2359. ack in the log), so the Arc does indeed know the userid if the drop
  2360. occured at the time that the ppp log shows.
  2361. -- 
  2362. Jeff McAdams                            Email: jeffm@iglou.com
  2363. Head Network Administrator              Voice: (502) 966-3848
  2364. IgLou Internet Services                        (800) 436-4456
  2365.  
  2366. -
  2367.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  2368.  with "unsubscribe usr-tc" in the body of the message.
  2369.  For information on digests or retrieving files and old messages send
  2370.  "help" to the same address.  Do not use quotes in your message.
  2371.  
  2372.  
  2373. -------------------------------------------------------------------------------
  2374.  
  2375. From: Veda Narayan <ved@iyka.com>
  2376. Subject: Re: (usr-tc) The connection for call id 219549253, on if slot:14/mod:23 was dr opped for user - after successful RADIUS authentication
  2377. Date: 14 Sep 2000 08:08:28 -0600
  2378.  
  2379. Quoting Jeff Mcadams <jeffm@iglou.com>:
  2380.  
  2381. > Uhm, yes it does know the username...he did a mon user with the username
  2382. > to get the log, and IPCP occurs after PAP, (you can see the PAP auth
  2383. > ack in the log), so the Arc does indeed know the userid if the drop
  2384. > occured at the time that the ppp log shows.
  2385.  
  2386. Nope - It still does not know the user name - the arc uses message passing.
  2387. So each module has to send the info to the other module to let PPP module to 
  2388. know the user name.  CIP tells PPP module about the call, PPP module starts LCP 
  2389. and then informs the radius/user module - this is where the authentication 
  2390. takes place, then radius/user module tells IP about the call to complete IPCP, 
  2391. if the call fails at that point IP does not say call complete - so radius/user 
  2392. will not tell PPP that there is a particular user tried to login.  If the IP 
  2393. was nacked or rejected or even if IPCP had taken place for some time before the 
  2394. LCP reject being received - yes then the user name know.
  2395.  
  2396. -V
  2397.  
  2398. > -- 
  2399. > Jeff McAdams                            Email: jeffm@iglou.com
  2400. > Head Network Administrator              Voice: (502) 966-3848
  2401. > IgLou Internet Services                        (800) 436-4456
  2402. > -
  2403. >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  2404. >  with "unsubscribe usr-tc" in the body of the message.
  2405. >  For information on digests or retrieving files and old messages send
  2406. >  "help" to the same address.  Do not use quotes in your message.
  2407.  
  2408.  
  2409.  
  2410. ===========
  2411.  
  2412. -V
  2413.  
  2414. ==========
  2415.  
  2416. -
  2417.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  2418.  with "unsubscribe usr-tc" in the body of the message.
  2419.  For information on digests or retrieving files and old messages send
  2420.  "help" to the same address.  Do not use quotes in your message.
  2421.  
  2422.  
  2423. -------------------------------------------------------------------------------
  2424.  
  2425. From: Jeff Mcadams <jeffm@iglou.com>
  2426. Subject: Re: (usr-tc) The connection for call id 219549253, on if slot:14/mod:23 was dr opped for user - after successful RADIUS authentication
  2427. Date: 14 Sep 2000 10:31:35 -0400
  2428.  
  2429. Also sprach Veda Narayan
  2430. >Quoting Jeff Mcadams <jeffm@iglou.com>:
  2431. >> Uhm, yes it does know the username...he did a mon user with the
  2432. >> username to get the log, and IPCP occurs after PAP, (you can see the
  2433. >> PAP auth ack in the log), so the Arc does indeed know the userid if
  2434. >> the drop occured at the time that the ppp log shows.
  2435.  
  2436. >Nope - It still does not know the user name - the arc uses message
  2437. >passing.  So each module has to send the info to the other module to
  2438. >let PPP module to know the user name.  CIP tells PPP module about the
  2439. >call, PPP module starts LCP and then informs the radius/user module -
  2440. >this is where the authentication takes place, then radius/user module
  2441. >tells IP about the call to complete IPCP, if the call fails at that
  2442. >point IP does not say call complete - so radius/user will not tell PPP
  2443. >that there is a particular user tried to login.  If the IP was nacked
  2444. >or rejected or even if IPCP had taken place for some time before the
  2445. >LCP reject being received - yes then the user name know.
  2446.  
  2447. Wow...not sure how you know so much about the internals of the Arc code,
  2448. but that's impressive.
  2449.  
  2450. Regardless though, sounds like a bug to me.  The *Arc* does know the
  2451. username...it has already completed PAP...though it might be in the
  2452. wrong module of the Arc code.  In my opinion, if PAP returns with an
  2453. authentication OK, then the Arc should use that username in whatever
  2454. logs from that point on.  The user may not be authorized to do IP, or
  2455. the peer may refuse IP, but they are authenticated, so the Arc does know
  2456. what the userid is and *should* include it in any logs to help diagnose
  2457. what the problem is.
  2458.  
  2459. On an only tangentially related note...
  2460.  
  2461. Anyone know what the deal is with the news server on totalservice?  It
  2462. seems to have been refusing connections for over a day now.  Given the
  2463. shoot-themselves-in-the-foot-concerning-customer-service-what-else-is-new
  2464. decision by 3Com to forbid participation in this list of techies and
  2465. others within 3Com (yes, I did confirm this to be the case, to my
  2466. satisfaction at least), and the totalservice news server software not
  2467. accepting connections, and continued incredible lameness concerning
  2468. software contracts; 3Com seems to be actively shutting down every
  2469. possible avenue of customer support.  I guess 3Com really doesn't want
  2470. customers after all.  *sigh*
  2471. -- 
  2472. Jeff McAdams                            Email: jeffm@iglou.com
  2473. Head Network Administrator              Voice: (502) 966-3848
  2474. IgLou Internet Services                        (800) 436-4456
  2475.  
  2476. -
  2477.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  2478.  with "unsubscribe usr-tc" in the body of the message.
  2479.  For information on digests or retrieving files and old messages send
  2480.  "help" to the same address.  Do not use quotes in your message.
  2481.  
  2482.  
  2483. -------------------------------------------------------------------------------
  2484.  
  2485. From: Greg Coffey <greg@coffey.com>
  2486. Subject: (usr-tc) Chassis Price
  2487. Date: 14 Sep 2000 13:12:04 -0600
  2488.  
  2489. Haven't bought a new chassis for months.  What are they going for new with 
  2490. 48 modems these days and who has the best price?
  2491.  
  2492.  
  2493.  
  2494. Thanks, Greg Coffey                               <gcoffey@vcn.com>
  2495. Visionary Communications  V 307-234-5443    F 307-234-5446
  2496. 100 N. Center Suite #100, Casper, WY  82601    www.vcn.com
  2497. _________________________________________________________
  2498.  
  2499.  
  2500. -
  2501.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  2502.  with "unsubscribe usr-tc" in the body of the message.
  2503.  For information on digests or retrieving files and old messages send
  2504.  "help" to the same address.  Do not use quotes in your message.
  2505.  
  2506.  
  2507. -------------------------------------------------------------------------------
  2508.  
  2509. From: K Mitchell <mitch@keyconn.net>
  2510. Subject: Re: (usr-tc) Chassis Price
  2511. Date: 14 Sep 2000 16:17:59 -0400
  2512.  
  2513. At 01:12 PM 9/14/00 -0600, Greg Coffey wrote:
  2514. >Haven't bought a new chassis for months.  What are they going for new with 
  2515. >48 modems these days and who has the best price?
  2516.  
  2517. Source Technology will probably be one of the better priced, if not the best.
  2518. http://www.source-t.com/
  2519. They are also good at supporting their customers. John DeDonato's my rep,
  2520. been good to deal with. I don't know what the current price is, probably
  2521. around $9k to $9500 for the 48-port startup bundle.
  2522.  
  2523.  
  2524. -- 
  2525. Kirk Mitchell-General Manager    mitch@keyconn.net
  2526. Keystone Connect                 Unlock Your World
  2527. Altoona, PA  814-941-5000        http://www.keyconn.net
  2528.  
  2529.  
  2530. -
  2531.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  2532.  with "unsubscribe usr-tc" in the body of the message.
  2533.  For information on digests or retrieving files and old messages send
  2534.  "help" to the same address.  Do not use quotes in your message.
  2535.  
  2536.  
  2537. -------------------------------------------------------------------------------
  2538.  
  2539. From: "Scot Desort" <scot@njaccess.net>
  2540. Subject: Re: (usr-tc) Chassis Price
  2541. Date: 14 Sep 2000 22:05:02 -0400
  2542.  
  2543. 2 weeks ago, the price from Source Technology was about $11,300 for the
  2544. startup 48 port chassis bundle with ps and HARC. 3COM had a $500 rebate
  2545. running in August, but that's over now.
  2546.  
  2547. --
  2548. Scot
  2549.  
  2550.  
  2551. ----- Original Message -----
  2552. Sent: Thursday, September 14, 2000 4:17 PM
  2553.  
  2554.  
  2555. > At 01:12 PM 9/14/00 -0600, Greg Coffey wrote:
  2556. > >Haven't bought a new chassis for months.  What are they going for new
  2557. with
  2558. > >48 modems these days and who has the best price?
  2559. >
  2560. > Source Technology will probably be one of the better priced, if not the
  2561. best.
  2562. > http://www.source-t.com/
  2563. > They are also good at supporting their customers. John DeDonato's my rep,
  2564. > been good to deal with. I don't know what the current price is, probably
  2565. > around $9k to $9500 for the 48-port startup bundle.
  2566. >
  2567. >
  2568. > --
  2569. > Kirk Mitchell-General Manager    mitch@keyconn.net
  2570. > Keystone Connect                 Unlock Your World
  2571. > Altoona, PA  814-941-5000        http://www.keyconn.net
  2572. >
  2573. >
  2574. > -
  2575. >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  2576. >  with "unsubscribe usr-tc" in the body of the message.
  2577. >  For information on digests or retrieving files and old messages send
  2578. >  "help" to the same address.  Do not use quotes in your message.
  2579. >
  2580.  
  2581.  
  2582. -
  2583.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  2584.  with "unsubscribe usr-tc" in the body of the message.
  2585.  For information on digests or retrieving files and old messages send
  2586.  "help" to the same address.  Do not use quotes in your message.
  2587.  
  2588.  
  2589. -------------------------------------------------------------------------------
  2590.  
  2591. From: Denis Newkirk <dnewkirk@early.com>
  2592. Subject: Used Chassis and DSPs - was (usr-tc) Chassis Price
  2593. Date: 14 Sep 2000 22:11:36 -0400
  2594.  
  2595. I have (and will have more) used chassis I'll guarantee for 30 days at 
  2596. $6,000 each.
  2597.  
  2598. The inventory can be seen at http://home.early.com/~dnewkirk/equip/
  2599.  
  2600. Feel free to make offers
  2601.  
  2602.  
  2603. At 01:12 PM 9/14/00 -0600, you wrote:
  2604. >Haven't bought a new chassis for months.  What are they going for new with 
  2605. >48 modems these days and who has the best price?
  2606. >
  2607. >
  2608. >
  2609. >Thanks, Greg Coffey                               <gcoffey@vcn.com>
  2610. >Visionary Communications  V 307-234-5443    F 307-234-5446
  2611. >100 N. Center Suite #100, Casper, WY  82601    www.vcn.com
  2612. >_________________________________________________________
  2613. >
  2614. >
  2615. >-
  2616. >To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  2617. >with "unsubscribe usr-tc" in the body of the message.
  2618. >For information on digests or retrieving files and old messages send
  2619. >"help" to the same address.  Do not use quotes in your message.
  2620.  
  2621.  
  2622. -
  2623.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  2624.  with "unsubscribe usr-tc" in the body of the message.
  2625.  For information on digests or retrieving files and old messages send
  2626.  "help" to the same address.  Do not use quotes in your message.
  2627.  
  2628.  
  2629. -------------------------------------------------------------------------------
  2630.  
  2631. From: "Kevin Godby" <kevin@pcsia.net>
  2632. Subject: (usr-tc) Logging modem disconnect reasons
  2633. Date: 14 Sep 2000 23:32:59 -0500
  2634.  
  2635. Hello.
  2636.  
  2637. I was wondering if anyone out there that's using 3Com/USR Total Control
  2638. boxes (with HiPerARCs) know of any utilities that could store the disconnect
  2639. reasons that the HiPerDSP generates (the actual modem disconnect reasons,
  2640. not the general  disconnect reasons that the HiPerARC uses) along with the
  2641. person's usename and the date/time.  They are wonderful for troubleshooting
  2642. because they are so specific, but it's time-consuming to watch someone's
  2643. session until they happen to get disconnected. :-)  If we could somehow get
  2644. the Total Control to send these to Vircom's VPRRS, that would be excellent,
  2645. but I'm not too picky.
  2646.  
  2647. Thanks for any ideas!
  2648.  
  2649. Kevin Godby  <kevin@pcsia.net>
  2650. Professional Computer Solutions, Inc.
  2651. 434 W. Second St.      Phone: (641) 682-4691
  2652. Ottumwa, Iowa  52501     Fax: (641) 682-0633
  2653.  
  2654.  
  2655. -
  2656.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  2657.  with "unsubscribe usr-tc" in the body of the message.
  2658.  For information on digests or retrieving files and old messages send
  2659.  "help" to the same address.  Do not use quotes in your message.
  2660.  
  2661.  
  2662. -------------------------------------------------------------------------------
  2663.  
  2664. From: Colin Wantling <Cwantling@energis.nl>
  2665. Subject: RE: (usr-tc) Logging modem disconnect reasons
  2666. Date: 15 Sep 2000 11:44:54 +0200
  2667.  
  2668. Kevin,
  2669.  
  2670. we do this by turning on the logging on the NMC (using TCM) and sending the accounting info to our radius server. Of course, the NMC will need to be entered in the Radius clients file.
  2671.  
  2672. Using TCM on each DSP, you can redirect the DSP traps so that the NMC can send them out to the Radius.
  2673.  
  2674. regards,
  2675.  
  2676. Colin Wantling
  2677.  
  2678.  
  2679.     ----------
  2680.     From:     Kevin Godby[SMTP:kevin@pcsia.net]
  2681.     Reply To:     usr-tc@lists.xmission.com
  2682.     Sent:     Friday, September 15, 2000 6:32 AM
  2683.     To:     usr-tc@lists.xmission.com
  2684.     Subject:     (usr-tc) Logging modem disconnect reasons
  2685.  
  2686.     Hello.
  2687.  
  2688.     I was wondering if anyone out there that's using 3Com/USR Total Control
  2689.     boxes (with HiPerARCs) know of any utilities that could store the disconnect
  2690.     reasons that the HiPerDSP generates (the actual modem disconnect reasons,
  2691.     not the general  disconnect reasons that the HiPerARC uses) along with the
  2692.     person's usename and the date/time.  They are wonderful for troubleshooting
  2693.     because they are so specific, but it's time-consuming to watch someone's
  2694.     session until they happen to get disconnected. :-)  If we could somehow get
  2695.     the Total Control to send these to Vircom's VPRRS, that would be excellent,
  2696.     but I'm not too picky.
  2697.  
  2698.     Thanks for any ideas!
  2699.  
  2700.     Kevin Godby  <kevin@pcsia.net>
  2701.     Professional Computer Solutions, Inc.
  2702.     434 W. Second St.      Phone: (641) 682-4691
  2703.     Ottumwa, Iowa  52501     Fax: (641) 682-0633
  2704.  
  2705.  
  2706.     -
  2707.      To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  2708.      with "unsubscribe usr-tc" in the body of the message.
  2709.      For information on digests or retrieving files and old messages send
  2710.      "help" to the same address.  Do not use quotes in your message.
  2711.  
  2712.  
  2713. -
  2714.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  2715.  with "unsubscribe usr-tc" in the body of the message.
  2716.  For information on digests or retrieving files and old messages send
  2717.  "help" to the same address.  Do not use quotes in your message.
  2718.  
  2719.  
  2720. -------------------------------------------------------------------------------
  2721.  
  2722. From: Jeff Mcadams <jeffm@iglou.com>
  2723. Subject: Re: (usr-tc) Logging modem disconnect reasons
  2724. Date: 15 Sep 2000 07:21:31 -0400
  2725.  
  2726. Also sprach Colin Wantling
  2727. >we do this by turning on the logging on the NMC (using TCM) and sending
  2728. >the accounting info to our radius server. Of course, the NMC will need
  2729. >to be entered in the Radius clients file.
  2730.  
  2731. Yes...this is probably the best way of doing this.  The tricky part is
  2732. correlating them with the userids as the NMC doesn't know the userids,
  2733. so you'll have to match these records up with the Arc RADIUS accounting
  2734. records to be able to correlate disconnect reasons with userids.  Not
  2735. impossible by any means, but it does add another little wrinkle.  :)
  2736. -- 
  2737. Jeff McAdams                            Email: jeffm@iglou.com
  2738. Head Network Administrator              Voice: (502) 966-3848
  2739. IgLou Internet Services                        (800) 436-4456
  2740.  
  2741. -
  2742.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  2743.  with "unsubscribe usr-tc" in the body of the message.
  2744.  For information on digests or retrieving files and old messages send
  2745.  "help" to the same address.  Do not use quotes in your message.
  2746.  
  2747.  
  2748. -------------------------------------------------------------------------------
  2749.  
  2750. From: "Steve Rivera -www.wrca.net" <sales@wrca.net>
  2751. Subject: Re: (usr-tc) Chassis Price
  2752. Date: 15 Sep 2000 10:23:10 -0400
  2753.  
  2754. Not to step in the middle but....
  2755.  
  2756. Today, I can do refurbished Hiper Bundles for $9000. Complete with all 
  2757. books, cd-roms and console cables.
  2758. But I up the stakes to Dual 70A power. If I remember correctly SOURCE TECH 
  2759. sells the start-ups with singles.
  2760.  
  2761. SourceTech #1 New Product - Check with Ryan Vallee 888-765-5758 x2272
  2762. WRCA #1 Refurbished Product...if I dont say so myself ;) Steve Rivera 
  2763. 732-833-2111
  2764.  
  2765.  
  2766.  
  2767. At 10:05 PM 09/14/2000 -0400, you wrote:
  2768. >2 weeks ago, the price from Source Technology was about $11,300 for the
  2769. >startup 48 port chassis bundle with ps and HARC. 3COM had a $500 rebate
  2770. >running in August, but that's over now.
  2771. >
  2772. >--
  2773. >Scot
  2774. >
  2775. >
  2776. >----- Original Message -----
  2777. >From: "K Mitchell" <mitch@keyconn.net>
  2778. >To: <usr-tc@lists.xmission.com>
  2779. >Sent: Thursday, September 14, 2000 4:17 PM
  2780. >Subject: Re: (usr-tc) Chassis Price
  2781. >
  2782. >
  2783. > > At 01:12 PM 9/14/00 -0600, Greg Coffey wrote:
  2784. > > >Haven't bought a new chassis for months.  What are they going for new
  2785. >with
  2786. > > >48 modems these days and who has the best price?
  2787. > >
  2788. > > Source Technology will probably be one of the better priced, if not the
  2789. >best.
  2790. > > http://www.source-t.com/
  2791. > > They are also good at supporting their customers. John DeDonato's my rep,
  2792. > > been good to deal with. I don't know what the current price is, probably
  2793. > > around $9k to $9500 for the 48-port startup bundle.
  2794. > >
  2795. > >
  2796. > > --
  2797. > > Kirk Mitchell-General Manager    mitch@keyconn.net
  2798. > > Keystone Connect                 Unlock Your World
  2799. > > Altoona, PA  814-941-5000        http://www.keyconn.net
  2800. > >
  2801. > >
  2802. > > -
  2803. > >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  2804. > >  with "unsubscribe usr-tc" in the body of the message.
  2805. > >  For information on digests or retrieving files and old messages send
  2806. > >  "help" to the same address.  Do not use quotes in your message.
  2807. > >
  2808. >
  2809. >
  2810. >-
  2811. >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  2812. >  with "unsubscribe usr-tc" in the body of the message.
  2813. >  For information on digests or retrieving files and old messages send
  2814. >  "help" to the same address.  Do not use quotes in your message.
  2815.  
  2816.  
  2817. -
  2818.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  2819.  with "unsubscribe usr-tc" in the body of the message.
  2820.  For information on digests or retrieving files and old messages send
  2821.  "help" to the same address.  Do not use quotes in your message.
  2822.  
  2823.  
  2824. -------------------------------------------------------------------------------
  2825.  
  2826. From: "Steve Rivera -www.wrca.net" <sales@wrca.net>
  2827. Subject: Re: Used Chassis and DSPs - was (usr-tc) Chassis Price
  2828. Date: 15 Sep 2000 10:27:06 -0400
  2829.  
  2830. Per your web site you selling what for $6000?
  2831.  
  2832.  
  2833. At 10:11 PM 09/14/2000 -0400, you wrote:
  2834. >I have (and will have more) used chassis I'll guarantee for 30 days at 
  2835. >$6,000 each.
  2836. >
  2837. >The inventory can be seen at http://home.early.com/~dnewkirk/equip/
  2838. >
  2839. >Feel free to make offers
  2840. >
  2841. >
  2842. >At 01:12 PM 9/14/00 -0600, you wrote:
  2843. >>Haven't bought a new chassis for months.  What are they going for new 
  2844. >>with 48 modems these days and who has the best price?
  2845. >>
  2846. >>
  2847. >>
  2848. >>Thanks, Greg Coffey                               <gcoffey@vcn.com>
  2849. >>Visionary Communications  V 307-234-5443    F 307-234-5446
  2850. >>100 N. Center Suite #100, Casper, WY  82601    www.vcn.com
  2851. >>_________________________________________________________
  2852. >>
  2853. >>
  2854. >>-
  2855. >>To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  2856. >>with "unsubscribe usr-tc" in the body of the message.
  2857. >>For information on digests or retrieving files and old messages send
  2858. >>"help" to the same address.  Do not use quotes in your message.
  2859. >
  2860. >
  2861. >-
  2862. >To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  2863. >with "unsubscribe usr-tc" in the body of the message.
  2864. >For information on digests or retrieving files and old messages send
  2865. >"help" to the same address.  Do not use quotes in your message.
  2866.  
  2867.  
  2868. -
  2869.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  2870.  with "unsubscribe usr-tc" in the body of the message.
  2871.  For information on digests or retrieving files and old messages send
  2872.  "help" to the same address.  Do not use quotes in your message.
  2873.  
  2874.  
  2875. -------------------------------------------------------------------------------
  2876.  
  2877. From: Charles Sprickman <spork@inch.com>
  2878. Subject: Re: (usr-tc) Logging modem disconnect reasons
  2879. Date: 15 Sep 2000 12:44:09 -0400 (EDT)
  2880.  
  2881. On Fri, 15 Sep 2000, Jeff Mcadams wrote:
  2882.  
  2883. > Also sprach Colin Wantling
  2884. > >we do this by turning on the logging on the NMC (using TCM) and sending
  2885. > >the accounting info to our radius server. Of course, the NMC will need
  2886. > >to be entered in the Radius clients file.
  2887. > Yes...this is probably the best way of doing this.  The tricky part is
  2888. > correlating them with the userids as the NMC doesn't know the userids,
  2889. > so you'll have to match these records up with the Arc RADIUS accounting
  2890. > records to be able to correlate disconnect reasons with userids.  Not
  2891. > impossible by any means, but it does add another little wrinkle.  :)
  2892.  
  2893. Hmmm...  I didn't even know you could do this.  What common information is
  2894. there between your normal ARC-supplied accounting record and the NMC
  2895. info?  Do you generally log to the same radius server or keep this
  2896. seperate and match things up on an as-needed basis?  Any idea what
  2897. Radiator would think of these 'extra' accounting records?
  2898.  
  2899. Thanks,
  2900.  
  2901. Charles
  2902.  
  2903. > -- 
  2904. > Jeff McAdams                            Email: jeffm@iglou.com
  2905. > Head Network Administrator              Voice: (502) 966-3848
  2906. > IgLou Internet Services                        (800) 436-4456
  2907. > -
  2908. >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  2909. >  with "unsubscribe usr-tc" in the body of the message.
  2910. >  For information on digests or retrieving files and old messages send
  2911. >  "help" to the same address.  Do not use quotes in your message.
  2912.  
  2913.  
  2914. -
  2915.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  2916.  with "unsubscribe usr-tc" in the body of the message.
  2917.  For information on digests or retrieving files and old messages send
  2918.  "help" to the same address.  Do not use quotes in your message.
  2919.  
  2920.  
  2921. -------------------------------------------------------------------------------
  2922.  
  2923. From: "Kevin Hemsley" <kev@ida.net>
  2924. Subject: (usr-tc) Identifying Modem Problems
  2925. Date: 15 Sep 2000 11:11:11 -0600
  2926.  
  2927. We currently use a variety of methods to monitor service quality, including
  2928. SNMP polls and analysis of call statistics, MRTG graphing, etc.  In addition
  2929. to these, I  would like to find a tool to repetitively dial POPs to test for
  2930. various things: Ring-No-Answers, TCP/IP connectivity, Busy signals, etc.
  2931. Although rare, we have had cases where customers have found significant
  2932. problems that we had not yet identified.  Problems that I feel we should
  2933. have been able to identify faster than we did.  I was about to embark on a
  2934. Visual C++ project to build a tool to test POPs and alert us of anomalies.
  2935. Before I do, I wondered if anyone has seen software that already performs
  2936. these types of tasks?
  2937.  
  2938. Ultimately, it would be nice to have users with a dialer that automatically
  2939. reported dial-in statistics back to a server each time it successfully
  2940. connected.  This would provide real-time statistics from potentially
  2941. thousands of  "sensors".  The problem is that I haven't found a product that
  2942. has a price tag that we would even consider.  Is anyone using anything like
  2943. this?
  2944.  
  2945. Kevin Hemsley
  2946. Systems Engineer
  2947. Microserv Computer Technologies, Inc.
  2948. kev@ida.net
  2949. KB7TYA
  2950.  
  2951.  
  2952. -
  2953.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  2954.  with "unsubscribe usr-tc" in the body of the message.
  2955.  For information on digests or retrieving files and old messages send
  2956.  "help" to the same address.  Do not use quotes in your message.
  2957.  
  2958.  
  2959. -------------------------------------------------------------------------------
  2960.  
  2961. From: "Kevin Godby" <kevin@pcsia.net>
  2962. Subject: RE: (usr-tc) Logging modem disconnect reasons
  2963. Date: 15 Sep 2000 13:57:57 -0500
  2964.  
  2965. Hello, Colin.
  2966.  
  2967. I'll have to look into that, but it sounds like that is my solution.  What
  2968. RADIUS attributes does the NMC use?  (Do I need to add those to the
  2969. dictionary file?)  Also, is there any correlating information between the
  2970. NMC accounting logs and the ARC accounting logs?  (I'm presuming that
  2971. Port-ID would be in both, at least.)
  2972.  
  2973. Thanks!
  2974.  
  2975. Kevin Godby  <kevin@pcsia.net>
  2976. Professional Computer Solutions, Inc.
  2977. 434 W. Second St.      Phone: (641) 682-4691
  2978. Ottumwa, Iowa  52501     Fax: (641) 682-0633
  2979.  
  2980.  
  2981. > -----Original Message-----
  2982. > From: owner-usr-tc@lists.xmission.com
  2983. > [mailto:owner-usr-tc@lists.xmission.com]On Behalf Of Colin Wantling
  2984. > Sent: Friday, September 15, 2000 4:45 AM
  2985. > To: 'usr-tc@lists.xmission.com'
  2986. > Subject: RE: (usr-tc) Logging modem disconnect reasons
  2987. >
  2988. >
  2989. > Kevin,
  2990. >
  2991. > we do this by turning on the logging on the NMC (using TCM) and
  2992. > sending the accounting info to our radius server. Of course, the
  2993. > NMC will need to be entered in the Radius clients file.
  2994. >
  2995. > Using TCM on each DSP, you can redirect the DSP traps so that the
  2996. > NMC can send them out to the Radius.
  2997. >
  2998. > regards,
  2999. >
  3000. > Colin Wantling
  3001. >
  3002. >
  3003. >     ----------
  3004. >     From:     Kevin Godby[SMTP:kevin@pcsia.net]
  3005. >     Reply To:     usr-tc@lists.xmission.com
  3006. >     Sent:     Friday, September 15, 2000 6:32 AM
  3007. >     To:     usr-tc@lists.xmission.com
  3008. >     Subject:     (usr-tc) Logging modem disconnect reasons
  3009. >
  3010. >     Hello.
  3011. >
  3012. >     I was wondering if anyone out there that's using 3Com/USR
  3013. > Total Control
  3014. >     boxes (with HiPerARCs) know of any utilities that could
  3015. > store the disconnect
  3016. >     reasons that the HiPerDSP generates (the actual modem
  3017. > disconnect reasons,
  3018. >     not the general  disconnect reasons that the HiPerARC uses)
  3019. > along with the
  3020. >     person's usename and the date/time.  They are wonderful for
  3021. > troubleshooting
  3022. >     because they are so specific, but it's time-consuming to
  3023. > watch someone's
  3024. >     session until they happen to get disconnected. :-)  If we
  3025. > could somehow get
  3026. >     the Total Control to send these to Vircom's VPRRS, that
  3027. > would be excellent,
  3028. >     but I'm not too picky.
  3029. >
  3030. >     Thanks for any ideas!
  3031. >
  3032. >     Kevin Godby  <kevin@pcsia.net>
  3033. >     Professional Computer Solutions, Inc.
  3034. >     434 W. Second St.      Phone: (641) 682-4691
  3035. >     Ottumwa, Iowa  52501     Fax: (641) 682-0633
  3036. >
  3037. >
  3038. >     -
  3039. >      To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  3040. >      with "unsubscribe usr-tc" in the body of the message.
  3041. >      For information on digests or retrieving files and old
  3042. > messages send
  3043. >      "help" to the same address.  Do not use quotes in your message.
  3044. >
  3045. >
  3046. > -
  3047. >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  3048. >  with "unsubscribe usr-tc" in the body of the message.
  3049. >  For information on digests or retrieving files and old messages send
  3050. >  "help" to the same address.  Do not use quotes in your message.
  3051. >
  3052.  
  3053.  
  3054. -
  3055.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  3056.  with "unsubscribe usr-tc" in the body of the message.
  3057.  For information on digests or retrieving files and old messages send
  3058.  "help" to the same address.  Do not use quotes in your message.
  3059.  
  3060.  
  3061. -------------------------------------------------------------------------------
  3062.  
  3063. From: Jeff Mcadams <jeffm@iglou.com>
  3064. Subject: Re: (usr-tc) Logging modem disconnect reasons
  3065. Date: 15 Sep 2000 18:45:19 -0400
  3066.  
  3067. Also sprach Charles Sprickman
  3068. >On Fri, 15 Sep 2000, Jeff Mcadams wrote:
  3069. >> Yes...this is probably the best way of doing this.  The tricky part
  3070. >> is correlating them with the userids as the NMC doesn't know the
  3071. >> userids, so you'll have to match these records up with the Arc RADIUS
  3072. >> accounting records to be able to correlate disconnect reasons with
  3073. >> userids.  Not impossible by any means, but it does add another little
  3074. >> wrinkle.  :)
  3075.  
  3076. >Hmmm...  I didn't even know you could do this.  What common information
  3077. >is there between your normal ARC-supplied accounting record and the NMC
  3078. >info?  
  3079.  
  3080. Well...I'm pretty sure that slot and channel are available in both, so
  3081. that can be used to match them up.  It would really be nice if there
  3082. some sort of call reference number to match between DSPs and Arcs, while
  3083. the DSPs do have a call reference number, I don't believe the Arcs know
  3084. what it is.  Would be nice though.  :)
  3085.  
  3086. >Do you generally log to the same radius server or keep this seperate
  3087. >and match things up on an as-needed basis?  
  3088.  
  3089. We've only played with this and never set it up to make full use of it.
  3090. I just wish I could trade some of these square tuits for some round
  3091. ones.  :/
  3092.  
  3093. >Any idea what Radiator would think of these 'extra' accounting records?
  3094.  
  3095. I would hope it wouldn't have any problem with them.  RADIUS is designed
  3096. to be a stateless protocol, so it *shouldn't* have any problems with
  3097. them.  It should just be new records that come into the RADIUS server
  3098. and get logged or processed like any other.
  3099. -- 
  3100. Jeff McAdams                            Email: jeffm@iglou.com
  3101. Head Network Administrator              Voice: (502) 966-3848
  3102. IgLou Internet Services                        (800) 436-4456
  3103.  
  3104. -
  3105.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  3106.  with "unsubscribe usr-tc" in the body of the message.
  3107.  For information on digests or retrieving files and old messages send
  3108.  "help" to the same address.  Do not use quotes in your message.
  3109.  
  3110.  
  3111. -------------------------------------------------------------------------------
  3112.  
  3113. From: Mike Andrews <mandrews@bit0.com>
  3114. Subject: Re: (usr-tc) Logging modem disconnect reasons
  3115. Date: 17 Sep 2000 02:56:52 -0400 (EDT)
  3116.  
  3117. These days I think the call reference numbers *do* match up between the
  3118. ARC and NMC.  There used to be some incompatibilities between the two (one
  3119. would log in hex and one in decimal, or one would log big-endian and one
  3120. little-endian, that kinda thing)...  but I think that's all in the past.
  3121.  
  3122. I have a Perl script that tails the Radius accounting logs, matches the
  3123. ARC and NMC records up, and writes it to a MySQL table.  From there it's
  3124. easy to write a web page that users (or admins for that matter) can go to
  3125. to view their most recent sessions and see exactly why it was they were
  3126. disconnected, with both the ARC and modem reasons given (unless one gets
  3127. lost, or gets logged to the other accounting server, or whatever -- this
  3128. is UDP after all).  You can throw other stuff in there too, like connect
  3129. speed.
  3130.  
  3131. I can't remember what fields I used to try to match them up; I think just
  3132. hostname (you need a list of what arcs match which nmc's) and session-id
  3133. is enough...
  3134. Lemme go look at the code a sec.
  3135. Hm.  Weird.  I matched up session-id, slot, channel, ANI, and
  3136. DNIS.  That's probably overkill...  :)
  3137.  
  3138. This script isn't currently up on the web with the rest of my scripts, but
  3139. I could put it there or mail it if anyone cared -- I'll have to clean it
  3140. up a bit (read: remove SQL passwords) first.  It's as sloppy as the rest
  3141. of my code but it's a starting point and saves reinventing at least some
  3142. of the wheel.
  3143.  
  3144.  
  3145. Mike Andrews (MA12) * mandrews@dcr.net * http://www.bit0.com/
  3146. VP, sysadmin, & network guy, Digital Crescent Inc, Frankfort KY
  3147. Dialup/ADSL/ISDN/T1 Internet access for Frankfort KY and surrounding counties
  3148. www.fark.com: If it's not news, it's Fark.  (Or something like that.)
  3149.  
  3150. On Fri, 15 Sep 2000, Jeff Mcadams wrote:
  3151.  
  3152. > Also sprach Charles Sprickman
  3153. > >On Fri, 15 Sep 2000, Jeff Mcadams wrote:
  3154. > >> Yes...this is probably the best way of doing this.  The tricky part
  3155. > >> is correlating them with the userids as the NMC doesn't know the
  3156. > >> userids, so you'll have to match these records up with the Arc RADIUS
  3157. > >> accounting records to be able to correlate disconnect reasons with
  3158. > >> userids.  Not impossible by any means, but it does add another little
  3159. > >> wrinkle.  :)
  3160. > >Hmmm...  I didn't even know you could do this.  What common information
  3161. > >is there between your normal ARC-supplied accounting record and the NMC
  3162. > >info?  
  3163. > Well...I'm pretty sure that slot and channel are available in both, so
  3164. > that can be used to match them up.  It would really be nice if there
  3165. > some sort of call reference number to match between DSPs and Arcs, while
  3166. > the DSPs do have a call reference number, I don't believe the Arcs know
  3167. > what it is.  Would be nice though.  :)
  3168. > >Do you generally log to the same radius server or keep this seperate
  3169. > >and match things up on an as-needed basis?  
  3170. > We've only played with this and never set it up to make full use of it.
  3171. > I just wish I could trade some of these square tuits for some round
  3172. > ones.  :/
  3173. > >Any idea what Radiator would think of these 'extra' accounting records?
  3174. > I would hope it wouldn't have any problem with them.  RADIUS is designed
  3175. > to be a stateless protocol, so it *shouldn't* have any problems with
  3176. > them.  It should just be new records that come into the RADIUS server
  3177. > and get logged or processed like any other.
  3178. > -- 
  3179. > Jeff McAdams                            Email: jeffm@iglou.com
  3180. > Head Network Administrator              Voice: (502) 966-3848
  3181. > IgLou Internet Services                        (800) 436-4456
  3182. > -
  3183. >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  3184. >  with "unsubscribe usr-tc" in the body of the message.
  3185. >  For information on digests or retrieving files and old messages send
  3186. >  "help" to the same address.  Do not use quotes in your message.
  3187.  
  3188.  
  3189.  
  3190. -
  3191.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  3192.  with "unsubscribe usr-tc" in the body of the message.
  3193.  For information on digests or retrieving files and old messages send
  3194.  "help" to the same address.  Do not use quotes in your message.
  3195.  
  3196.  
  3197. -------------------------------------------------------------------------------
  3198.  
  3199. From: Mike Andrews <mandrews@bit0.com>
  3200. Subject: Re: (usr-tc) Identifying Modem Problems
  3201. Date: 17 Sep 2000 03:23:01 -0400 (EDT)
  3202.  
  3203. Are you listening to SNMP traps?  Most of the problem detection you're
  3204. looking for can be done with that... fast-busies and ring-no-answers
  3205. usually show up as an SNMP trap also.  If for example you're running the
  3206. old DSP code with the infamous modems-failing-in-pairs problem, when a
  3207. customer hits a bad modem, the DSP will send a trap.  (I think -- it's
  3208. been a while.)  Ring-no-answer definitely sends a trap, something like
  3209. "inbound call failure" or "watchdog timeout" or some kinda packet bus
  3210. failure.  You can get traps when T1's go down or just get noisy
  3211. too... just gotta turn 'em on.
  3212.  
  3213. Of course the real challenge is finding SNMP trap listening software that
  3214. doesn't suck and that doesn't cost a fortune, which at least for Win32 I
  3215. have yet to find...
  3216.  
  3217. Regular busies should only happen if you're full, and MRTG oughta be able
  3218. to give you at least a rough count of used modems...  for testing IP
  3219. connectivity, there's always ping :)
  3220.  
  3221. Calling out to all your dialups should be easy enough, except that your
  3222. client modem isn't likely to be able to tell the difference between a fast
  3223. busy and a regular busy, so you don't know if you're full or if you've got
  3224. a dud DSP or PRI without checking a second source of info.  It's an
  3225. interesting idea though.
  3226.  
  3227. The only problem with doing that kinda thing at the client end is that
  3228. there's not a lot it can tell you when you're connected.  You could maybe
  3229. ping the other end and maybe get the (inaccurate as hell) initial connect
  3230. speed from Windows, but that's about it.  I'm not a Win32 programmer (I'm
  3231. a Perl+Unix guy) so I'm not even sure how you'd get that much.  There's
  3232. stats you can get from the modem after you hang up, but to get that your
  3233. program would have to know about every common chipset out there (USR,
  3234. Conexant, Lucent, Motorola, PCTel, Ambient, Multitech...) and the AT
  3235. commands to pull the stats up.
  3236.  
  3237.  
  3238. Mike Andrews (MA12) * mandrews@dcr.net * http://www.bit0.com/
  3239. VP, sysadmin, & network guy, Digital Crescent Inc, Frankfort KY
  3240. Dialup/ADSL/ISDN/T1 Internet access for Frankfort KY and surrounding counties
  3241. www.fark.com: If it's not news, it's Fark.  (Or something like that.)
  3242.  
  3243. On Fri, 15 Sep 2000, Kevin Hemsley wrote:
  3244.  
  3245. > We currently use a variety of methods to monitor service quality, including
  3246. > SNMP polls and analysis of call statistics, MRTG graphing, etc.  In addition
  3247. > to these, I  would like to find a tool to repetitively dial POPs to test for
  3248. > various things: Ring-No-Answers, TCP/IP connectivity, Busy signals, etc.
  3249. > Although rare, we have had cases where customers have found significant
  3250. > problems that we had not yet identified.  Problems that I feel we should
  3251. > have been able to identify faster than we did.  I was about to embark on a
  3252. > Visual C++ project to build a tool to test POPs and alert us of anomalies.
  3253. > Before I do, I wondered if anyone has seen software that already performs
  3254. > these types of tasks?
  3255. > Ultimately, it would be nice to have users with a dialer that automatically
  3256. > reported dial-in statistics back to a server each time it successfully
  3257. > connected.  This would provide real-time statistics from potentially
  3258. > thousands of  "sensors".  The problem is that I haven't found a product that
  3259. > has a price tag that we would even consider.  Is anyone using anything like
  3260. > this?
  3261. > ----------------------------------
  3262. > Kevin Hemsley
  3263. > Systems Engineer
  3264. > Microserv Computer Technologies, Inc.
  3265. > kev@ida.net
  3266. > KB7TYA
  3267. > -
  3268. >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  3269. >  with "unsubscribe usr-tc" in the body of the message.
  3270. >  For information on digests or retrieving files and old messages send
  3271. >  "help" to the same address.  Do not use quotes in your message.
  3272.  
  3273.  
  3274. -
  3275.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  3276.  with "unsubscribe usr-tc" in the body of the message.
  3277.  For information on digests or retrieving files and old messages send
  3278.  "help" to the same address.  Do not use quotes in your message.
  3279.  
  3280.  
  3281. -------------------------------------------------------------------------------
  3282.  
  3283. From: "Kalev Nurklik" <kalev@mail.lbi.ee>
  3284. Subject: Re: (usr-tc) Comments on latest codes
  3285. Date: 18 Sep 2000 17:02:14 +0200
  3286.  
  3287. The HARCs still reboot here spontaneously even with minimal telnet
  3288. access and 'telnet client list' set to disabled. They do it less
  3289. often but still do it.
  3290.  
  3291. BTW, does the statement 'Any Hiper ARC software prior to
  3292. 4.1.13 and 4.2.73 is not backward compatible. The downgrade procedure
  3293. will cause a complete loss of configuration on the cards and require
  3294. the use of the "DELETE CONFIGURATION" command when going to any
  3295. older code.' in HARC 5.0 release notes PDF file hold water?
  3296. Do I really have to configure the cards from scratch if I don't
  3297. have prior version bulk configuration handy?
  3298.  
  3299. Only thing I have is HARCs crashdump but I don't know if anybody
  3300. on this list can help me with that.
  3301. Here it is -
  3302.  
  3303. <start>
  3304. EXCEPTION 0200 CRASH DUMP  (mm-dd-yy : 09-16-2000  hr-min-sec : 10-50-17)
  3305.  
  3306. AppVer: 5.0.9-1  KernVer: 0x0000002d
  3307.  
  3308. GPRs:
  3309. R0:  0x0079006C  R1:  0x07F55B78  R2:  0x000EED24  R3:  0x0A93FA04  
  3310. R4:  0x01FCFFAB  R5:  0x01FCFFAB  R6:  0x00000001  R7:  0x00000000  
  3311. R8:  0x00000050  R9:  0x00000024  R10: 0x00000000  R11: 0x00FEE460  
  3312. R12: 0x4C69734D  R13: 0x000F8D58  R14: 0x009275F4  R15: 0x009275D8  
  3313. R16: 0x009275E0  R17: 0x009275CC  R18: 0x009275D4  R19: 0x009275E4  
  3314. R20: 0xFFFFFEFF  R21: 0x00AB8E30  R22: 0x002DFBA8  R23: 0x00AAF020  
  3315. R24: 0x0237BE60  R25: 0x01FCFFAB  R26: 0x00000024  R27: 0x00000004  
  3316. R28: 0x00790B1C  R29: 0x00FC2C78  R30: 0x07F55C70  R31: 0x0A93F9E0  
  3317.  
  3318. CR:    0x40000404  XER:   0x00000018  LR:    0x00790B34  CTR:   0x0079CAF4
  3319. SRR0:  0x0007BF64  SRR1:  0x00089030  DSISR: 0x40000000  DAR:   0x5C88495F
  3320.  
  3321. 82660 Registers:
  3322. Err Status 1: 0x20, Err Status 2: 0x00, CPU Err: 0x72, PCI Err: 0x06
  3323. CPU/PCI Addr: 0x0A93FA00,  Sys Error Addr: 0x0A93FA00
  3324.  
  3325.  
  3326. Call Stack:
  3327.     0x0007BF64    (Exception return address - SRR0)
  3328.     0x00790B34
  3329.     0x0079006C
  3330.     0x007901D0
  3331.     0x0079CB58
  3332.     0x0079CE10
  3333.     0x00460D14
  3334.     0x0045FE68
  3335.     0x0045AC08
  3336.     0x0045649C
  3337.     0x00458880
  3338.     0x00459124
  3339.     0x004592AC
  3340.     0x00457830
  3341.     0x005AEA7C
  3342.     0x005B0264
  3343.     0x005BABDC
  3344.     0x0061C18C
  3345.     0x00619668
  3346.     0x005F84C4
  3347.     0x005F56B8
  3348.     0x002DFBFC
  3349. <end>
  3350.  
  3351. BTW, Michelle, have You had any better luck explaining this behaviour?
  3352.  
  3353. Regards,
  3354.  
  3355. Organization:       Delfi Online
  3356. Date sent:          Wed, 23 Aug 2000 17:11:45 +0200
  3357. Send reply to:      usr-tc@lists.xmission.com
  3358.  
  3359. > > I found the same thing on my ARC. Can you tell me in detail how you
  3360. > > turned this pmcom access off and how you deleted the host fields?
  3361. > > Thank you!
  3362. > Sorry. I kind of used a wrong name... 'pmwho' maybe rings the bell?
  3363. > Or in other words what I meant with pmcom style access is
  3364. > - any access that uses telnet to ARC for getting info with
  3365. > ARCs CLI commands and outputing the result for instance to a shell user.
  3366. > If I remember it correctly then there was a DOS attack possibility with
  3367. > telnet access to ARCs couple of ARC software releases ago.
  3368. > I myself and probably everybody else turned on at that time the telnet client
  3369. > access feature on ARCs with 'enable telnet client_access' command.
  3370. > Before that of course I defined telnet client list who were to be allowed
  3371. > access to ARC. I did it with 'add telnet client x.x.x.x/y' command.
  3372. > Some of them were with /32 bitmask.
  3373. > So You have couple of possibilities to try if the client list is to be blamed
  3374. > for ARC spontaneous reboots.
  3375. > 1. Just turn off the access checking with 'disable telnet client_access'
  3376. > or
  3377. > 2. delete the host entries with 'delete telnet client x.x.x.x' and replace
  3378. > them with 'add telnet client x.x.x.x/y' where y is less than 32.
  3379. > I myself used the second option but in addition denied the usage of 'pmwho'
  3380. > to our support people. For now.
  3381. > I'll allow it eventually to see if pmwho is the guilty one...
  3382. > Regards,
  3383. > __________________________________
  3384. > Kalev Nurklik
  3385. > Delfi Online
  3386. > Pa"rnu mnt. 158, 11317 Tallinn, Estonia
  3387. > Tel: +372 6501709
  3388. > Fax: +372 6501708
  3389. > E-mail: k.nurklik@delfi.ee
  3390. > http://online.delfi.ee
  3391. > -
  3392. >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  3393. >  with "unsubscribe usr-tc" in the body of the message.
  3394. >  For information on digests or retrieving files and old messages send
  3395. >  "help" to the same address.  Do not use quotes in your message.
  3396.  
  3397.  
  3398. __________________________________
  3399. Kalev Nurklik
  3400. Delfi Online
  3401. Pa"rnu mnt. 158, 11317 Tallinn, Estonia
  3402. Tel: +372 6501709
  3403. Fax: +372 6501708
  3404. E-mail: k.nurklik@delfi.ee
  3405. http://online.delfi.ee
  3406.  
  3407. -
  3408.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  3409.  with "unsubscribe usr-tc" in the body of the message.
  3410.  For information on digests or retrieving files and old messages send
  3411.  "help" to the same address.  Do not use quotes in your message.
  3412.  
  3413.  
  3414. -------------------------------------------------------------------------------
  3415.  
  3416. From: mmm3@cornell.edu
  3417. Subject: Re: (usr-tc) Comments on latest codes
  3418. Date: 18 Sep 2000 11:46:48 -0400
  3419.  
  3420. >The HARCs still reboot here spontaneously even with minimal telnet
  3421. >access and 'telnet client list' set to disabled. They do it less
  3422. >often but still do it.
  3423. >
  3424.  
  3425. Ugh...I've been struggling with the ARC on our testpool for months 
  3426. now. We were having problems with it choking up; I observed that the 
  3427. DSP would suddenly have all 23 channels 'local-out-of-service' and 
  3428. the only way to get it to take calls again was to 1] 'Restore' the 
  3429. channels, and 2] do a software reset on the ARC (why???). I upgraded 
  3430. it (the ARC) to 5.0.9 and began having major trouble with
  3431. it rebooting itself almost daily. A 3Com technician managed to 
  3432. finally install 5.0.88 (engineering release) on it after a struggle 
  3433. and now it's back to its old trick of choking up and requiring a 
  3434. software reset. I'm very tempted to back off to the previous 
  3435. version--4.1.59--which has been running on the production pool with 
  3436. no problems.
  3437.  
  3438. *********************************************************
  3439. Michelle M. Mogil
  3440. Network and Computing Systems
  3441. 735 Rhodes Hall, Cornell University, Ithaca, NY 14853
  3442. vox: (607) 255-0516, fax: (607) 255-8521
  3443. email: mmm3@cornell.edu
  3444. **********************************************
  3445.  
  3446. -
  3447.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  3448.  with "unsubscribe usr-tc" in the body of the message.
  3449.  For information on digests or retrieving files and old messages send
  3450.  "help" to the same address.  Do not use quotes in your message.
  3451.  
  3452.  
  3453. -------------------------------------------------------------------------------
  3454.  
  3455. From: <blacksea@pumba.cheep.net.ua>
  3456. Subject: Re: (usr-tc) Comments on latest codes
  3457. Date: 18 Sep 2000 18:46:17 +0300 (EEST)
  3458.  
  3459. Quoting Kalev Nurklik <kalev@mail.lbi.ee>:
  3460. Hi 
  3461. I was wondering if you can help be I'm loking for the flash codes to change my 
  3462. TC to E1 is flashed for T1 access at the moment! NMC and Netserver cards!!
  3463.  
  3464. Craig
  3465. > The HARCs still reboot here spontaneously even with minimal telnet
  3466. > access and 'telnet client list' set to disabled. They do it less
  3467. > often but still do it.
  3468. > BTW, does the statement 'Any Hiper ARC software prior to
  3469. > 4.1.13 and 4.2.73 is not backward compatible. The downgrade procedure
  3470. > will cause a complete loss of configuration on the cards and require
  3471. > the use of the "DELETE CONFIGURATION" command when going to any
  3472. > older code.' in HARC 5.0 release notes PDF file hold water?
  3473. > Do I really have to configure the cards from scratch if I don't
  3474. > have prior version bulk configuration handy?
  3475. > Only thing I have is HARCs crashdump but I don't know if anybody
  3476. > on this list can help me with that.
  3477. > Here it is -
  3478. > <start>
  3479. > EXCEPTION 0200 CRASH DUMP  (mm-dd-yy : 09-16-2000  hr-min-sec :
  3480. > 10-50-17)
  3481. >  
  3482. > AppVer: 5.0.9-1  KernVer: 0x0000002d
  3483. >  
  3484. > GPRs:
  3485. > R0:  0x0079006C  R1:  0x07F55B78  R2:  0x000EED24  R3:  0x0A93FA04  
  3486. > R4:  0x01FCFFAB  R5:  0x01FCFFAB  R6:  0x00000001  R7:  0x00000000  
  3487. > R8:  0x00000050  R9:  0x00000024  R10: 0x00000000  R11: 0x00FEE460  
  3488. > R12: 0x4C69734D  R13: 0x000F8D58  R14: 0x009275F4  R15: 0x009275D8  
  3489. > R16: 0x009275E0  R17: 0x009275CC  R18: 0x009275D4  R19: 0x009275E4  
  3490. > R20: 0xFFFFFEFF  R21: 0x00AB8E30  R22: 0x002DFBA8  R23: 0x00AAF020  
  3491. > R24: 0x0237BE60  R25: 0x01FCFFAB  R26: 0x00000024  R27: 0x00000004  
  3492. > R28: 0x00790B1C  R29: 0x00FC2C78  R30: 0x07F55C70  R31: 0x0A93F9E0  
  3493. >  
  3494. > CR:    0x40000404  XER:   0x00000018  LR:    0x00790B34  CTR:  
  3495. > 0x0079CAF4
  3496. > SRR0:  0x0007BF64  SRR1:  0x00089030  DSISR: 0x40000000  DAR:  
  3497. > 0x5C88495F
  3498. >  
  3499. > 82660 Registers:
  3500. > Err Status 1: 0x20, Err Status 2: 0x00, CPU Err: 0x72, PCI Err: 0x06
  3501. > CPU/PCI Addr: 0x0A93FA00,  Sys Error Addr: 0x0A93FA00
  3502. >  
  3503. >  
  3504. > Call Stack:
  3505. >     0x0007BF64    (Exception return address - SRR0)
  3506. >     0x00790B34
  3507. >     0x0079006C
  3508. >     0x007901D0
  3509. >     0x0079CB58
  3510. >     0x0079CE10
  3511. >     0x00460D14
  3512. >     0x0045FE68
  3513. >     0x0045AC08
  3514. >     0x0045649C
  3515. >     0x00458880
  3516. >     0x00459124
  3517. >     0x004592AC
  3518. >     0x00457830
  3519. >     0x005AEA7C
  3520. >     0x005B0264
  3521. >     0x005BABDC
  3522. >     0x0061C18C
  3523. >     0x00619668
  3524. >     0x005F84C4
  3525. >     0x005F56B8
  3526. >     0x002DFBFC
  3527. > <end>
  3528. > BTW, Michelle, have You had any better luck explaining this behaviour?
  3529. > Regards,
  3530. > From:               "Kalev Nurklik" <kalev@mail.lbi.ee>
  3531. > Organization:       Delfi Online
  3532. > To:                 usr-tc@lists.xmission.com
  3533. > Date sent:          Wed, 23 Aug 2000 17:11:45 +0200
  3534. > Subject:            Re: (usr-tc) Comments on latest codes
  3535. > Send reply to:      usr-tc@lists.xmission.com
  3536. > > > I found the same thing on my ARC. Can you tell me in detail how you
  3537. > > > turned this pmcom access off and how you deleted the host fields?
  3538. > > > Thank you!
  3539. > > 
  3540. > > Sorry. I kind of used a wrong name... 'pmwho' maybe rings the bell?
  3541. > > Or in other words what I meant with pmcom style access is
  3542. > > - any access that uses telnet to ARC for getting info with
  3543. > > ARCs CLI commands and outputing the result for instance to a shell
  3544. > user.
  3545. > > 
  3546. > > If I remember it correctly then there was a DOS attack possibility
  3547. > with
  3548. > > telnet access to ARCs couple of ARC software releases ago.
  3549. > > 
  3550. > > I myself and probably everybody else turned on at that time the telnet
  3551. > client
  3552. > > access feature on ARCs with 'enable telnet client_access' command.
  3553. > > Before that of course I defined telnet client list who were to be
  3554. > allowed
  3555. > > access to ARC. I did it with 'add telnet client x.x.x.x/y' command.
  3556. > > Some of them were with /32 bitmask.
  3557. > > 
  3558. > > So You have couple of possibilities to try if the client list is to be
  3559. > blamed
  3560. > > for ARC spontaneous reboots.
  3561. > > 1. Just turn off the access checking with 'disable telnet
  3562. > client_access'
  3563. > > or
  3564. > > 2. delete the host entries with 'delete telnet client x.x.x.x' and
  3565. > replace
  3566. > > them with 'add telnet client x.x.x.x/y' where y is less than 32.
  3567. > > 
  3568. > > I myself used the second option but in addition denied the usage of
  3569. > 'pmwho'
  3570. > > to our support people. For now.
  3571. > > I'll allow it eventually to see if pmwho is the guilty one...
  3572. > > 
  3573. > > Regards,
  3574. > > __________________________________
  3575. > > Kalev Nurklik
  3576. > > Delfi Online
  3577. > > Pa"rnu mnt. 158, 11317 Tallinn, Estonia
  3578. > > Tel: +372 6501709
  3579. > > Fax: +372 6501708
  3580. > > E-mail: k.nurklik@delfi.ee
  3581. > > http://online.delfi.ee
  3582. > > 
  3583. > > -
  3584. > >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  3585. > >  with "unsubscribe usr-tc" in the body of the message.
  3586. > >  For information on digests or retrieving files and old messages send
  3587. > >  "help" to the same address.  Do not use quotes in your message.
  3588. > __________________________________
  3589. > Kalev Nurklik
  3590. > Delfi Online
  3591. > Pa"rnu mnt. 158, 11317 Tallinn, Estonia
  3592. > Tel: +372 6501709
  3593. > Fax: +372 6501708
  3594. > E-mail: k.nurklik@delfi.ee
  3595. > http://online.delfi.ee
  3596. > -
  3597. >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  3598. >  with "unsubscribe usr-tc" in the body of the message.
  3599. >  For information on digests or retrieving files and old messages send
  3600. >  "help" to the same address.  Do not use quotes in your message.
  3601.  
  3602. -
  3603.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  3604.  with "unsubscribe usr-tc" in the body of the message.
  3605.  For information on digests or retrieving files and old messages send
  3606.  "help" to the same address.  Do not use quotes in your message.
  3607.  
  3608.  
  3609. -------------------------------------------------------------------------------
  3610.  
  3611. From: Jeff Mcadams <jeffm@iglou.com>
  3612. Subject: (usr-tc) *sigh* is anybody out there?
  3613. Date: 18 Sep 2000 21:06:07 -0400
  3614.  
  3615. My father was (just retired in June) a U.S. History teacher at the high
  3616. school level, and loved to use the movie 1776 in his classes as much as
  3617. he could...in that movie, there's a song called "Is Anybody There?"
  3618. where John Adams reads a communique from the Commander of the Continental
  3619. Army, "the honourable, G. Washington," where Washington laments the lack
  3620. of response to his last 15 communique's.  Adams sings the contents of
  3621. the letter as the song.  Some of the lyrics from the song are (this is
  3622. from memory):
  3623.  
  3624. "Is Anybody there?\
  3625. Does anybody care?\
  3626. Does anybody see, what I see?"
  3627.  
  3628. team:/home/jeffm> telnet totalservice.3com.com 119
  3629. Trying 207.24.160.21...
  3630. telnet: Unable to connect to remote host: Connection refused
  3631. team:/home/jeffm>
  3632.  
  3633. Is Anybody there?  Does anybody care?  Does anybody see, what I see?
  3634. -- 
  3635. Jeff McAdams                            Email: jeffm@iglou.com
  3636. Head Network Administrator              Voice: (502) 966-3848
  3637. IgLou Internet Services                        (800) 436-4456
  3638.  
  3639. -
  3640.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  3641.  with "unsubscribe usr-tc" in the body of the message.
  3642.  For information on digests or retrieving files and old messages send
  3643.  "help" to the same address.  Do not use quotes in your message.
  3644.  
  3645.  
  3646. -------------------------------------------------------------------------------
  3647.  
  3648. From: Dave Lajoie <dave@ncia.net>
  3649. Subject: Re: (usr-tc) *sigh* is anybody out there?
  3650. Date: 18 Sep 2000 22:53:25 -0400 (EDT)
  3651.  
  3652. Hi Jeff,
  3653.  
  3654.     Trying 
  3655.         telnet totalservice.3com.com 119 
  3656.  
  3657.     Didn't work, but
  3658.  
  3659.         telnet totalservice.3com.com;119
  3660.  
  3661.     Did work for me, here is a clip of the activity
  3662.  
  3663.  
  3664.  
  3665. [1]+  Stopped (signal)        pine -i -z
  3666. [dave@zeus dave]$ telnet totalservice.3com.com 119
  3667. Trying 207.24.160.21...
  3668. telnet: Unable to connect to remote host: Connection refused
  3669. [dave@zeus dave]$ telnet totalservice.3com.com;119
  3670. Trying 207.24.160.21...
  3671. Connected to totalservice.3com.com.
  3672. Escape character is '^]'.
  3673.  
  3674.  
  3675. IRIX (tempest)
  3676.  
  3677. login:    
  3678.  
  3679. Hope this helps you out...
  3680.  
  3681. Dave Lajoie
  3682. Remote Access Administrator
  3683. North Country Internet Access
  3684. E-Mail: dave@ncia.net
  3685.  
  3686.  
  3687.  
  3688.  
  3689. On Mon, 18 Sep 2000, Jeff Mcadams wrote:
  3690.  
  3691. > My father was (just retired in June) a U.S. History teacher at the high
  3692. > school level, and loved to use the movie 1776 in his classes as much as
  3693. > he could...in that movie, there's a song called "Is Anybody There?"
  3694. > where John Adams reads a communique from the Commander of the Continental
  3695. > Army, "the honourable, G. Washington," where Washington laments the lack
  3696. > of response to his last 15 communique's.  Adams sings the contents of
  3697. > the letter as the song.  Some of the lyrics from the song are (this is
  3698. > from memory):
  3699. > "Is Anybody there?\
  3700. > Does anybody care?\
  3701. > Does anybody see, what I see?"
  3702. > team:/home/jeffm> telnet totalservice.3com.com 119
  3703. > Trying 207.24.160.21...
  3704. > telnet: Unable to connect to remote host: Connection refused
  3705. > team:/home/jeffm>
  3706. > Is Anybody there?  Does anybody care?  Does anybody see, what I see?
  3707. > -- 
  3708. > Jeff McAdams                            Email: jeffm@iglou.com
  3709. > Head Network Administrator              Voice: (502) 966-3848
  3710. > IgLou Internet Services                        (800) 436-4456
  3711. > -
  3712. >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  3713. >  with "unsubscribe usr-tc" in the body of the message.
  3714. >  For information on digests or retrieving files and old messages send
  3715. >  "help" to the same address.  Do not use quotes in your message.
  3716.  
  3717.  
  3718. -
  3719.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  3720.  with "unsubscribe usr-tc" in the body of the message.
  3721.  For information on digests or retrieving files and old messages send
  3722.  "help" to the same address.  Do not use quotes in your message.
  3723.  
  3724.  
  3725. -------------------------------------------------------------------------------
  3726.  
  3727. From: Jeff Mcadams <jeffm@iglou.com>
  3728. Subject: Re: (usr-tc) *sigh* is anybody out there?
  3729. Date: 18 Sep 2000 23:06:59 -0400
  3730.  
  3731. Also sprach Dave Lajoie
  3732. >        telnet totalservice.3com.com;119
  3733.  
  3734. Uhm..."telnet totalservice.3com.com;119" would be interpreted as a
  3735. command to telnet to totalservice on the normal telnet port of 23, and
  3736. then, after that exits, to try to run the command "119", which really
  3737. wouldn't accomplish much.  It is interesting that the telnet port is
  3738. open on totalservice, perhaps I could hack in and fix it for them?  ;)
  3739. (note to lawyers, the previous is *definitely* just a joke)
  3740. -- 
  3741. Jeff McAdams                            Email: jeffm@iglou.com
  3742. Head Network Administrator              Voice: (502) 966-3848
  3743. IgLou Internet Services                        (800) 436-4456
  3744.  
  3745. -
  3746.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  3747.  with "unsubscribe usr-tc" in the body of the message.
  3748.  For information on digests or retrieving files and old messages send
  3749.  "help" to the same address.  Do not use quotes in your message.
  3750.  
  3751.  
  3752. -------------------------------------------------------------------------------
  3753.  
  3754. From: "Mark Thornton" <mark@corridor.net>
  3755. Subject: (usr-tc) HiperNMC & quad modems?
  3756. Date: 19 Sep 2000 10:58:52 -0500
  3757.  
  3758. Does the HiperNMC support quad modems? Will it support the X2/V90 functions?
  3759. Do we have to enable the X2/V90 like the older NMC's?
  3760.  
  3761. Thanks,
  3762.  
  3763. Mark Thornton
  3764. San Marcos Internet, Inc.
  3765. 512-393-5300
  3766.  
  3767.  
  3768.  
  3769.  
  3770. -
  3771.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  3772.  with "unsubscribe usr-tc" in the body of the message.
  3773.  For information on digests or retrieving files and old messages send
  3774.  "help" to the same address.  Do not use quotes in your message.
  3775.  
  3776.  
  3777. -------------------------------------------------------------------------------
  3778.  
  3779. From: "Steve Rivera -www.wrca.net" <sales@wrca.net>
  3780. Subject: (usr-tc) Will Hiper NMC enable v90 for Quad Modem Chassis?
  3781. Date: 19 Sep 2000 12:04:36 -0400
  3782.  
  3783. I have a customer who is looking to upgrade his NMC cards but is concerned 
  3784. that the Hiper NMC will not function the same as the standard NMC. 
  3785. Specifically, enabling the quad modems for v90 access.
  3786.  
  3787. I have heard different opinions...Does anyone really know?
  3788. _______________________
  3789.  
  3790. Also have for sale : 3- Hiper DSP w/ nics for $3000 each
  3791.  
  3792. WTB: USR Hiper ARC's w/ nics
  3793.  
  3794. Steve Rivera (VP) - w-732.833.2111 /  c-732.433.5890 24Hr 
  3795. (www.isp-networkhardware.com)
  3796. Email: srivera@wrca.net - Mobile Email: srivera711@hotmail.com
  3797.  
  3798. Worldwide Provider of Network Hardware Since 1981.
  3799.  
  3800.  
  3801.  
  3802.  
  3803.  
  3804.  
  3805.  
  3806.       
  3807.  
  3808.  
  3809.  
  3810.  
  3811.  
  3812. -
  3813.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  3814.  with "unsubscribe usr-tc" in the body of the message.
  3815.  For information on digests or retrieving files and old messages send
  3816.  "help" to the same address.  Do not use quotes in your message.
  3817.  
  3818.  
  3819. -------------------------------------------------------------------------------
  3820.  
  3821. From: Veda Narayan <ved@iyka.com>
  3822. Subject: Re: (usr-tc) HiperNMC & quad modems?
  3823. Date: 19 Sep 2000 18:59:43 -0600
  3824.  
  3825. Quoting Mark Thornton <mark@corridor.net>:
  3826.  
  3827. > Does the HiperNMC support quad modems? Will it support the X2/V90
  3828. > functions?
  3829. > Do we have to enable the X2/V90 like the older NMC's?
  3830. Yes it does.
  3831.  
  3832. V
  3833.  
  3834. > Thanks,
  3835. > Mark Thornton
  3836. > San Marcos Internet, Inc.
  3837. > 512-393-5300
  3838. > -
  3839. >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  3840. >  with "unsubscribe usr-tc" in the body of the message.
  3841. >  For information on digests or retrieving files and old messages send
  3842. >  "help" to the same address.  Do not use quotes in your message.
  3843.  
  3844.  
  3845.  
  3846. ===========
  3847.  
  3848. -V
  3849.  
  3850. ==========
  3851.  
  3852. -
  3853.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  3854.  with "unsubscribe usr-tc" in the body of the message.
  3855.  For information on digests or retrieving files and old messages send
  3856.  "help" to the same address.  Do not use quotes in your message.
  3857.  
  3858.  
  3859. -------------------------------------------------------------------------------
  3860.  
  3861. From: Dwayne Varey <dwayne.varey@wn.com.au>
  3862. Subject: RE: (usr-tc) Logging modem disconnect reasons
  3863. Date: 20 Sep 2000 14:42:31 +0800
  3864.  
  3865. umm, this may sound like a dumb question, but how is the nmc setup to log
  3866. radius call data.  I've been looking around in our nmc's and the only sort
  3867. of logging that seems to be available is syslog.  Do you just set the nmc to
  3868. syslog all of its info to a radius server?  and then have the radius server
  3869. insert data into sql table, or did I miss something along the way?
  3870.  
  3871.  ________________________________________________
  3872.  Dwayne Varey
  3873.  Systems Administrator
  3874.  WestNet - WA's Statewide Internet Provider
  3875.  Phone: 92182600 - Fax: 92182666
  3876.  http://www.wn.com.au
  3877.  _________________________________________________
  3878.  
  3879.  
  3880.  
  3881. -----Original Message-----
  3882. Sent: Sunday, 17 September 2000 14:57
  3883.  
  3884.  
  3885. These days I think the call reference numbers *do* match up between the
  3886. ARC and NMC.  There used to be some incompatibilities between the two (one
  3887. would log in hex and one in decimal, or one would log big-endian and one
  3888. little-endian, that kinda thing)...  but I think that's all in the past.
  3889.  
  3890. I have a Perl script that tails the Radius accounting logs, matches the
  3891. ARC and NMC records up, and writes it to a MySQL table.  From there it's
  3892. easy to write a web page that users (or admins for that matter) can go to
  3893. to view their most recent sessions and see exactly why it was they were
  3894. disconnected, with both the ARC and modem reasons given (unless one gets
  3895. lost, or gets logged to the other accounting server, or whatever -- this
  3896. is UDP after all).  You can throw other stuff in there too, like connect
  3897. speed.
  3898.  
  3899. I can't remember what fields I used to try to match them up; I think just
  3900. hostname (you need a list of what arcs match which nmc's) and session-id
  3901. is enough...
  3902. Lemme go look at the code a sec.
  3903. Hm.  Weird.  I matched up session-id, slot, channel, ANI, and
  3904. DNIS.  That's probably overkill...  :)
  3905.  
  3906. This script isn't currently up on the web with the rest of my scripts, but
  3907. I could put it there or mail it if anyone cared -- I'll have to clean it
  3908. up a bit (read: remove SQL passwords) first.  It's as sloppy as the rest
  3909. of my code but it's a starting point and saves reinventing at least some
  3910. of the wheel.
  3911.  
  3912.  
  3913. Mike Andrews (MA12) * mandrews@dcr.net * http://www.bit0.com/
  3914. VP, sysadmin, & network guy, Digital Crescent Inc, Frankfort KY
  3915. Dialup/ADSL/ISDN/T1 Internet access for Frankfort KY and surrounding
  3916. counties
  3917. www.fark.com: If it's not news, it's Fark.  (Or something like that.)
  3918.  
  3919. On Fri, 15 Sep 2000, Jeff Mcadams wrote:
  3920.  
  3921. > Also sprach Charles Sprickman
  3922. > >On Fri, 15 Sep 2000, Jeff Mcadams wrote:
  3923. > >> Yes...this is probably the best way of doing this.  The tricky part
  3924. > >> is correlating them with the userids as the NMC doesn't know the
  3925. > >> userids, so you'll have to match these records up with the Arc RADIUS
  3926. > >> accounting records to be able to correlate disconnect reasons with
  3927. > >> userids.  Not impossible by any means, but it does add another little
  3928. > >> wrinkle.  :)
  3929. > >Hmmm...  I didn't even know you could do this.  What common information
  3930. > >is there between your normal ARC-supplied accounting record and the NMC
  3931. > >info?  
  3932. > Well...I'm pretty sure that slot and channel are available in both, so
  3933. > that can be used to match them up.  It would really be nice if there
  3934. > some sort of call reference number to match between DSPs and Arcs, while
  3935. > the DSPs do have a call reference number, I don't believe the Arcs know
  3936. > what it is.  Would be nice though.  :)
  3937. > >Do you generally log to the same radius server or keep this seperate
  3938. > >and match things up on an as-needed basis?  
  3939. > We've only played with this and never set it up to make full use of it.
  3940. > I just wish I could trade some of these square tuits for some round
  3941. > ones.  :/
  3942. > >Any idea what Radiator would think of these 'extra' accounting records?
  3943. > I would hope it wouldn't have any problem with them.  RADIUS is designed
  3944. > to be a stateless protocol, so it *shouldn't* have any problems with
  3945. > them.  It should just be new records that come into the RADIUS server
  3946. > and get logged or processed like any other.
  3947. > -- 
  3948. > Jeff McAdams                            Email: jeffm@iglou.com
  3949. > Head Network Administrator              Voice: (502) 966-3848
  3950. > IgLou Internet Services                        (800) 436-4456
  3951. > -
  3952. >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  3953. >  with "unsubscribe usr-tc" in the body of the message.
  3954. >  For information on digests or retrieving files and old messages send
  3955. >  "help" to the same address.  Do not use quotes in your message.
  3956.  
  3957.  
  3958.  
  3959. -
  3960.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  3961.  with "unsubscribe usr-tc" in the body of the message.
  3962.  For information on digests or retrieving files and old messages send
  3963.  "help" to the same address.  Do not use quotes in your message.
  3964.  
  3965. -
  3966.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  3967.  with "unsubscribe usr-tc" in the body of the message.
  3968.  For information on digests or retrieving files and old messages send
  3969.  "help" to the same address.  Do not use quotes in your message.
  3970.  
  3971.  
  3972. -------------------------------------------------------------------------------
  3973.  
  3974. From: "Steve Rivera -www.wrca.net" <sales@wrca.net>
  3975. Subject: (usr-tc) WTB: Hiper DSP's.
  3976. Date: 20 Sep 2000 10:35:46 -0400
  3977.  
  3978. Anyone selling bundles? Interested in cards or complete access servers.
  3979. Please email what you have.
  3980.  
  3981. Steve Rivera (VP) - w-732.833.2111 /  c-732.433.5890 24Hr 
  3982. (www.isp-networkhardware.com)
  3983. Email: srivera@wrca.net - Mobile Email: srivera711@hotmail.com
  3984.  
  3985. Worldwide Provider of Network Hardware Since 1981.
  3986.  
  3987.  
  3988.  
  3989.  
  3990.  
  3991.  
  3992.  
  3993.       
  3994.  
  3995.  
  3996.  
  3997.  
  3998.  
  3999. -
  4000.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  4001.  with "unsubscribe usr-tc" in the body of the message.
  4002.  For information on digests or retrieving files and old messages send
  4003.  "help" to the same address.  Do not use quotes in your message.
  4004.  
  4005.  
  4006. -------------------------------------------------------------------------------
  4007.  
  4008. From: "Mark Thornton" <mark@corridor.net>
  4009. Subject: (usr-tc) What platform are others moving to?
  4010. Date: 20 Sep 2000 10:58:17 -0500
  4011.  
  4012. After doing the dance with 3com over upgrading my systems to gain some
  4013. additional level of stability I have come to the following conclusions. 3com
  4014. wants $4640 a year for software updates only, or about $10000 for 8-5
  4015. service(?) with software updates. They also want another $4400 to purchase
  4016. new v.90 keys to support my quad modems on the new hipernmc's. We talked a
  4017. bit about replacing all of the quads but that would run $18,000. Pretty soon
  4018. we are starting to talk about real money!
  4019.  
  4020. The problem I have with this is why the hell does the hipernmc require a v90
  4021. key for the quad modems? Is 3com going to milk that cow until the udder
  4022. bleeds? Isn't the fact that we bought the upgrade enough?
  4023.  
  4024. We are getting real close to a break even for replacing the entire pile of
  4025. trash with a new Cisco when I figure in the rebates (assuming Cisco still
  4026. considers the 3com a competitive unit).
  4027.  
  4028. Mark Thornton
  4029. San Marcos Internet, Inc.
  4030. 512-393-5300
  4031.  
  4032.  
  4033.  
  4034.  
  4035. -
  4036.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  4037.  with "unsubscribe usr-tc" in the body of the message.
  4038.  For information on digests or retrieving files and old messages send
  4039.  "help" to the same address.  Do not use quotes in your message.
  4040.  
  4041.  
  4042. -------------------------------------------------------------------------------
  4043.  
  4044. From: Jeff Mcadams <jeffm@iglou.com>
  4045. Subject: (usr-tc) ISDN leased line on DSP?
  4046. Date: 20 Sep 2000 15:20:51 -0400
  4047.  
  4048. OK...this is a bizarre one..
  4049.  
  4050. I have a customer wanting to upgrade from 2 channel ISDN, to a 2 channel
  4051. leased line type of set up (don't ask, I'm not sure why).  In any case,
  4052. they have an ISDN PRI into their location to support their voice traffic
  4053. on their PBX.  What they want to do (and apparently have an Adtran unit
  4054. to do this on their end) is to pull two channels off the PRI and hand
  4055. them to a cisco 1600 as a nailed up data connection (ie, no dialing).  I
  4056. know that you can set up an ISDN leased line connection like this, but
  4057. I've never seen anyone pull two channels off a PRI to do this.  *shrug*
  4058.  
  4059. In any case...this setup is giving our mutual CLEC telephone company
  4060. fits on how to do this.  Being a leased line setup, my initial response
  4061. was to say, "OK, drop that to me on a frac-t1 connection to my cisco
  4062. 3640 down there."  I *think* this can be made to work...the tech dude at
  4063. the telco (who's pretty sharp and friendly) thinks he can get this
  4064. delivered to my 3640 on a frac-t1...
  4065.  
  4066. Now...I like our telco down there a lot...they're good guys, so I want
  4067. to try to help them out if I can...and besides...I wanna do this setup
  4068. without doing alot of really weird provisioning, as that tends to cause
  4069. problems down the line.  So, my question boils down to...
  4070.  
  4071. Can a DSP be made to use two channels as an ISDN leased line connection?
  4072. My thinking being that if I could peel off two channels of one of my
  4073. PRIs, it might be easier, simpler, more reliable, etc. to take my two
  4074. channels and patch them through the switch to these folks two channels,
  4075. rather than having to add/drop mux it out somewhere, convert it to a
  4076. frac-t1, and proly several other weird gyrations, to get the connection
  4077. to me.  Not being a telco tech, I'm not sure if this would be easier to
  4078. do or not...I can't imagine it would make it harder, but who knows.  But
  4079. before I offered to the telco tech dude, I wanted to make sure the DSPs
  4080. would indeed do this.  The impression I've gotten from what I've looked
  4081. at so far, is that no, the DSPs *won't* do this...but I'd like to get
  4082. some confirmation from folks that know more about this than I.
  4083.  
  4084. Thanks!
  4085.  
  4086. P.S.  Still no response from anyone of any signficance about the news
  4087. server on totalservice.  :/
  4088. -- 
  4089. Jeff McAdams                            Email: jeffm@iglou.com
  4090. Head Network Administrator              Voice: (502) 966-3848
  4091. IgLou Internet Services                        (800) 436-4456
  4092.  
  4093. -
  4094.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  4095.  with "unsubscribe usr-tc" in the body of the message.
  4096.  For information on digests or retrieving files and old messages send
  4097.  "help" to the same address.  Do not use quotes in your message.
  4098.  
  4099.  
  4100. -------------------------------------------------------------------------------
  4101.  
  4102. From: "Mark Thornton" <mark@corridor.net>
  4103. Subject: Re: (usr-tc) ISDN leased line on DSP?
  4104. Date: 20 Sep 2000 14:51:49 -0500
  4105.  
  4106. Are you sure the Adtran is set up to add/drop from a PRI? That would put a
  4107. lot of intelligence in the Adtran that is not normally included in a csu/dsu
  4108. in order to deal with the D channel call setup stuff. It is my understanding
  4109. that a PRI isn't really sliced up just like a CT1.
  4110.  
  4111. We provide the same functionality to a few of our clients using an Ascend
  4112. router configured in the 'nailed' mode. This essentially creates a leased
  4113. line between their router and the dsp, and has the advantage of moving to
  4114. other PRI's if one of them fails for any reason. We set up our end to never
  4115. dump that call for any sort of timeout.
  4116.  
  4117. Mark Thornton
  4118. San Marcos Internet, Inc.
  4119. 512-393-5300
  4120.  
  4121.  
  4122. ----- Original Message -----
  4123. Sent: Wednesday, September 20, 2000 2:20 PM
  4124.  
  4125.  
  4126. > OK...this is a bizarre one..
  4127. >
  4128. > I have a customer wanting to upgrade from 2 channel ISDN, to a 2 channel
  4129. > leased line type of set up (don't ask, I'm not sure why).  In any case,
  4130. > they have an ISDN PRI into their location to support their voice traffic
  4131. > on their PBX.  What they want to do (and apparently have an Adtran unit
  4132. > to do this on their end) is to pull two channels off the PRI and hand
  4133. > them to a cisco 1600 as a nailed up data connection (ie, no dialing).  I
  4134. > know that you can set up an ISDN leased line connection like this, but
  4135. > I've never seen anyone pull two channels off a PRI to do this.  *shrug*
  4136. >
  4137. > In any case...this setup is giving our mutual CLEC telephone company
  4138. > fits on how to do this.  Being a leased line setup, my initial response
  4139. > was to say, "OK, drop that to me on a frac-t1 connection to my cisco
  4140. > 3640 down there."  I *think* this can be made to work...the tech dude at
  4141. > the telco (who's pretty sharp and friendly) thinks he can get this
  4142. > delivered to my 3640 on a frac-t1...
  4143. >
  4144. > Now...I like our telco down there a lot...they're good guys, so I want
  4145. > to try to help them out if I can...and besides...I wanna do this setup
  4146. > without doing alot of really weird provisioning, as that tends to cause
  4147. > problems down the line.  So, my question boils down to...
  4148. >
  4149. > Can a DSP be made to use two channels as an ISDN leased line connection?
  4150. > My thinking being that if I could peel off two channels of one of my
  4151. > PRIs, it might be easier, simpler, more reliable, etc. to take my two
  4152. > channels and patch them through the switch to these folks two channels,
  4153. > rather than having to add/drop mux it out somewhere, convert it to a
  4154. > frac-t1, and proly several other weird gyrations, to get the connection
  4155. > to me.  Not being a telco tech, I'm not sure if this would be easier to
  4156. > do or not...I can't imagine it would make it harder, but who knows.  But
  4157. > before I offered to the telco tech dude, I wanted to make sure the DSPs
  4158. > would indeed do this.  The impression I've gotten from what I've looked
  4159. > at so far, is that no, the DSPs *won't* do this...but I'd like to get
  4160. > some confirmation from folks that know more about this than I.
  4161. >
  4162. > Thanks!
  4163. >
  4164. > P.S.  Still no response from anyone of any signficance about the news
  4165. > server on totalservice.  :/
  4166. > --
  4167. > Jeff McAdams                            Email: jeffm@iglou.com
  4168. > Head Network Administrator              Voice: (502) 966-3848
  4169. > IgLou Internet Services                        (800) 436-4456
  4170. >
  4171. > -
  4172. >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  4173. >  with "unsubscribe usr-tc" in the body of the message.
  4174. >  For information on digests or retrieving files and old messages send
  4175. >  "help" to the same address.  Do not use quotes in your message.
  4176.  
  4177.  
  4178. -
  4179.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  4180.  with "unsubscribe usr-tc" in the body of the message.
  4181.  For information on digests or retrieving files and old messages send
  4182.  "help" to the same address.  Do not use quotes in your message.
  4183.  
  4184.  
  4185. -------------------------------------------------------------------------------
  4186.  
  4187. From: Paul Farber <farber@admin.f-tech.net>
  4188. Subject: Re: (usr-tc) ISDN leased line on DSP?
  4189. Date: 20 Sep 2000 16:07:26 -0400 (EDT)
  4190.  
  4191. I tried this a while ago with BELL/Verizon.. I ordered an point to point
  4192. ISDN circuit.. it showed up as a plain old ISDN but with no useage
  4193. charges, I just paid by the mile.
  4194.  
  4195. But everything else was a plain old ISDN circuit... plugged it into a
  4196. courier I modem and let her rip.  So I guess your CLEC could reroute it to
  4197. a pair on you PRI if they can pull them out of the circuit and reassign
  4198. them to that dedicated link.
  4199.  
  4200. It might not be tarriffed to work that way, but if  they are willing to
  4201. try it...
  4202.  
  4203. Paul Farber
  4204. Farber Technology
  4205. farber@admin.f-tech.net
  4206. Ph  570-628-5303
  4207. Fax 570-628-5545
  4208.  
  4209. On Wed, 20 Sep 2000, Jeff Mcadams wrote:
  4210.  
  4211. > OK...this is a bizarre one..
  4212. > I have a customer wanting to upgrade from 2 channel ISDN, to a 2 channel
  4213. > leased line type of set up (don't ask, I'm not sure why).  In any case,
  4214. > they have an ISDN PRI into their location to support their voice traffic
  4215. > on their PBX.  What they want to do (and apparently have an Adtran unit
  4216. > to do this on their end) is to pull two channels off the PRI and hand
  4217. > them to a cisco 1600 as a nailed up data connection (ie, no dialing).  I
  4218. > know that you can set up an ISDN leased line connection like this, but
  4219. > I've never seen anyone pull two channels off a PRI to do this.  *shrug*
  4220. > In any case...this setup is giving our mutual CLEC telephone company
  4221. > fits on how to do this.  Being a leased line setup, my initial response
  4222. > was to say, "OK, drop that to me on a frac-t1 connection to my cisco
  4223. > 3640 down there."  I *think* this can be made to work...the tech dude at
  4224. > the telco (who's pretty sharp and friendly) thinks he can get this
  4225. > delivered to my 3640 on a frac-t1...
  4226. > Now...I like our telco down there a lot...they're good guys, so I want
  4227. > to try to help them out if I can...and besides...I wanna do this setup
  4228. > without doing alot of really weird provisioning, as that tends to cause
  4229. > problems down the line.  So, my question boils down to...
  4230. > Can a DSP be made to use two channels as an ISDN leased line connection?
  4231. > My thinking being that if I could peel off two channels of one of my
  4232. > PRIs, it might be easier, simpler, more reliable, etc. to take my two
  4233. > channels and patch them through the switch to these folks two channels,
  4234. > rather than having to add/drop mux it out somewhere, convert it to a
  4235. > frac-t1, and proly several other weird gyrations, to get the connection
  4236. > to me.  Not being a telco tech, I'm not sure if this would be easier to
  4237. > do or not...I can't imagine it would make it harder, but who knows.  But
  4238. > before I offered to the telco tech dude, I wanted to make sure the DSPs
  4239. > would indeed do this.  The impression I've gotten from what I've looked
  4240. > at so far, is that no, the DSPs *won't* do this...but I'd like to get
  4241. > some confirmation from folks that know more about this than I.
  4242. > Thanks!
  4243. > P.S.  Still no response from anyone of any signficance about the news
  4244. > server on totalservice.  :/
  4245. > -- 
  4246. > Jeff McAdams                            Email: jeffm@iglou.com
  4247. > Head Network Administrator              Voice: (502) 966-3848
  4248. > IgLou Internet Services                        (800) 436-4456
  4249. > -
  4250. >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  4251. >  with "unsubscribe usr-tc" in the body of the message.
  4252. >  For information on digests or retrieving files and old messages send
  4253. >  "help" to the same address.  Do not use quotes in your message.
  4254.  
  4255.  
  4256. -
  4257.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  4258.  with "unsubscribe usr-tc" in the body of the message.
  4259.  For information on digests or retrieving files and old messages send
  4260.  "help" to the same address.  Do not use quotes in your message.
  4261.  
  4262.  
  4263. -------------------------------------------------------------------------------
  4264.  
  4265. From: Jeff Mcadams <jeffm@iglou.com>
  4266. Subject: Re: (usr-tc) ISDN leased line on DSP?
  4267. Date: 20 Sep 2000 16:04:47 -0400
  4268.  
  4269. Also sprach Mark Thornton
  4270. >Are you sure the Adtran is set up to add/drop from a PRI? That would
  4271. >put a lot of intelligence in the Adtran that is not normally included
  4272. >in a csu/dsu in order to deal with the D channel call setup stuff. It
  4273. >is my understanding that a PRI isn't really sliced up just like a CT1.
  4274.  
  4275. Yeah...I looked at some of the Adtran stuff...it looks like they have
  4276. some rather intelligent "CSU/DSU's"...up to the point of doing IP
  4277. routing to some degree.  It looks like it can seriously slice and dice a
  4278. connection any way you want it...with some of their equipment, it looks
  4279. like it'll even drop a single DS0 out of a DS3 like this.
  4280.  
  4281. I've called the consultant dude working on this whole setup to try to
  4282. find out the actual Adtran unit that they're using, in the hopes that
  4283. it might tell me a bit more about the setup they're doing and how it
  4284. might affect us.
  4285.  
  4286. >We provide the same functionality to a few of our clients using an
  4287. >Ascend router configured in the 'nailed' mode. This essentially creates
  4288. >a leased line between their router and the dsp, and has the advantage
  4289. >of moving to other PRI's if one of them fails for any reason. We set up
  4290. >our end to never dump that call for any sort of timeout.
  4291.  
  4292. Ugh...don't get me started.  I suggested a channelized T1, to pull of
  4293. channels to do this...they already had the PRI in place.  I suggested
  4294. taking the PRI into the PBX and then provision a BRI out of the PBX to a
  4295. BRI router and do a nailed dial-up connection like you suggested.  They
  4296. already had the Cisco 1600 and didn't want to purchase the BRI card for
  4297. it, and already had the Adtran to break out the two PRI channels.
  4298.  
  4299. *cue rant about people ordering equipment and services before knowing if
  4300. it will work end-to-end or not*  *sigh*
  4301.  
  4302. Anyway...I'm not wanting to put a whole lot of work into this, since the
  4303. customer and consultant pretty much have their minds made up on how they
  4304. want to do this, and aren't willing to consider suggestions on better
  4305. ways to handle it, but I thought I'd ask to see if you could set aside
  4306. ISDN leased line channels on a DSP.  I know such a thing as an ISDN
  4307. leased line exists, and its not a dialed connection, but didn't know if
  4308. the DSPs supported it.
  4309. -- 
  4310. Jeff McAdams                            Email: jeffm@iglou.com
  4311. Head Network Administrator              Voice: (502) 966-3848
  4312. IgLou Internet Services                        (800) 436-4456
  4313.  
  4314. -
  4315.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  4316.  with "unsubscribe usr-tc" in the body of the message.
  4317.  For information on digests or retrieving files and old messages send
  4318.  "help" to the same address.  Do not use quotes in your message.
  4319.  
  4320.  
  4321. -------------------------------------------------------------------------------
  4322.  
  4323. From: Jeff Mcadams <jeffm@iglou.com>
  4324. Subject: Re: (usr-tc) ISDN leased line on DSP?
  4325. Date: 20 Sep 2000 16:07:33 -0400
  4326.  
  4327. Also sprach Paul Farber
  4328. >I tried this a while ago with BELL/Verizon.. I ordered an point to
  4329. >point ISDN circuit.. it showed up as a plain old ISDN but with no
  4330. >useage charges, I just paid by the mile.
  4331.  
  4332. Right...and its not dialed, correct?  It just comes up and is connected
  4333. through as a clear connection.  Did you have to set up multi-link to be
  4334. able to have a 128kbps channel on that?  Or was it a clear 128kbps
  4335. channel?  That's one thing I wasn't sure on...I was assuming it'd
  4336. require MP, but hadn't ever actually experienced it, so didn't know for
  4337. sure.
  4338.  
  4339. >But everything else was a plain old ISDN circuit... plugged it into a
  4340. >courier I modem and let her rip.  So I guess your CLEC could reroute it
  4341. >to a pair on you PRI if they can pull them out of the circuit and
  4342. >reassign them to that dedicated link.
  4343.  
  4344. Right...I thought it might be easier for the CLEC to do that...I'm not
  4345. sure if you can configure the DSP to do that though.
  4346.  
  4347. >It might not be tarriffed to work that way, but if  they are willing to
  4348. >try it...
  4349.  
  4350. Oh...these are good people...they're willing to give just about anything
  4351. a try.  It helps that they seem to really like me and IgLou.  :)
  4352. -- 
  4353. Jeff McAdams                            Email: jeffm@iglou.com
  4354. Head Network Administrator              Voice: (502) 966-3848
  4355. IgLou Internet Services                        (800) 436-4456
  4356.  
  4357. -
  4358.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  4359.  with "unsubscribe usr-tc" in the body of the message.
  4360.  For information on digests or retrieving files and old messages send
  4361.  "help" to the same address.  Do not use quotes in your message.
  4362.  
  4363.  
  4364. -------------------------------------------------------------------------------
  4365.  
  4366. From: Charles Sprickman <spork@inch.com>
  4367. Subject: Re: (usr-tc) ISDN leased line on DSP?
  4368. Date: 20 Sep 2000 17:00:02 -0400 (EDT)
  4369.  
  4370. On Wed, 20 Sep 2000, Jeff Mcadams wrote:
  4371.  
  4372. > Anyway...I'm not wanting to put a whole lot of work into this, since the
  4373. > customer and consultant pretty much have their minds made up on how they
  4374. > want to do this, and aren't willing to consider suggestions on better
  4375. > ways to handle it, but I thought I'd ask to see if you could set aside
  4376. > ISDN leased line channels on a DSP.  I know such a thing as an ISDN
  4377. > leased line exists, and its not a dialed connection, but didn't know if
  4378. > the DSPs supported it.
  4379.  
  4380. The only thing that comes to mind here is that this would only work if
  4381. your telco and their telco were the same entity...  Otherwise I can't
  4382. imagine this working.  I've never heard of any centrex-type service going
  4383. cross-carrier...
  4384.  
  4385. Just another possible data point.
  4386.  
  4387. Charles
  4388.  
  4389. > -- 
  4390. > Jeff McAdams                            Email: jeffm@iglou.com
  4391. > Head Network Administrator              Voice: (502) 966-3848
  4392. > IgLou Internet Services                        (800) 436-4456
  4393. > -
  4394. >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  4395. >  with "unsubscribe usr-tc" in the body of the message.
  4396. >  For information on digests or retrieving files and old messages send
  4397. >  "help" to the same address.  Do not use quotes in your message.
  4398.  
  4399.  
  4400. -
  4401.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  4402.  with "unsubscribe usr-tc" in the body of the message.
  4403.  For information on digests or retrieving files and old messages send
  4404.  "help" to the same address.  Do not use quotes in your message.
  4405.  
  4406.  
  4407. -------------------------------------------------------------------------------
  4408.  
  4409. From: Steve Monkhouse <steve.monkhouse@ethertech.com.au>
  4410. Subject: (usr-tc) E1 DSP 30 channel question.. 
  4411. Date: 21 Sep 2000 08:03:56 +1000
  4412.  
  4413. under TCM, you can set your call routing numbers and service types ( =
  4414. analogue / digital )..=20
  4415.  
  4416. and that seems quite fine for the first 24 channels, but when you try to =
  4417. assign anything over 24 channels TCM takes the info with the set =
  4418. command, but wont retain it...=20
  4419.  
  4420. im using 6.0.23 of TCM, it recoginses the DSP as a 30 channel E1, lets =
  4421. me configure all 30 channels everywhere else...=20
  4422.  
  4423. is there a way to assign these last 6 channels routing info ??
  4424.  
  4425. Steve Monkhouse - Network Engineer
  4426. EtherTech Computer Services
  4427.  
  4428. Ph : +61-3-9768-2665
  4429. Fx : +61-3-9768-2664
  4430. http://www.ethertech.com.au
  4431.  
  4432.  
  4433. -
  4434.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  4435.  with "unsubscribe usr-tc" in the body of the message.
  4436.  For information on digests or retrieving files and old messages send
  4437.  "help" to the same address.  Do not use quotes in your message.
  4438.  
  4439.  
  4440. -------------------------------------------------------------------------------
  4441.  
  4442. From: Paul Farber <farber@admin.f-tech.net>
  4443. Subject: Re: (usr-tc) ISDN leased line on DSP?
  4444. Date: 20 Sep 2000 17:26:54 -0400 (EDT)
  4445.  
  4446. I *think* it came up as a MLPPP circuit.... there was really nothing to
  4447. it.. I got a spid and had to give the modem a different init string
  4448. (ignore carrier.. cant remember.. the circuit was taken down a few months
  4449. ago.)
  4450.  
  4451. Paul Farber
  4452. Farber Technology
  4453. farber@admin.f-tech.net
  4454. Ph  570-628-5303
  4455. Fax 570-628-5545
  4456.  
  4457. On Wed, 20 Sep 2000, Jeff Mcadams wrote:
  4458.  
  4459. > Also sprach Paul Farber
  4460. > >I tried this a while ago with BELL/Verizon.. I ordered an point to
  4461. > >point ISDN circuit.. it showed up as a plain old ISDN but with no
  4462. > >useage charges, I just paid by the mile.
  4463. > Right...and its not dialed, correct?  It just comes up and is connected
  4464. > through as a clear connection.  Did you have to set up multi-link to be
  4465. > able to have a 128kbps channel on that?  Or was it a clear 128kbps
  4466. > channel?  That's one thing I wasn't sure on...I was assuming it'd
  4467. > require MP, but hadn't ever actually experienced it, so didn't know for
  4468. > sure.
  4469. > >But everything else was a plain old ISDN circuit... plugged it into a
  4470. > >courier I modem and let her rip.  So I guess your CLEC could reroute it
  4471. > >to a pair on you PRI if they can pull them out of the circuit and
  4472. > >reassign them to that dedicated link.
  4473. > Right...I thought it might be easier for the CLEC to do that...I'm not
  4474. > sure if you can configure the DSP to do that though.
  4475. > >It might not be tarriffed to work that way, but if  they are willing to
  4476. > >try it...
  4477. > Oh...these are good people...they're willing to give just about anything
  4478. > a try.  It helps that they seem to really like me and IgLou.  :)
  4479. > -- 
  4480. > Jeff McAdams                            Email: jeffm@iglou.com
  4481. > Head Network Administrator              Voice: (502) 966-3848
  4482. > IgLou Internet Services                        (800) 436-4456
  4483. > -
  4484. >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  4485. >  with "unsubscribe usr-tc" in the body of the message.
  4486. >  For information on digests or retrieving files and old messages send
  4487. >  "help" to the same address.  Do not use quotes in your message.
  4488.  
  4489.  
  4490. -
  4491.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  4492.  with "unsubscribe usr-tc" in the body of the message.
  4493.  For information on digests or retrieving files and old messages send
  4494.  "help" to the same address.  Do not use quotes in your message.
  4495.  
  4496.  
  4497. -------------------------------------------------------------------------------
  4498.  
  4499. From: Jeff Mcadams <jeffm@iglou.com>
  4500. Subject: Re: (usr-tc) ISDN leased line on DSP?
  4501. Date: 20 Sep 2000 17:27:47 -0400
  4502.  
  4503. Also sprach Charles Sprickman
  4504. >The only thing that comes to mind here is that this would only work if
  4505. >your telco and their telco were the same entity...  Otherwise I can't
  4506. >imagine this working.  I've never heard of any centrex-type service
  4507. >going cross-carrier...
  4508.  
  4509. Yup, same telco...so no problems there.
  4510. -- 
  4511. Jeff McAdams                            Email: jeffm@iglou.com
  4512. Head Network Administrator              Voice: (502) 966-3848
  4513. IgLou Internet Services                        (800) 436-4456
  4514.  
  4515. -
  4516.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  4517.  with "unsubscribe usr-tc" in the body of the message.
  4518.  For information on digests or retrieving files and old messages send
  4519.  "help" to the same address.  Do not use quotes in your message.
  4520.  
  4521.  
  4522. -------------------------------------------------------------------------------
  4523.  
  4524. From: Jeff Mcadams <jeffm@iglou.com>
  4525. Subject: Re: (usr-tc) ISDN leased line on DSP?
  4526. Date: 20 Sep 2000 17:57:50 -0400
  4527.  
  4528. Also sprach Paul Farber
  4529. >I *think* it came up as a MLPPP circuit.... 
  4530.  
  4531. OK...that's what I thought...I'm not aware of any support at the ISDN
  4532. level for making multiple channels into a bigger single pipe like there
  4533. is for fractional-T1's.
  4534.  
  4535. >there was really nothing to it.. I got a spid and had to give the modem
  4536. >a different init string (ignore carrier.. cant remember.. the circuit
  4537. >was taken down a few months ago.)
  4538.  
  4539. Probably ignore carrier and just to answer or originate without dialing
  4540. probably.  I didn't figure it was a big deal...thanks for the input
  4541. though.  :)
  4542. -- 
  4543. Jeff McAdams                            Email: jeffm@iglou.com
  4544. Head Network Administrator              Voice: (502) 966-3848
  4545. IgLou Internet Services                        (800) 436-4456
  4546.  
  4547. -
  4548.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  4549.  with "unsubscribe usr-tc" in the body of the message.
  4550.  For information on digests or retrieving files and old messages send
  4551.  "help" to the same address.  Do not use quotes in your message.
  4552.  
  4553.  
  4554. -------------------------------------------------------------------------------
  4555.  
  4556. From: "Bob Purdon" <lists@aussie.nu>
  4557. Subject: Re: (usr-tc) What platform are others moving to?
  4558. Date: 21 Sep 2000 10:17:17 +1000
  4559.  
  4560. > The problem I have with this is why the hell does the hipernmc require a
  4561. v90
  4562. > key for the quad modems? Is 3com going to milk that cow until the udder
  4563. > bleeds? Isn't the fact that we bought the upgrade enough?
  4564.  
  4565. I thought it was supposed to be sufficient.  My understanding was that if
  4566. you bought a V90 key, and at a later stage had to replace the NMC, they
  4567. would issue a new V90 key free of charge.
  4568.  
  4569. Maybe that only applies if they've previously conned you into a
  4570. waste-of-money maintenance contract?
  4571.  
  4572.  
  4573. -
  4574.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  4575.  with "unsubscribe usr-tc" in the body of the message.
  4576.  For information on digests or retrieving files and old messages send
  4577.  "help" to the same address.  Do not use quotes in your message.
  4578.  
  4579.  
  4580. -------------------------------------------------------------------------------
  4581.  
  4582. From: Paul Farber <farber@admin.f-tech.net>
  4583. Subject: Re: (usr-tc) What platform are others moving to?
  4584. Date: 20 Sep 2000 20:47:06 -0400 (EDT)
  4585.  
  4586. hahahahaha people are still complaining about 3COM's policies.  Geez, it's
  4587. a new century, get away from their silly crap.  There are better options
  4588. out their.... start to explore them.
  4589.  
  4590. Once the expired leases start to flood the market then they might be a
  4591. better deal.  But not know.
  4592.  
  4593. Paul Farber
  4594. Farber Technology
  4595. farber@admin.f-tech.net
  4596. Ph  570-628-5303
  4597. Fax 570-628-5545
  4598.  
  4599. On Thu, 21 Sep 2000, Bob Purdon wrote:
  4600.  
  4601. > > The problem I have with this is why the hell does the hipernmc require a
  4602. > v90
  4603. > > key for the quad modems? Is 3com going to milk that cow until the udder
  4604. > > bleeds? Isn't the fact that we bought the upgrade enough?
  4605. > I thought it was supposed to be sufficient.  My understanding was that if
  4606. > you bought a V90 key, and at a later stage had to replace the NMC, they
  4607. > would issue a new V90 key free of charge.
  4608. > Maybe that only applies if they've previously conned you into a
  4609. > waste-of-money maintenance contract?
  4610. > -
  4611. >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  4612. >  with "unsubscribe usr-tc" in the body of the message.
  4613. >  For information on digests or retrieving files and old messages send
  4614. >  "help" to the same address.  Do not use quotes in your message.
  4615.  
  4616.  
  4617. -
  4618.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  4619.  with "unsubscribe usr-tc" in the body of the message.
  4620.  For information on digests or retrieving files and old messages send
  4621.  "help" to the same address.  Do not use quotes in your message.
  4622.  
  4623.  
  4624. -------------------------------------------------------------------------------
  4625.  
  4626. From: Brian <signal@shreve.net>
  4627. Subject: Re: (usr-tc) *sigh* is anybody out there?
  4628. Date: 20 Sep 2000 23:10:54 -0500 (CDT)
  4629.  
  4630. On Mon, 18 Sep 2000, Jeff Mcadams wrote:
  4631. > Is Anybody there?  Does anybody care?  Does anybody see, what I see?
  4632.  
  4633. You mean like see alot of ISP's switch to Cisco for RAS?
  4634.  
  4635. :)
  4636.  
  4637. Brian
  4638.  
  4639.  
  4640. > -- 
  4641. > Jeff McAdams                            Email: jeffm@iglou.com
  4642. > Head Network Administrator              Voice: (502) 966-3848
  4643. > IgLou Internet Services                        (800) 436-4456
  4644. > -
  4645. >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  4646. >  with "unsubscribe usr-tc" in the body of the message.
  4647. >  For information on digests or retrieving files and old messages send
  4648. >  "help" to the same address.  Do not use quotes in your message.
  4649.  
  4650. Brian Feeny, CCNA, CCDA       signal@shreve.net   
  4651. Network Administrator          
  4652. ShreveNet Inc. (ASN 11881)          
  4653.  
  4654.  
  4655. -
  4656.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  4657.  with "unsubscribe usr-tc" in the body of the message.
  4658.  For information on digests or retrieving files and old messages send
  4659.  "help" to the same address.  Do not use quotes in your message.
  4660.  
  4661.  
  4662. -------------------------------------------------------------------------------
  4663.  
  4664. From: Brian <signal@shreve.net>
  4665. Subject: Re: (usr-tc) What platform are others moving to?
  4666. Date: 20 Sep 2000 23:18:49 -0500 (CDT)
  4667.  
  4668. On Wed, 20 Sep 2000, Mark Thornton wrote:
  4669.  
  4670. > After doing the dance with 3com over upgrading my systems to gain some
  4671. > additional level of stability I have come to the following conclusions. 3com
  4672. > wants $4640 a year for software updates only, or about $10000 for 8-5
  4673. > service(?) with software updates. They also want another $4400 to purchase
  4674.  
  4675. Hmm, for how much gear is that for? Probably not alot.  You have to
  4676. understand the 3com business model..........its about making money on
  4677. support.  Its a very important part of their business that you pay them to
  4678. fix the bugs they sold you.  Sure, they have code that fixes your
  4679. problem............but wait.......it has PPPoE in it, and thats a
  4680. "feature" (probably with bugs), and so they can't just let you *have* it,
  4681. you have to pay them.  Now they could seperate the code trains, and
  4682. release just "fixes" with no new features (3com doesn't know what a
  4683. feature freeze is).........but then how they going to justify charging you
  4684. ungodly amounts for support?
  4685.  
  4686. > new v.90 keys to support my quad modems on the new hipernmc's. We talked a
  4687. > bit about replacing all of the quads but that would run $18,000. Pretty soon
  4688. > we are starting to talk about real money!
  4689. > The problem I have with this is why the hell does the hipernmc require a v90
  4690. > key for the quad modems? Is 3com going to milk that cow until the udder
  4691. > bleeds? Isn't the fact that we bought the upgrade enough?
  4692. > We are getting real close to a break even for replacing the entire pile of
  4693. > trash with a new Cisco when I figure in the rebates (assuming Cisco still
  4694. > considers the 3com a competitive unit).
  4695.  
  4696. if someone could elaborate a little on the list about what cisco has been
  4697. willing to do on 3com trade-in's I would be interested.  What is the box
  4698. to move to? as5400?
  4699.  
  4700. > Mark Thornton
  4701. > San Marcos Internet, Inc.
  4702. > 512-393-5300
  4703. > -
  4704. >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  4705. >  with "unsubscribe usr-tc" in the body of the message.
  4706. >  For information on digests or retrieving files and old messages send
  4707. >  "help" to the same address.  Do not use quotes in your message.
  4708.  
  4709. Brian Feeny, CCNA, CCDA       signal@shreve.net   
  4710. Network Administrator          
  4711. ShreveNet Inc. (ASN 11881)          
  4712.  
  4713.  
  4714. -
  4715.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  4716.  with "unsubscribe usr-tc" in the body of the message.
  4717.  For information on digests or retrieving files and old messages send
  4718.  "help" to the same address.  Do not use quotes in your message.
  4719.  
  4720.  
  4721. -------------------------------------------------------------------------------
  4722.  
  4723. From: "Mark Thornton" <mark@corridor.net>
  4724. Subject: Re: (usr-tc) What platform are others moving to?
  4725. Date: 21 Sep 2000 08:20:15 -0500
  4726.  
  4727. > if someone could elaborate a little on the list about what cisco has been
  4728. > willing to do on 3com trade-in's I would be interested.  What is the box
  4729. > to move to? as5400?
  4730.  
  4731. According to Cisco's site they are offering $125 per port for competitive
  4732. upgrades. The 5400 looks sweet to me.
  4733.  
  4734. Mark Thornton
  4735. San Marcos Internet, Inc.
  4736. 512-393-5300
  4737.  
  4738.  
  4739.  
  4740.  
  4741. -
  4742.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  4743.  with "unsubscribe usr-tc" in the body of the message.
  4744.  For information on digests or retrieving files and old messages send
  4745.  "help" to the same address.  Do not use quotes in your message.
  4746.  
  4747.  
  4748. -------------------------------------------------------------------------------
  4749.  
  4750. From: "Ray Bolouri \(Chicago\)" <ray.chi@uss.net>
  4751. Subject: (usr-tc) in need of expert usr access server consultant
  4752. Date: 21 Sep 2000 15:30:42 -0400
  4753.  
  4754. This is a multi-part message in MIME format.
  4755.  
  4756. ------=_NextPart_000_003A_01C023E0.E7518620
  4757. Content-Type: text/plain;
  4758.     charset="iso-8859-1"
  4759. Content-Transfer-Encoding: quoted-printable
  4760.  
  4761. We are looking for a consultant that can setup a total control chassis =
  4762. for us to do a special functionality
  4763.  
  4764. we need to use this box to dial out using PRI's.
  4765.  
  4766. then we need someone to create some link to our servers and pass out the =
  4767. ip's to our servers ... then we need it to be able to call another =
  4768. number and get more ip's and so on ..
  4769.  
  4770. is someone able to help us set this up as such ... need to have this =
  4771. working in the next few days >>>
  4772.  
  4773. please respond to ray.chi@uss.net
  4774.  
  4775. price is not an issue=20
  4776.  
  4777. ray bolouri
  4778.  
  4779. ------=_NextPart_000_003A_01C023E0.E7518620
  4780. Content-Type: text/html;
  4781.     charset="iso-8859-1"
  4782. Content-Transfer-Encoding: quoted-printable
  4783.  
  4784. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
  4785. <HTML><HEAD>
  4786. <META content=3D"text/html; charset=3Diso-8859-1" =
  4787. http-equiv=3DContent-Type>
  4788. <META content=3D"MSHTML 5.00.3207.2500" name=3DGENERATOR>
  4789. <STYLE></STYLE>
  4790. </HEAD>
  4791. <BODY bgColor=3D#ffffff>
  4792. <DIV><FONT face=3DArial size=3D2>We are looking for a consultant that =
  4793. can setup a=20
  4794. total control chassis for us to do a special functionality</FONT></DIV>
  4795. <DIV> </DIV>
  4796. <DIV><FONT face=3DArial size=3D2>we need to use this box to dial out =
  4797. using=20
  4798. PRI's.</FONT></DIV>
  4799. <DIV> </DIV>
  4800. <DIV><FONT face=3DArial size=3D2>then we need someone to create some =
  4801. link to our=20
  4802. servers and pass out the ip's to our servers ... then we need it to be =
  4803. able to=20
  4804. call another number and get more ip's and so on ..</FONT></DIV>
  4805. <DIV> </DIV>
  4806. <DIV><FONT face=3DArial size=3D2>is someone able to help us set this up =
  4807. as such ...=20
  4808. need to have this working in the next few days >>></FONT></DIV>
  4809. <DIV> </DIV>
  4810. <DIV><FONT face=3DArial size=3D2>please respond to <A=20
  4811. href=3D"mailto:ray.chi@uss.net">ray.chi@uss.net</A></FONT></DIV>
  4812. <DIV> </DIV>
  4813. <DIV><FONT face=3DArial size=3D2>price is not an issue </FONT></DIV>
  4814. <DIV> </DIV>
  4815. <DIV><FONT face=3DArial size=3D2>ray bolouri</FONT></DIV></BODY></HTML>
  4816.  
  4817. ------=_NextPart_000_003A_01C023E0.E7518620--
  4818.  
  4819.  
  4820. -
  4821.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  4822.  with "unsubscribe usr-tc" in the body of the message.
  4823.  For information on digests or retrieving files and old messages send
  4824.  "help" to the same address.  Do not use quotes in your message.
  4825.  
  4826.  
  4827. -------------------------------------------------------------------------------
  4828.  
  4829. From: "Mark Thornton" <mark@corridor.net>
  4830. Subject: (usr-tc) Message posted to interested 3Com party...
  4831. Date: 21 Sep 2000 14:27:03 -0500
  4832.  
  4833. I posted the following message to an interested party at 3Com at their
  4834. request. It will be interesting to see what the results are, especially
  4835. since this isn't bogus and I am entertaining quotes to replace the entire
  4836. mess.
  4837.  
  4838. ***
  4839.  
  4840. I have reached a decision point on the growth and maintenance of my Total
  4841. Control Hubs. Over the past six months the reports of modem connection
  4842. problems have increased significantly. I had been hoping that this wasn't
  4843. really occuring until last evening when my wife and I were discussing our
  4844. modem problems over dinner with two couples who are our best friends. They
  4845. confided that they both were having very significant connection problems,
  4846. basically indicating that it was not unusual for the connection to be
  4847. dropped within three minutes. We were not at all pleased to learn this,
  4848. particularly from them.
  4849.  
  4850. We use a combination of quads and hiperdsp's with a hiperarc and standard
  4851. nmc. The code level is one version back from what has just been released on
  4852. the website. We are considering upgrading to the hipernmc, but are very
  4853. reluctant to give up the quads as they support trash modems (more below)
  4854. better than the hiperdsp's.
  4855.  
  4856. I attribute this rise in connectivity issues to more of our customers
  4857. upgrading their computers with systems containing new, cheap modems. We can
  4858. no longer count on good USR modems being the predominate device in the
  4859. field, and the new USR winmodems are almost as bad as the no-name trash. But
  4860. that is what the customers are getting in their new systems. They are having
  4861. real problems connecting to us, but no problems connecting to our
  4862. competitors Cisco system. I also have contacts with ISP's who are dumping
  4863. 3Com to move to Patton devices and Lucent devices. The reasons vary widely,
  4864. some of them based in the support issues surrounding the 3Com systems, but
  4865. for me I am paying attention to their success in getting reliable
  4866. connections.
  4867.  
  4868. I mentioned support issues... I assumed you knew what I am talking about.
  4869. The cost of support and availability of support in terms of addressing the
  4870. problems I and other ISP's are having is overwhelming, especially when we
  4871. are still fighting the same issues after two years. It also seems that 3Com
  4872. is shutting down methods of providing service, such as the new server, that
  4873. were very effective at providing timely reponses to queries from users.
  4874. Personally, I don't mind paying for support if I think I am getting some
  4875. benefit and value out of it. But I really want existing issues fixed before
  4876. you start modifying the system to support my competitor, the cable company,
  4877. or other 'neato' features. And as for the cost of replacement contracts, I
  4878. can now purchase a complete chassis, guaranteed to work, for less than the
  4879. cost of the support you are offering. Or, I can buy individual modules at
  4880. very affordable rates and get overnight delivery without any contract
  4881. hassles (I don't want any hassles like some ISP's have apparently had). That
  4882. just doesn't make sense. We are not currently on support, though we are
  4883. looking at the software support option again to see if that addresses the
  4884. connectivity problems. If not, it is likely that we won't be needing support
  4885. on the 3Com chassis's anyway as they will be someone else's problem.
  4886.  
  4887.  
  4888. Mark Thornton
  4889. San Marcos Internet, Inc.
  4890. 512-393-5300
  4891.  
  4892.  
  4893.  
  4894.  
  4895. -
  4896.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  4897.  with "unsubscribe usr-tc" in the body of the message.
  4898.  For information on digests or retrieving files and old messages send
  4899.  "help" to the same address.  Do not use quotes in your message.
  4900.  
  4901.  
  4902. -------------------------------------------------------------------------------
  4903.  
  4904. From: Mike Andrews <mandrews@bit0.com>
  4905. Subject: RE: (usr-tc) Logging modem disconnect reasons
  4906. Date: 21 Sep 2000 17:23:23 -0400 (EDT)
  4907.  
  4908. On Wed, 20 Sep 2000, Dwayne Varey wrote:
  4909.  
  4910. > umm, this may sound like a dumb question, but how is the nmc setup to log
  4911. > radius call data.  I've been looking around in our nmc's and the only sort
  4912. > of logging that seems to be available is syslog.  Do you just set the nmc to
  4913. > syslog all of its info to a radius server?  and then have the radius server
  4914. > insert data into sql table, or did I miss something along the way?
  4915.  
  4916. Yes to both, the NMC sends it as a Radius accounting packet.  That means
  4917. for every disconnect you have two Radius accounting packets -- one from
  4918. the ARC, one from the NMC.  Matching the two records up after the fact and
  4919. making sense of it is then your problem, and putting it in a SQL database
  4920. made it a bit easier for me...
  4921.  
  4922.  
  4923. Mike Andrews (MA12) * mandrews@dcr.net * http://www.bit0.com/
  4924. VP, sysadmin, & network guy, Digital Crescent Inc, Frankfort KY
  4925. Dialup/ADSL/ISDN/T1 Internet access for Frankfort KY and surrounding counties
  4926. www.fark.com: If it's not news, it's Fark.  (Or something like that.)
  4927.  
  4928.  
  4929. -
  4930.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  4931.  with "unsubscribe usr-tc" in the body of the message.
  4932.  For information on digests or retrieving files and old messages send
  4933.  "help" to the same address.  Do not use quotes in your message.
  4934.  
  4935.  
  4936. -------------------------------------------------------------------------------
  4937.  
  4938. From: Jeremy Gault <jgault@wingnet.net>
  4939. Subject: (usr-tc) CSLIP anyone?
  4940. Date: 21 Sep 2000 23:22:31 -0400
  4941.  
  4942. Hi everyone,
  4943.  
  4944.     Just wondering, will the Total Control HiPer ARC (v4.x stuff) do
  4945. the CSLIP stuff?  All of our dialups use PPP, but a long time ago someone
  4946. told me CSLIP is better performance-wise.  Being the admin, I can give
  4947. myself a SLIP connection, and know how to set it up.  I've already been
  4948. able to make SLIP work between my Linux box and the server, now I'd just
  4949. like to try CSLIP.  Anyone know if this can be done, and how?  Thanks.
  4950.  
  4951.         Jeremy
  4952.  
  4953. -- 
  4954. Jeremy Gault <jgault@wingnet.net>  -  UNIX Systems Administrator
  4955. WingNET Internet Services (web site @ http://www.wingnet.net/ )
  4956. PGP Public Key @ http://www.wingnet.net/~jgault/pgpkey.txt
  4957. (423) 559-5465 (voice)  /  (423) 559-5444 (fax)
  4958.   "Do not meddle in the affairs of sysadmins, for they are easy to
  4959.    annoy and have the root password."
  4960.  
  4961. -
  4962.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  4963.  with "unsubscribe usr-tc" in the body of the message.
  4964.  For information on digests or retrieving files and old messages send
  4965.  "help" to the same address.  Do not use quotes in your message.
  4966.  
  4967.  
  4968. -------------------------------------------------------------------------------
  4969.  
  4970. From: "Marshall Morgan" <marshall@netdoor.com>
  4971. Subject: Re: (usr-tc) What platform are others moving to?
  4972. Date: 22 Sep 2000 03:42:32 -0500
  4973.  
  4974. Ask LaChina @ 3com - I bet she will hook you up as you are not asking for a
  4975. new key, just transferring the license key to another 3com product
  4976. (HiperNMC) and discontinuing use of the old key (NMC).
  4977.  
  4978. Try it ... if your old NMC broke and you got a replacement they would be
  4979. required to give you a new key ... under warranty for sure - and probably
  4980. out of warranty as well as the old key (paid for separately) did not break
  4981. with the nmc!
  4982.  
  4983. If that does not work I would ask to speak to a 3com attorney.
  4984.  
  4985. BTW: We have done this in the past with broken NMCs but not using the
  4986. HiperNMC issue.
  4987.  
  4988. Marshall Morgan
  4989. President
  4990.  
  4991. Internet Doorway, Inc (aka NETDOOR)
  4992. http://www.netdoor.com
  4993.  
  4994. 601.969.1434 x28 | 800.952.1570 x28 | 601.969.3629 x28 | Fax 601.969.3838
  4995. ----- Original Message -----
  4996. Sent: Wednesday, September 20, 2000 7:17 PM
  4997.  
  4998.  
  4999. > > The problem I have with this is why the hell does the hipernmc require a
  5000. > v90
  5001. > > key for the quad modems? Is 3com going to milk that cow until the udder
  5002. > > bleeds? Isn't the fact that we bought the upgrade enough?
  5003. >
  5004. > I thought it was supposed to be sufficient.  My understanding was that if
  5005. > you bought a V90 key, and at a later stage had to replace the NMC, they
  5006. > would issue a new V90 key free of charge.
  5007. >
  5008. > Maybe that only applies if they've previously conned you into a
  5009. > waste-of-money maintenance contract?
  5010. >
  5011. >
  5012. > -
  5013. >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  5014. >  with "unsubscribe usr-tc" in the body of the message.
  5015. >  For information on digests or retrieving files and old messages send
  5016. >  "help" to the same address.  Do not use quotes in your message.
  5017. >
  5018. >
  5019.  
  5020.  
  5021. -
  5022.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  5023.  with "unsubscribe usr-tc" in the body of the message.
  5024.  For information on digests or retrieving files and old messages send
  5025.  "help" to the same address.  Do not use quotes in your message.
  5026.  
  5027.  
  5028. -------------------------------------------------------------------------------
  5029.  
  5030. From: Veda Narayan <ved@iyka.com>
  5031. Subject: Re: (usr-tc) in need of expert usr access server consultant
  5032. Date: 22 Sep 2000 07:39:21 -0600
  5033.  
  5034. Quoting "Ray Bolouri (Chicago)" <ray.chi@uss.net>:
  5035.  
  5036. Where exactly is your location?  I guess I can do this but would need to know 
  5037. where you are located and exactly what you need.  
  5038. If you need to talk you can call me at 847-420-8447
  5039.  
  5040. -V
  5041.  
  5042.  
  5043. > We are looking for a consultant that can setup a total control chassis
  5044. > for us to do a special functionality
  5045. > we need to use this box to dial out using PRI's.
  5046. > then we need someone to create some link to our servers and pass out the
  5047. > ip's to our servers ... then we need it to be able to call another
  5048. > number and get more ip's and so on ..
  5049. > is someone able to help us set this up as such ... need to have this
  5050. > working in the next few days >>>
  5051. > please respond to ray.chi@uss.net
  5052. > price is not an issue 
  5053. > ray bolouri
  5054.  
  5055.  
  5056.  
  5057. ===========
  5058.  
  5059. -V
  5060.  
  5061. ==========
  5062.  
  5063. -
  5064.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  5065.  with "unsubscribe usr-tc" in the body of the message.
  5066.  For information on digests or retrieving files and old messages send
  5067.  "help" to the same address.  Do not use quotes in your message.
  5068.  
  5069.  
  5070. -------------------------------------------------------------------------------
  5071.  
  5072. From: "Steve Rivera -www.wrca.net" <sales@wrca.net>
  5073. Subject: (usr-tc) FS: USR Hiper Equipment and more
  5074. Date: 22 Sep 2000 10:25:53 -0400
  5075.  
  5076. WR Communication Associates (WRCA) have the following USR Equipment available:
  5077.  
  5078. Hiper Bundle $7995
  5079. HD Chassis w/ Single 70A power
  5080. Hiper NMC
  5081. Hiper ARC
  5082. 2x Hiper DSP...not E1 compatible
  5083.  
  5084. Indi's
  5085. Hiper DSP's $3000...not E1 compatible
  5086. Hiper ARC
  5087. Hiper NMC $1000
  5088. EdgeServer Card w/ SCSI-2 NIC $1100 (Part# 69-001160-01 R:5 / Part# 
  5089. 69-001410-00 R:2)
  5090.  
  5091. USR Total Control Bundles - Standard
  5092. Configuration at your IP address available
  5093. TC HD Bundles (HD Chassis, single 70A, nmc v90, netserver pri, 12x Quad 
  5094. Digital Modem, Dual T1/PRI) $3750
  5095. TC Classic Bundles (2059 Chassis, Dual 45A, nmc v90, netserver pri, 12x 
  5096. Quad Digital Modem, Dual T1/PRI) $3250
  5097. TC v32 Terbo Bundle (2059 Chassis, Dual 45A, 15x Quad v32Terbo Modems, all 
  5098. analog w/ nics) $500
  5099.  
  5100. QTY- Dual PRI w/ nic $600
  5101. 6- Dual T1/E1 w/ nic $550
  5102. 2- Quad Analog/Digital Modem w/ analog nic (dual card) $350
  5103. 15- Quad Analog w/ analog nic (dual card) $300
  5104. 10- NMC -Non v90 $150
  5105. 7- Netserver PRI w/ nic $650
  5106.  
  5107. Spare Chassis w/ power
  5108. 4 Total- High Density TC w/ Integrated Fan Tray (1316-05) w/ single 70A 
  5109. power $500
  5110. 2 Total- High Density TC w/ Integrated Fan Tray (1316-05) w/ Dual 70A power 
  5111. $750
  5112. 50- Classic 2059 Total Control w/ Dual 45A $175
  5113. 1- Classic TC w/ Single 35A $200
  5114. 1- Classic TC w/ Dual 45A DC power $350
  5115. 2- Rack32 $300
  5116. 2- Fan Trays $175
  5117.  
  5118. Cables:
  5119. Null Modems for NMC card $15
  5120. Octal Cable (TWH OCT 8) $25 (New in box)
  5121. Analog Cable Mini SCSI to 4-RS232 $20
  5122.  
  5123.  
  5124.  
  5125.  
  5126. Steve Rivera (VP) - w-732.833.2111 /  c-732.433.5890 24Hr 
  5127. (www.isp-networkhardware.com)
  5128. Email: srivera@wrca.net - Mobile Email: srivera711@hotmail.com
  5129.  
  5130. Worldwide Provider of Network Hardware Since 1981.
  5131.  
  5132.  
  5133.  
  5134.  
  5135.  
  5136.  
  5137.  
  5138.       
  5139.  
  5140.  
  5141.  
  5142.  
  5143.  
  5144. -
  5145.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  5146.  with "unsubscribe usr-tc" in the body of the message.
  5147.  For information on digests or retrieving files and old messages send
  5148.  "help" to the same address.  Do not use quotes in your message.
  5149.  
  5150.  
  5151. -------------------------------------------------------------------------------
  5152.  
  5153. From: Brian Becker <brian@semo.net>
  5154. Subject: RE: (usr-tc) in need of expert usr access server consultant
  5155. Date: 22 Sep 2000 10:56:53 -0500
  5156.  
  5157. Sorry about that. You later said I see you are in Missouri, so I didn't
  5158. respond. ;)
  5159.  
  5160. Poplar Bluff Internet, Inc.
  5161. 1877 North Westwood Blvd
  5162. Poplar Bluff MO 63901
  5163.  
  5164.  
  5165. Brian.
  5166.  
  5167. -----Original Message-----
  5168. [mailto:owner-usr-tc@lists.xmission.com]On Behalf Of Veda Narayan
  5169. Sent: Friday, September 22, 2000 8:39 AM
  5170. Cc: usr-tc@xmission.com
  5171.  
  5172.  
  5173. Quoting "Ray Bolouri (Chicago)" <ray.chi@uss.net>:
  5174.  
  5175. Where exactly is your location?  I guess I can do this but would need to
  5176. know 
  5177. where you are located and exactly what you need.  
  5178. If you need to talk you can call me at 847-420-8447
  5179.  
  5180. -V
  5181.  
  5182.  
  5183. > We are looking for a consultant that can setup a total control chassis
  5184. > for us to do a special functionality
  5185. > we need to use this box to dial out using PRI's.
  5186. > then we need someone to create some link to our servers and pass out
  5187. the
  5188. > ip's to our servers ... then we need it to be able to call another
  5189. > number and get more ip's and so on ..
  5190. > is someone able to help us set this up as such ... need to have this
  5191. > working in the next few days >>>
  5192. > please respond to ray.chi@uss.net
  5193. > price is not an issue 
  5194. > ray bolouri
  5195.  
  5196.  
  5197.  
  5198. ===========
  5199.  
  5200. -V
  5201.  
  5202. ==========
  5203.  
  5204. -
  5205.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  5206.  with "unsubscribe usr-tc" in the body of the message.
  5207.  For information on digests or retrieving files and old messages send
  5208.  "help" to the same address.  Do not use quotes in your message.
  5209.  
  5210. -
  5211.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  5212.  with "unsubscribe usr-tc" in the body of the message.
  5213.  For information on digests or retrieving files and old messages send
  5214.  "help" to the same address.  Do not use quotes in your message.
  5215.  
  5216.  
  5217. -------------------------------------------------------------------------------
  5218.  
  5219. From: Charles Sprickman <spork@inch.com>
  5220. Subject: Re: (usr-tc) What platform are others moving to?
  5221. Date: 22 Sep 2000 14:07:06 -0400 (EDT)
  5222.  
  5223. While LaChina is very nice, I would bet this goes against policy.  Unlike
  5224. a return/rma/repair, you end up with TWO X2/v.90-enabled NMCs for the
  5225. price of ONE.  I have a feeling this would not slip by the alert folks at
  5226. 3Com that count the beans...
  5227.  
  5228. Charles
  5229.  
  5230. On Fri, 22 Sep 2000, Marshall Morgan wrote:
  5231.  
  5232. > Ask LaChina @ 3com - I bet she will hook you up as you are not asking for a
  5233. > new key, just transferring the license key to another 3com product
  5234. > (HiperNMC) and discontinuing use of the old key (NMC).
  5235. > Try it ... if your old NMC broke and you got a replacement they would be
  5236. > required to give you a new key ... under warranty for sure - and probably
  5237. > out of warranty as well as the old key (paid for separately) did not break
  5238. > with the nmc!
  5239. > If that does not work I would ask to speak to a 3com attorney.
  5240. > BTW: We have done this in the past with broken NMCs but not using the
  5241. > HiperNMC issue.
  5242. > Marshall Morgan
  5243. > President
  5244. > Internet Doorway, Inc (aka NETDOOR)
  5245. > http://www.netdoor.com
  5246. > 601.969.1434 x28 | 800.952.1570 x28 | 601.969.3629 x28 | Fax 601.969.3838
  5247. > ----- Original Message -----
  5248. > From: "Bob Purdon" <lists@aussie.nu>
  5249. > To: <usr-tc@lists.xmission.com>
  5250. > Sent: Wednesday, September 20, 2000 7:17 PM
  5251. > Subject: Re: (usr-tc) What platform are others moving to?
  5252. > > > The problem I have with this is why the hell does the hipernmc require a
  5253. > > v90
  5254. > > > key for the quad modems? Is 3com going to milk that cow until the udder
  5255. > > > bleeds? Isn't the fact that we bought the upgrade enough?
  5256. > >
  5257. > > I thought it was supposed to be sufficient.  My understanding was that if
  5258. > > you bought a V90 key, and at a later stage had to replace the NMC, they
  5259. > > would issue a new V90 key free of charge.
  5260. > >
  5261. > > Maybe that only applies if they've previously conned you into a
  5262. > > waste-of-money maintenance contract?
  5263. > >
  5264. > >
  5265. > > -
  5266. > >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  5267. > >  with "unsubscribe usr-tc" in the body of the message.
  5268. > >  For information on digests or retrieving files and old messages send
  5269. > >  "help" to the same address.  Do not use quotes in your message.
  5270. > >
  5271. > >
  5272. > -
  5273. >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  5274. >  with "unsubscribe usr-tc" in the body of the message.
  5275. >  For information on digests or retrieving files and old messages send
  5276. >  "help" to the same address.  Do not use quotes in your message.
  5277.  
  5278.  
  5279. -
  5280.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  5281.  with "unsubscribe usr-tc" in the body of the message.
  5282.  For information on digests or retrieving files and old messages send
  5283.  "help" to the same address.  Do not use quotes in your message.
  5284.  
  5285.  
  5286. -------------------------------------------------------------------------------
  5287.  
  5288. From: "Wayne Barber" <barberw@tidewater.net>
  5289. Subject: Re: (usr-tc) What platform are others moving to?
  5290. Date: 22 Sep 2000 15:00:51 -0400
  5291.  
  5292. Which totally disregards the fact that the ability to handle X2/V.90 
  5293. is in the modem code. If you have the modem code, it means you 
  5294. had paid for the software upgrades to get them. So buying the key 
  5295. unlocks an ability you've already paid for. It's ridiculous that 3Com 
  5296. is still forcing people to buy the keys for any reason. v.90 should 
  5297. be standard equipment these days.
  5298.  
  5299. Wayne Barber
  5300. Coastal Telco Services
  5301.  
  5302. On 22 Sep 00, at 14:07, Charles Sprickman wrote:
  5303.  
  5304. > While LaChina is very nice, I would bet this goes against policy. 
  5305. > Unlike a return/rma/repair, you end up with TWO X2/v.90-enabled NMCs
  5306. > for the price of ONE.  I have a feeling this would not slip by the
  5307. > alert folks at 3Com that count the beans...
  5308. > Charles
  5309. > On Fri, 22 Sep 2000, Marshall Morgan wrote:
  5310. > > Ask LaChina @ 3com - I bet she will hook you up as you are not
  5311. > > asking for a new key, just transferring the license key to another
  5312. > > 3com product (HiperNMC) and discontinuing use of the old key (NMC).
  5313. > > 
  5314. > > Try it ... if your old NMC broke and you got a replacement they
  5315. > > would be required to give you a new key ... under warranty for sure
  5316. > > - and probably out of warranty as well as the old key (paid for
  5317. > > separately) did not break with the nmc!
  5318. > > 
  5319. > > If that does not work I would ask to speak to a 3com attorney.
  5320. > > 
  5321. > > BTW: We have done this in the past with broken NMCs but not using
  5322. > > the HiperNMC issue.
  5323. > > 
  5324. > > Marshall Morgan
  5325. > > President
  5326. > > 
  5327. > > Internet Doorway, Inc (aka NETDOOR)
  5328. > > http://www.netdoor.com
  5329. > > 
  5330. > > 601.969.1434 x28 | 800.952.1570 x28 | 601.969.3629 x28 | Fax
  5331. > > 601.969.3838 ----- Original Message ----- From: "Bob Purdon"
  5332. > > <lists@aussie.nu> To: <usr-tc@lists.xmission.com> Sent: Wednesday,
  5333. > > September 20, 2000 7:17 PM Subject: Re: (usr-tc) What platform are
  5334. > > others moving to?
  5335. > > 
  5336. > > 
  5337. > > > > The problem I have with this is why the hell does the hipernmc
  5338. > > > > require a
  5339. > > > v90
  5340. > > > > key for the quad modems? Is 3com going to milk that cow until
  5341. > > > > the udder bleeds? Isn't the fact that we bought the upgrade
  5342. > > > > enough?
  5343. > > >
  5344. > > > I thought it was supposed to be sufficient.  My understanding was
  5345. > > > that if you bought a V90 key, and at a later stage had to replace
  5346. > > > the NMC, they would issue a new V90 key free of charge.
  5347. > > >
  5348. > > > Maybe that only applies if they've previously conned you into a
  5349. > > > waste-of-money maintenance contract?
  5350. > > >
  5351. > > >
  5352. > > > -
  5353. > > >  To unsubscribe to usr-tc, send an email to
  5354. > > >  "majordomo@xmission.com" with "unsubscribe usr-tc" in the body of
  5355. > > >  the message. For information on digests or retrieving files and
  5356. > > >  old messages send "help" to the same address.  Do not use quotes
  5357. > > >  in your message.
  5358. > > >
  5359. > > >
  5360. > > 
  5361. > > 
  5362. > > -
  5363. > >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  5364. > >  with "unsubscribe usr-tc" in the body of the message. For
  5365. > >  information on digests or retrieving files and old messages send
  5366. > >  "help" to the same address.  Do not use quotes in your message.
  5367. > > 
  5368. > -
  5369. >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  5370. >  with "unsubscribe usr-tc" in the body of the message. For information
  5371. >  on digests or retrieving files and old messages send "help" to the
  5372. >  same address.  Do not use quotes in your message.
  5373.  
  5374.  
  5375.  
  5376. -
  5377.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  5378.  with "unsubscribe usr-tc" in the body of the message.
  5379.  For information on digests or retrieving files and old messages send
  5380.  "help" to the same address.  Do not use quotes in your message.
  5381.  
  5382.  
  5383. -------------------------------------------------------------------------------
  5384.  
  5385. From: Brian <signal@shreve.net>
  5386. Subject: Re: (usr-tc) What platform are others moving to?
  5387. Date: 22 Sep 2000 19:22:15 -0500 (CDT)
  5388.  
  5389. On Thu, 21 Sep 2000, Mark Thornton wrote:
  5390.  
  5391. > > if someone could elaborate a little on the list about what cisco has been
  5392. > > willing to do on 3com trade-in's I would be interested.  What is the box
  5393. > > to move to? as5400?
  5394. > According to Cisco's site they are offering $125 per port for competitive
  5395. > upgrades. The 5400 looks sweet to me.
  5396.  
  5397. hmm, so if you had 1200 ports you would get $150,000........how many ports
  5398. of AS5400 can that buy?  Or actually, what does 1200 ports of AS5400 cost?
  5399.  
  5400. Brian
  5401.  
  5402.  
  5403. > Mark Thornton
  5404. > San Marcos Internet, Inc.
  5405. > 512-393-5300
  5406. > -
  5407. >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  5408. >  with "unsubscribe usr-tc" in the body of the message.
  5409. >  For information on digests or retrieving files and old messages send
  5410. >  "help" to the same address.  Do not use quotes in your message.
  5411.  
  5412. Brian Feeny, CCNA, CCDA       signal@shreve.net   
  5413. Network Administrator          
  5414. ShreveNet Inc. (ASN 11881)          
  5415.  
  5416.  
  5417. -
  5418.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  5419.  with "unsubscribe usr-tc" in the body of the message.
  5420.  For information on digests or retrieving files and old messages send
  5421.  "help" to the same address.  Do not use quotes in your message.
  5422.  
  5423.  
  5424. -------------------------------------------------------------------------------
  5425.  
  5426. From: Brian <signal@shreve.net>
  5427. Subject: (usr-tc) "show duplex"?
  5428. Date: 22 Sep 2000 19:20:45 -0500 (CDT)
  5429.  
  5430.  
  5431. Does anyone know of a way from the CLI on an ARC to show the duplex
  5432. setting of an ethernet interface?  A way to force it?
  5433.  
  5434. Brian
  5435.  
  5436.  
  5437. Brian Feeny, CCNA, CCDA       signal@shreve.net   
  5438. Network Administrator          
  5439. ShreveNet Inc. (ASN 11881)          
  5440.  
  5441.  
  5442. -
  5443.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  5444.  with "unsubscribe usr-tc" in the body of the message.
  5445.  For information on digests or retrieving files and old messages send
  5446.  "help" to the same address.  Do not use quotes in your message.
  5447.  
  5448.  
  5449. -------------------------------------------------------------------------------
  5450.  
  5451. From: "Andrey Zimin" <horgi@mtu.ru>
  5452. Subject: Re: (usr-tc) "show duplex"?
  5453. Date: 23 Sep 2000 05:03:26 +0400
  5454.  
  5455. > Does anyone know of a way from the CLI on an ARC to show the duplex
  5456. > setting of an ethernet interface?  A way to force it?
  5457. First's easy - "sh int eth:1 s"
  5458. second - noway... :((
  5459.  
  5460.  
  5461. Good luck !
  5462. ======================
  5463.  Andrey Zimin | AVZ7-RIPE
  5464.            MTU-Intel ISP
  5465.         Moscow, Russia
  5466. ======================
  5467.  
  5468.  
  5469. -
  5470.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  5471.  with "unsubscribe usr-tc" in the body of the message.
  5472.  For information on digests or retrieving files and old messages send
  5473.  "help" to the same address.  Do not use quotes in your message.
  5474.  
  5475.  
  5476. -------------------------------------------------------------------------------
  5477.  
  5478. From: "Andrey Zimin" <horgi@mtu.ru>
  5479. Subject: Re: (usr-tc) What platform are others moving to?
  5480. Date: 23 Sep 2000 05:26:00 +0400
  5481.  
  5482. > > > if someone could elaborate a little on the list about what cisco has been
  5483. > > > willing to do on 3com trade-in's I would be interested.  What is the box
  5484. > > > to move to? as5400?
  5485. > > According to Cisco's site they are offering $125 per port for competitive
  5486. > > upgrades. The 5400 looks sweet to me.
  5487. > hmm, so if you had 1200 ports you would get $150,000........how many ports
  5488. > of AS5400 can that buy?  Or actually, what does 1200 ports of AS5400 cost?
  5489. as5400 - newer, modern hardware. As prompts my expirence - it must have many-many problems,
  5490. in hardware, portware and IOS. May be after 1-1.5 year new platform to be a usefull... 
  5491. (or not usefull - look at as5800, IMHO)
  5492.  
  5493. as5300 with MICA still have some problems. Not so much as HiPer, but still have... ;)
  5494.  
  5495. Now my best choice of NAS - Cisco AS5300, but USR HiPer still have more good worked
  5496. modem in HiPer-DSP and has some user choice... ;)
  5497. So, we have two modem-pool - one on HiPer-s and one on as5300-s.
  5498.  
  5499.  
  5500. Good luck !
  5501. ======================
  5502.  Andrey Zimin | AVZ7-RIPE
  5503.            MTU-Intel ISP
  5504.         Moscow, Russia
  5505. ======================
  5506.  
  5507.  
  5508. -
  5509.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  5510.  with "unsubscribe usr-tc" in the body of the message.
  5511.  For information on digests or retrieving files and old messages send
  5512.  "help" to the same address.  Do not use quotes in your message.
  5513.  
  5514.  
  5515. -------------------------------------------------------------------------------
  5516.  
  5517. From: Jeff Mcadams <jeffm@iglou.com>
  5518. Subject: Re: (usr-tc) "show duplex"?
  5519. Date: 22 Sep 2000 21:31:39 -0400
  5520.  
  5521. Also sprach Brian
  5522. >Does anyone know of a way from the CLI on an ARC to show the duplex
  5523. >setting of an ethernet interface?  
  5524.  
  5525. Directly?  No.  show interface eth:1 though gives you a Speed:
  5526. parameter.  If it starts with a 1, its half-duplex, if it starts with a
  5527. 2, its full duplex.  :)
  5528.  
  5529. >A way to force it?
  5530.  
  5531. No way to force it that I'm aware of...though I've never experienced any
  5532. trouble on the Arcs with auto-negotiation of it.
  5533. -- 
  5534. Jeff McAdams                            Email: jeffm@iglou.com
  5535. Head Network Administrator              Voice: (502) 966-3848
  5536. IgLou Internet Services                        (800) 436-4456
  5537.  
  5538. -
  5539.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  5540.  with "unsubscribe usr-tc" in the body of the message.
  5541.  For information on digests or retrieving files and old messages send
  5542.  "help" to the same address.  Do not use quotes in your message.
  5543.  
  5544.  
  5545. -------------------------------------------------------------------------------
  5546.  
  5547. From: Brian <signal@shreve.net>
  5548. Subject: Re: (usr-tc) "show duplex"?
  5549. Date: 23 Sep 2000 00:44:38 -0500 (CDT)
  5550.  
  5551.  
  5552. I don't see duplex:
  5553.  
  5554. HiPer>> sh int eth:1 s
  5555.  
  5556. INTERFACE eth:1 SETTINGS
  5557. Description:                              Ethernet Driver
  5558. Type:                                     ETHERNET-CSMACD 
  5559. Speed:                                    209715200
  5560. High Speed:                               0
  5561. Administrative Status:                    Up      
  5562. Operational Status:                       Up      
  5563. Link Up/Down Traps:                       ENABLED       
  5564. Promiscuous Mode:                         FALSE   
  5565. Connector Present:                        TRUE    
  5566. Filter Access:                            OFF 
  5567. Last Change:                              6d 17:01:50  
  5568. Input Filter:                             
  5569. Output Filter:                            
  5570. Physical Address:                         00:c0:49:0d:5f:c7 
  5571.  
  5572.  
  5573. On Sat, 23 Sep 2000, Andrey Zimin wrote:
  5574.  
  5575. > > Does anyone know of a way from the CLI on an ARC to show the duplex
  5576. > > setting of an ethernet interface?  A way to force it?
  5577. > First's easy - "sh int eth:1 s"
  5578. > second - noway... :((
  5579. > Good luck !
  5580. > ======================
  5581. >  Andrey Zimin | AVZ7-RIPE
  5582. >            MTU-Intel ISP
  5583. >         Moscow, Russia
  5584. > ======================
  5585. > -
  5586. >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  5587. >  with "unsubscribe usr-tc" in the body of the message.
  5588. >  For information on digests or retrieving files and old messages send
  5589. >  "help" to the same address.  Do not use quotes in your message.
  5590.  
  5591. Brian Feeny, CCNA, CCDA       signal@shreve.net   
  5592. Network Administrator          
  5593. ShreveNet Inc. (ASN 11881)          
  5594.  
  5595.  
  5596. -
  5597.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  5598.  with "unsubscribe usr-tc" in the body of the message.
  5599.  For information on digests or retrieving files and old messages send
  5600.  "help" to the same address.  Do not use quotes in your message.
  5601.  
  5602.  
  5603. -------------------------------------------------------------------------------
  5604.  
  5605. From: Brian <signal@shreve.net>
  5606. Subject: Re: (usr-tc) "show duplex"?
  5607. Date: 23 Sep 2000 00:46:45 -0500 (CDT)
  5608.  
  5609. On Fri, 22 Sep 2000, Jeff Mcadams wrote:
  5610.  
  5611. > Also sprach Brian
  5612. > >Does anyone know of a way from the CLI on an ARC to show the duplex
  5613. > >setting of an ethernet interface?  
  5614. > Directly?  No.  show interface eth:1 though gives you a Speed:
  5615. > parameter.  If it starts with a 1, its half-duplex, if it starts with a
  5616. > 2, its full duplex.  :)
  5617.  
  5618. so in other words, with a few lines of bug free code, and 30 minutes of an
  5619. engineers time.......they could have just put duplex in there as an actual
  5620. parameter with "FDX" or "HDX" but hey.........
  5621.  
  5622. > >A way to force it?
  5623. > No way to force it that I'm aware of...though I've never experienced any
  5624. > trouble on the Arcs with auto-negotiation of it.
  5625.  
  5626. thanks
  5627.  
  5628. brian
  5629.  
  5630. > -- 
  5631. > Jeff McAdams                            Email: jeffm@iglou.com
  5632. > Head Network Administrator              Voice: (502) 966-3848
  5633. > IgLou Internet Services                        (800) 436-4456
  5634. > -
  5635. >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  5636. >  with "unsubscribe usr-tc" in the body of the message.
  5637. >  For information on digests or retrieving files and old messages send
  5638. >  "help" to the same address.  Do not use quotes in your message.
  5639.  
  5640. Brian Feeny, CCNA, CCDA       signal@shreve.net   
  5641. Network Administrator          
  5642. ShreveNet Inc. (ASN 11881)          
  5643.  
  5644.  
  5645. -
  5646.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  5647.  with "unsubscribe usr-tc" in the body of the message.
  5648.  For information on digests or retrieving files and old messages send
  5649.  "help" to the same address.  Do not use quotes in your message.
  5650.  
  5651.  
  5652. -------------------------------------------------------------------------------
  5653.  
  5654. From: "Andrey Zimin" <horgi@mtu.ru>
  5655. Subject: Re: (usr-tc) "show duplex"?
  5656. Date: 24 Sep 2000 01:13:16 +0400
  5657.  
  5658. Look at "Speed" - you have 100Mbit/s full-duplex = 200Mbit/s total. ;)
  5659.  
  5660.  
  5661. Good luck !
  5662. ======================
  5663.  Andrey Zimin | AVZ7-RIPE
  5664.            MTU-Intel ISP
  5665.         Moscow, Russia
  5666. ======================
  5667.  
  5668. ----- Original Message ----- 
  5669. Sent: 23 ???????? 2000 ?. 09:44
  5670.  
  5671.  
  5672. > I don't see duplex:
  5673. > HiPer>> sh int eth:1 s
  5674. > INTERFACE eth:1 SETTINGS
  5675. > Description:                              Ethernet Driver
  5676. > Type:                                     ETHERNET-CSMACD 
  5677. > Speed:                                    209715200
  5678. > High Speed:                               0
  5679. > Administrative Status:                    Up      
  5680. > Operational Status:                       Up      
  5681. > Link Up/Down Traps:                       ENABLED       
  5682. > Promiscuous Mode:                         FALSE   
  5683. > Connector Present:                        TRUE    
  5684. > Filter Access:                            OFF 
  5685. > Last Change:                              6d 17:01:50  
  5686. > Input Filter:                             
  5687. > Output Filter:                            
  5688. > Physical Address:                         00:c0:49:0d:5f:c7 
  5689. > On Sat, 23 Sep 2000, Andrey Zimin wrote:
  5690. > > > Does anyone know of a way from the CLI on an ARC to show the duplex
  5691. > > > setting of an ethernet interface?  A way to force it?
  5692. > > First's easy - "sh int eth:1 s"
  5693. > > second - noway... :((
  5694. > > 
  5695. > > 
  5696. > > Good luck !
  5697. > > ======================
  5698. > >  Andrey Zimin | AVZ7-RIPE
  5699. > >            MTU-Intel ISP
  5700. > >         Moscow, Russia
  5701. > > ======================
  5702. > > 
  5703. > > 
  5704. > > -
  5705. > >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  5706. > >  with "unsubscribe usr-tc" in the body of the message.
  5707. > >  For information on digests or retrieving files and old messages send
  5708. > >  "help" to the same address.  Do not use quotes in your message.
  5709. > > 
  5710. > -----------------------------------------------
  5711. > Brian Feeny, CCNA, CCDA       signal@shreve.net   
  5712. > Network Administrator       
  5713. > ShreveNet Inc. (ASN 11881)       
  5714. > -
  5715. >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  5716. >  with "unsubscribe usr-tc" in the body of the message.
  5717. >  For information on digests or retrieving files and old messages send
  5718. >  "help" to the same address.  Do not use quotes in your message.
  5719.  
  5720.  
  5721. -
  5722.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  5723.  with "unsubscribe usr-tc" in the body of the message.
  5724.  For information on digests or retrieving files and old messages send
  5725.  "help" to the same address.  Do not use quotes in your message.
  5726.  
  5727.  
  5728. -------------------------------------------------------------------------------
  5729.  
  5730. From: "Mark Thornton" <mark@corridor.net>
  5731. Subject: (usr-tc) Upgrade problems!
  5732. Date: 24 Sep 2000 00:30:16 -0500
  5733.  
  5734. I have just completed an upgrade of my TCH systems to the latest code and
  5735. have mixed success. In general I am getting much better connection
  5736. stability, at least according to initial reports on most modems. Several
  5737. clients who had been experiencing significant difficulty had very stable
  5738. connections. All was good in the server room, or so I thought.
  5739.  
  5740. The problem is I have a hiperdsp that is not showing as many connected calls
  5741. as other units. In the past the call volume was fairly well spread across
  5742. the modems after a couple of hours ( they start up sequentially, then go to
  5743. a psuedorandom hunt). The affected hiperdsp is configured identically to
  5744. others, and the code levels are all the same. When I look at the connection
  5745. stats the hiperdsp is showing a similar number of connections as other
  5746. units, but 0 or near 0 total bytes transfered.
  5747.  
  5748. What am I missing? Where should I look to resolve this?
  5749.  
  5750. Thanks for your help,
  5751.  
  5752. Mark Thornton
  5753. San Marcos Internet, Inc.
  5754. 512-393-5300
  5755.  
  5756.  
  5757.  
  5758.  
  5759. -
  5760.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  5761.  with "unsubscribe usr-tc" in the body of the message.
  5762.  For information on digests or retrieving files and old messages send
  5763.  "help" to the same address.  Do not use quotes in your message.
  5764.  
  5765.  
  5766. -------------------------------------------------------------------------------
  5767.  
  5768. From: Dwayne Varey <dwayne.varey@wn.com.au>
  5769. Subject: (usr-tc) ppp compression
  5770. Date: 25 Sep 2000 15:44:57 +0800
  5771.  
  5772. A couple of our customers are using bsd boxes to connect to us via ppp.
  5773. They are complaining that since we've changed to 3com equipment their
  5774. connections are slower, because the hiper-arc will not negoiate compression
  5775. control protocol with them.  I have looked into this and it seems that the
  5776. hiper-arc only knows 3 types of compression: Ascend, Stack and Microsoft.
  5777. Is this true, or is there a hidden command within the hiper-arc to enable
  5778. more of the ppp rfc compression protocols?
  5779.  
  5780.  ________________________________________________
  5781.  Dwayne Varey
  5782.  Systems Administrator
  5783.  WestNet - WA's Statewide Internet Provider
  5784.  Phone: 92182600 - Fax: 92182666
  5785.  http://www.wn.com.au
  5786.  _________________________________________________
  5787.  
  5788.  
  5789. -
  5790.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  5791.  with "unsubscribe usr-tc" in the body of the message.
  5792.  For information on digests or retrieving files and old messages send
  5793.  "help" to the same address.  Do not use quotes in your message.
  5794.  
  5795.  
  5796. -------------------------------------------------------------------------------
  5797.  
  5798. From: "Bob Purdon" <lists@aussie.nu>
  5799. Subject: (usr-tc) URL
  5800. Date: 25 Sep 2000 22:15:31 +1000
  5801.  
  5802.  
  5803. Anyone else appreciate this URL?
  5804.  
  5805. http://www.lansystems.com.au/products/transit_search.asp?Search=True&hiddVen
  5806. dor=3Com$$$Total$$$Control&method=BPC&Vendor_ID=25
  5807.  
  5808. In particular the '3Com$$$Total$$$Control' bit :-)
  5809.  
  5810. ---
  5811. Bob Purdon
  5812.  
  5813.  
  5814. -
  5815.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  5816.  with "unsubscribe usr-tc" in the body of the message.
  5817.  For information on digests or retrieving files and old messages send
  5818.  "help" to the same address.  Do not use quotes in your message.
  5819.  
  5820.  
  5821. -------------------------------------------------------------------------------
  5822.  
  5823. From: Jeff Mcadams <jeffm@iglou.com>
  5824. Subject: Re: (usr-tc) ppp compression
  5825. Date: 25 Sep 2000 07:51:10 -0400
  5826.  
  5827. Also sprach Dwayne Varey
  5828. >A couple of our customers are using bsd boxes to connect to us via ppp.
  5829. >They are complaining that since we've changed to 3com equipment their
  5830. >connections are slower, because the hiper-arc will not negoiate
  5831. >compression control protocol with them.  I have looked into this and it
  5832. >seems that the hiper-arc only knows 3 types of compression: Ascend,
  5833. >Stack and Microsoft.  Is this true, or is there a hidden command within
  5834. >the hiper-arc to enable more of the ppp rfc compression protocols?
  5835.  
  5836. No, those are the only three compression protocols that the Arc (and the
  5837. NETServer, if anyone is still running those) will support.
  5838. -- 
  5839. Jeff McAdams                            Email: jeffm@iglou.com
  5840. Head Network Administrator              Voice: (502) 966-3848
  5841. IgLou Internet Services                        (800) 436-4456
  5842.  
  5843. -
  5844.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  5845.  with "unsubscribe usr-tc" in the body of the message.
  5846.  For information on digests or retrieving files and old messages send
  5847.  "help" to the same address.  Do not use quotes in your message.
  5848.  
  5849.  
  5850. -------------------------------------------------------------------------------
  5851.  
  5852. From: Charles Sprickman <spork@inch.com>
  5853. Subject: Re: (usr-tc) ppp compression
  5854. Date: 25 Sep 2000 12:24:10 -0400 (EDT)
  5855.  
  5856. I don't know what flavor of BSD these folks have, but the
  5857. "user-ppp" supplied with FreeBSD (and I believe OpenBSD as well, maybe
  5858. even Net) support "Predictor-1" compression which I believe is what Ascend
  5859. uses (RFC 1978).  It would be downright silly if 3Com didn't support
  5860. this.  There's even example code in the RFC.
  5861.  
  5862. Charles
  5863.  
  5864. | Charles Sprickman                  | Internet Channel
  5865. | INCH System Administration Team    | (212)243-5200 
  5866. | spork@inch.com                     | access@inch.com
  5867.  
  5868. On Mon, 25 Sep 2000, Dwayne Varey wrote:
  5869.  
  5870. > A couple of our customers are using bsd boxes to connect to us via ppp.
  5871. > They are complaining that since we've changed to 3com equipment their
  5872. > connections are slower, because the hiper-arc will not negoiate compression
  5873. > control protocol with them.  I have looked into this and it seems that the
  5874. > hiper-arc only knows 3 types of compression: Ascend, Stack and Microsoft.
  5875. > Is this true, or is there a hidden command within the hiper-arc to enable
  5876. > more of the ppp rfc compression protocols?
  5877. >  ________________________________________________
  5878. >  Dwayne Varey
  5879. >  Systems Administrator
  5880. >  WestNet - WA's Statewide Internet Provider
  5881. >  Phone: 92182600 - Fax: 92182666
  5882. >  http://www.wn.com.au
  5883. >  _________________________________________________
  5884. >  
  5885. > -
  5886. >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  5887. >  with "unsubscribe usr-tc" in the body of the message.
  5888. >  For information on digests or retrieving files and old messages send
  5889. >  "help" to the same address.  Do not use quotes in your message.
  5890.  
  5891.  
  5892. -
  5893.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  5894.  with "unsubscribe usr-tc" in the body of the message.
  5895.  For information on digests or retrieving files and old messages send
  5896.  "help" to the same address.  Do not use quotes in your message.
  5897.  
  5898.  
  5899. -------------------------------------------------------------------------------
  5900.  
  5901. From: "G. Owens" <gowens@magnolia-net.com>
  5902. Subject: (usr-tc) Weird Log files
  5903. Date: 26 Sep 2000 23:20:11 -0500
  5904.  
  5905. Hey All. Can someone look and tell me what might be going on here. This is a
  5906. copy of my radius log file from one of my remote pops. It just started this
  5907. yesterday and we can't seem to stop it. Everything looks right on the ARC
  5908. and in radius. Have even restarted the arc twice. Also the radius detail
  5909. file from this box keeps showing this unauthinicated user stop over and over
  5910. and I am not sure what it means. What is odd is this chassis is in a remote
  5911. area and we are only using the slots 1 &2 on it with DSP cards. Everything
  5912. is running the next to newest code. Not the one that reboots the arc all the
  5913. time...... Thanks for any help in advance. BTW we are running Cistron radius
  5914. Greg Owens
  5915. Magnolia Internet Services
  5916. South Arkansas' Premier Internet Provider
  5917. http://www.magnolia-net.com
  5918.  
  5919. Tue Sep 26 23:07:18 2000: Error: Accounting: logout: entry for NAS tc3arc1
  5920. port 6 has wrong ID
  5921. Tue Sep 26 23:07:19 2000: Error: Accounting: logout: entry for NAS tc3arc1
  5922. port 3 has wrong ID
  5923. Tue Sep 26 23:07:20 2000: Error: Accounting: logout: entry for NAS tc3arc1
  5924. port 2 has wrong ID
  5925. Tue Sep 26 23:07:25 2000: Error: Accounting: logout: entry for NAS tc3arc1
  5926. port 2 has wrong ID
  5927. Tue Sep 26 23:07:37 2000: Error: Accounting: logout: entry for NAS tc3arc1
  5928. port 4 has wrong ID
  5929. Tue Sep 26 23:07:38 2000: Info: NAS tc3arc1 restarted (Accounting-On packet
  5930. seen)
  5931. Tue Sep 26 23:07:48 2000: Error: Accounting: logout: entry for NAS tc3arc1
  5932. port 6 has wrong ID
  5933. Tue Sep 26 23:07:52 2000: Error: Accounting: logout: entry for NAS tc3arc1
  5934. port 3 has wrong ID
  5935. Tue Sep 26 23:07:55 2000: Error: Accounting: logout: entry for NAS tc3arc1
  5936. port 8 has wrong ID
  5937. Tue Sep 26 23:07:55 2000: Error: Accounting: logout: entry for NAS tc3arc1
  5938. port 2 has wrong ID
  5939. Tue Sep 26 23:08:01 2000: Error: Accounting: logout: entry for NAS tc3arc1
  5940. port 3 has wrong ID
  5941. Tue Sep 26 23:08:01 2000: Auth: Login OK: [marlar] (from nas tc1arc2/S536)
  5942. Tue Sep 26 23:08:02 2000: Error: Accounting: logout: entry for NAS tc3arc1
  5943. port 3 has wrong ID
  5944. Tue Sep 26 23:08:04 2000: Error: Accounting: logout: entry for NAS tc3arc1
  5945. port 3 has wrong ID
  5946. Tue Sep 26 23:08:05 2000: Error: Accounting: logout: entry for NAS tc3arc1
  5947. port 2 has wrong ID
  5948. Tue Sep 26 23:08:05 2000: Error: Accounting: logout: entry for NAS tc3arc1
  5949. port 3 has wrong ID
  5950. Tue Sep 26 23:08:05 2000: Error: Accounting: logout: entry for NAS tc3arc1
  5951. port 2 has wrong ID
  5952. Tue Sep 26 23:08:06 2000: Error: Accounting: logout: entry for NAS tc3arc1
  5953. port 3 has wrong ID
  5954.  
  5955. Tue Sep 26 23:13:31 2000
  5956.         User-Name = "unauthenticated"
  5957.         NAS-IP-Address = 63.89.132.3
  5958.         Acct-Status-Type = Stop
  5959.         Acct-Session-Id = "393591"
  5960.         Acct-Delay-Time = 1440
  5961.         Service-Type = Framed-User
  5962.         NAS-Port-Type = Async
  5963.         NAS-Port-Id = 7
  5964.         USR-Interface-Index = 1263
  5965.         USR-Chassis-Call-Slot = 1
  5966.         USR-Chassis-Call-Span = 1
  5967.         USR-Chassis-Call-Channel = 7
  5968.         USR-Unauthenticated-Time = 40
  5969.         USR-Modem-Training-Time = 20
  5970.         Calling-Station-Id = ""
  5971.         Called-Station-Id = ""
  5972.         USR-Modulation-Type = v90Digital
  5973.         USR-Simplified-MNP-Levels = ccittV42
  5974.         USR-Simplified-V42bis-Usage = ccittV42bis
  5975.         USR-Connect-Speed = 41333_BPS
  5976.         Framed-Protocol = PPP
  5977.         Framed-IP-Address = 0.0.0.0
  5978.         Acct-Session-Time = 60
  5979.         Acct-Terminate-Cause = User-Request
  5980.         USR-HARC-Disconnect-Code = User-Req-Drop
  5981.         Acct-Input-Octets = 406
  5982.         Acct-Output-Octets = 170
  5983.         Acct-Input-Packets = 17
  5984.         Acct-Output-Packets = 8
  5985.         USR-Call-Arrival-Time = 149550318
  5986.         USR-Call-End-Time = 149550378
  5987.         Timestamp = 970028011
  5988.         Request-Authenticator = Verified
  5989.  
  5990.  
  5991.  
  5992.  
  5993.  
  5994. -
  5995.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  5996.  with "unsubscribe usr-tc" in the body of the message.
  5997.  For information on digests or retrieving files and old messages send
  5998.  "help" to the same address.  Do not use quotes in your message.
  5999.  
  6000.  
  6001. -------------------------------------------------------------------------------
  6002.  
  6003. From: Charles Kimes <Administrator@eagnet.com>
  6004. Subject: (usr-tc) ARC call termination delay
  6005. Date: 27 Sep 2000 09:34:47 -0400
  6006.  
  6007. Hello to the List:
  6008.  
  6009. I have just recently noticed this on our ARC/DSP's:
  6010.  
  6011. For any call terminated on any DSP modem on our ARC controlled chassis, 
  6012. there is a delay before the hardware frees up the DSO.  This is true 
  6013. whether the call termination is by user hang-up, idle timeout, session 
  6014. timeout, etc.  The telco tell us the DSO stays seized for approximately 2 
  6015. minutes before it is freed up.  I see a delay in the Radius stop packet by 
  6016. about 30 seconds.
  6017.  
  6018. Any idea or setting I need to look for, or is it the nature of the 
  6019. beast?  Many thanks in advance.
  6020.  
  6021.  
  6022.  
  6023.  
  6024.  
  6025.  
  6026.  
  6027. Charles Kimes, Administrator
  6028. EagleNet DataCommunications, Inc.
  6029. St. Marys, GA
  6030. Administrator@eagnet.com
  6031.  
  6032.  
  6033. -
  6034.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  6035.  with "unsubscribe usr-tc" in the body of the message.
  6036.  For information on digests or retrieving files and old messages send
  6037.  "help" to the same address.  Do not use quotes in your message.
  6038.  
  6039.  
  6040. -------------------------------------------------------------------------------
  6041.  
  6042. From: "Mark Thornton" <mark@corridor.net>
  6043. Subject: (usr-tc) PRI channels "local out of service"
  6044. Date: 27 Sep 2000 08:52:23 -0500
  6045.  
  6046. After upgrading a hiperdsp to 2.1.9 I have found that two channels on one of
  6047. my pri's are now stuck in "local out of service" with a service state of 8,
  6048. whatever that is. I never experienced this type of problem on my pri
  6049. circuits before and I can't find how to clear the problem. I would greatly
  6050. appreciate some suggestions on what to do.
  6051.  
  6052. Mark Thornton
  6053. San Marcos Internet, Inc.
  6054. 512-393-5300
  6055.  
  6056.  
  6057.  
  6058.  
  6059. -
  6060.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  6061.  with "unsubscribe usr-tc" in the body of the message.
  6062.  For information on digests or retrieving files and old messages send
  6063.  "help" to the same address.  Do not use quotes in your message.
  6064.  
  6065.  
  6066. -------------------------------------------------------------------------------
  6067.  
  6068. From: Jeff <jeff@apex.net>
  6069. Subject: (usr-tc) radius "Class" attribute
  6070. Date: 27 Sep 2000 13:45:17 -0500
  6071.  
  6072.  
  6073. Does anyone know if the "Class" attribute is supported on the hiperARC
  6074. or netserver?  Here's the description from RFC2865:
  6075.  
  6076. 5.25.  Class
  6077.  
  6078.    Description
  6079.  
  6080.       This Attribute is available to be sent by the server to the client
  6081.       in an Access-Accept and SHOULD be sent unmodified by the client to
  6082.       the accounting server as part of the Accounting-Request packet if
  6083.       accounting is supported.  The client MUST NOT interpret the
  6084.       attribute locally.
  6085.  
  6086.  
  6087. PS - I tried searching the knowledgebase and the list for this answer but
  6088. couldn't find it.  Sorry if it's obvious and I missed it.
  6089.  
  6090.  
  6091. --
  6092.   Jeff Carneal - Sys Admin - Apex Internet          
  6093.   jeff@apex.net http://www.apex.net (270) 442-5363
  6094.  
  6095.   The opinions expressed above aren't really mine.
  6096.   They belong to someone else who also refuses to 
  6097.   take responsibility for them. 
  6098.  
  6099.  
  6100. -
  6101.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  6102.  with "unsubscribe usr-tc" in the body of the message.
  6103.  For information on digests or retrieving files and old messages send
  6104.  "help" to the same address.  Do not use quotes in your message.
  6105.  
  6106.  
  6107. -------------------------------------------------------------------------------
  6108.  
  6109. From: "Randy Cosby" <dcosby@infowest.com>
  6110. Subject: RE: (usr-tc) radius "Class" attribute
  6111. Date: 27 Sep 2000 13:25:23 -0600
  6112.  
  6113. Yes, it is supported in both.  It's quite handy for accounting purposes.
  6114. Our radius might put something like "FILTEREDUSER" in the class, which gets
  6115. passed back to our accounting and session databases.
  6116.  
  6117. Randy
  6118.  
  6119.  
  6120. > -----Original Message-----
  6121. > From: owner-usr-tc@lists.xmission.com
  6122. > [mailto:owner-usr-tc@lists.xmission.com]On Behalf Of Jeff
  6123. > Sent: Wednesday, September 27, 2000 12:45 PM
  6124. > To: usr-tc@lists.xmission.com
  6125. > Subject: (usr-tc) radius "Class" attribute
  6126. >
  6127. >
  6128. >
  6129. > Does anyone know if the "Class" attribute is supported on the hiperARC
  6130. > or netserver?  Here's the description from RFC2865:
  6131. >
  6132. > 5.25.  Class
  6133. >
  6134. >    Description
  6135. >
  6136. >       This Attribute is available to be sent by the server to the client
  6137. >       in an Access-Accept and SHOULD be sent unmodified by the client to
  6138. >       the accounting server as part of the Accounting-Request packet if
  6139. >       accounting is supported.  The client MUST NOT interpret the
  6140. >       attribute locally.
  6141. >
  6142. >
  6143. > PS - I tried searching the knowledgebase and the list for this answer but
  6144. > couldn't find it.  Sorry if it's obvious and I missed it.
  6145. >
  6146. >
  6147. > --
  6148. >   Jeff Carneal - Sys Admin - Apex Internet
  6149. >   jeff@apex.net http://www.apex.net (270) 442-5363
  6150. >
  6151. >   The opinions expressed above aren't really mine.
  6152. >   They belong to someone else who also refuses to
  6153. >   take responsibility for them.
  6154. >
  6155. >
  6156. > -
  6157. >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  6158. >  with "unsubscribe usr-tc" in the body of the message.
  6159. >  For information on digests or retrieving files and old messages send
  6160. >  "help" to the same address.  Do not use quotes in your message.
  6161. >
  6162.  
  6163.  
  6164. -
  6165.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  6166.  with "unsubscribe usr-tc" in the body of the message.
  6167.  For information on digests or retrieving files and old messages send
  6168.  "help" to the same address.  Do not use quotes in your message.
  6169.  
  6170.  
  6171. -------------------------------------------------------------------------------
  6172.  
  6173. From: "Jason" <jaslist@iland.net>
  6174. Subject: Re: (usr-tc) PRI channels "local out of service"
  6175. Date: 27 Sep 2000 16:38:26 -0500
  6176.  
  6177. Have you tried to un-busy, or reset the modems via the TCM software?
  6178.  
  6179.  
  6180. ***************
  6181. Jason Watkins
  6182. I-Land NOC
  6183. jwatkins@iland.net
  6184. ***************
  6185. ----- Original Message -----
  6186. Sent: Wednesday, September 27, 2000 8:52 AM
  6187.  
  6188.  
  6189. > After upgrading a hiperdsp to 2.1.9 I have found that two channels on one
  6190. of
  6191. > my pri's are now stuck in "local out of service" with a service state of
  6192. 8,
  6193. > whatever that is. I never experienced this type of problem on my pri
  6194. > circuits before and I can't find how to clear the problem. I would greatly
  6195. > appreciate some suggestions on what to do.
  6196. >
  6197. > Mark Thornton
  6198. > San Marcos Internet, Inc.
  6199. > 512-393-5300
  6200. >
  6201. >
  6202. >
  6203. >
  6204. > -
  6205. >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  6206. >  with "unsubscribe usr-tc" in the body of the message.
  6207. >  For information on digests or retrieving files and old messages send
  6208. >  "help" to the same address.  Do not use quotes in your message.
  6209. >
  6210.  
  6211.  
  6212. -
  6213.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  6214.  with "unsubscribe usr-tc" in the body of the message.
  6215.  For information on digests or retrieving files and old messages send
  6216.  "help" to the same address.  Do not use quotes in your message.
  6217.  
  6218.  
  6219. -------------------------------------------------------------------------------
  6220.  
  6221. From: "Mark Thornton" <mark@corridor.net>
  6222. Subject: Re: (usr-tc) PRI channels "local out of service"
  6223. Date: 27 Sep 2000 18:01:11 -0500
  6224.  
  6225. I tried to do a software reset on the individual modems like I do when one
  6226. of the quads gets hung up, but that didn't help. I also looked at the
  6227. busy-out configuration as shown in the TCM and they show as configured to be
  6228. in service. It may be that I don't know exactly where to go on a dsp to fix
  6229. this.
  6230.  
  6231. Mark Thornton
  6232. San Marcos Internet, Inc.
  6233. 512-393-5300
  6234.  
  6235.  
  6236. ----- Original Message -----
  6237. Sent: Wednesday, September 27, 2000 4:38 PM
  6238.  
  6239.  
  6240. > Have you tried to un-busy, or reset the modems via the TCM software?
  6241. >
  6242. >
  6243. > ***************
  6244. > Jason Watkins
  6245. > I-Land NOC
  6246. > jwatkins@iland.net
  6247. > ***************
  6248. > ----- Original Message -----
  6249. > From: "Mark Thornton" <mark@corridor.net>
  6250. > To: <usr-tc@lists.xmission.com>
  6251. > Sent: Wednesday, September 27, 2000 8:52 AM
  6252. > Subject: (usr-tc) PRI channels "local out of service"
  6253. >
  6254. >
  6255. > > After upgrading a hiperdsp to 2.1.9 I have found that two channels on
  6256. one
  6257. > of
  6258. > > my pri's are now stuck in "local out of service" with a service state of
  6259. > 8,
  6260. > > whatever that is. I never experienced this type of problem on my pri
  6261. > > circuits before and I can't find how to clear the problem. I would
  6262. greatly
  6263. > > appreciate some suggestions on what to do.
  6264. > >
  6265. > > Mark Thornton
  6266. > > San Marcos Internet, Inc.
  6267. > > 512-393-5300
  6268. > >
  6269. > >
  6270. > >
  6271. > >
  6272. > > -
  6273. > >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  6274. > >  with "unsubscribe usr-tc" in the body of the message.
  6275. > >  For information on digests or retrieving files and old messages send
  6276. > >  "help" to the same address.  Do not use quotes in your message.
  6277. > >
  6278. >
  6279. >
  6280. > -
  6281. >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  6282. >  with "unsubscribe usr-tc" in the body of the message.
  6283. >  For information on digests or retrieving files and old messages send
  6284. >  "help" to the same address.  Do not use quotes in your message.
  6285.  
  6286.  
  6287. -
  6288.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  6289.  with "unsubscribe usr-tc" in the body of the message.
  6290.  For information on digests or retrieving files and old messages send
  6291.  "help" to the same address.  Do not use quotes in your message.
  6292.  
  6293.  
  6294. -------------------------------------------------------------------------------
  6295.  
  6296. From: Veda Narayan <ved@iyka.com>
  6297. Subject: Re: (usr-tc) radius "Class" attribute
  6298. Date: 27 Sep 2000 19:02:28 -0600
  6299.  
  6300. Quoting Jeff <jeff@apex.net>:
  6301.  
  6302. > Does anyone know if the "Class" attribute is supported on the hiperARC
  6303. > or netserver?  Here's the description from RFC2865:
  6304. The class attribute is supported by the HiPer arc - The netserver does not 
  6305. support it.  Hiper arc 4.1.13 and above does support this.
  6306.  
  6307. V
  6308.  
  6309. > 5.25.  Class
  6310. >    Description
  6311. >       This Attribute is available to be sent by the server to the client
  6312. >       in an Access-Accept and SHOULD be sent unmodified by the client to
  6313. >       the accounting server as part of the Accounting-Request packet if
  6314. >       accounting is supported.  The client MUST NOT interpret the
  6315. >       attribute locally.
  6316. > PS - I tried searching the knowledgebase and the list for this answer
  6317. > but
  6318. > couldn't find it.  Sorry if it's obvious and I missed it.
  6319. > --
  6320. >   Jeff Carneal - Sys Admin - Apex Internet          
  6321. >   jeff@apex.net http://www.apex.net (270) 442-5363
  6322. >   The opinions expressed above aren't really mine.
  6323. >   They belong to someone else who also refuses to 
  6324. >   take responsibility for them. 
  6325. > -
  6326. >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  6327. >  with "unsubscribe usr-tc" in the body of the message.
  6328. >  For information on digests or retrieving files and old messages send
  6329. >  "help" to the same address.  Do not use quotes in your message.
  6330.  
  6331.  
  6332.  
  6333. ===========
  6334.  
  6335. -V
  6336.  
  6337. ==========
  6338.  
  6339. -
  6340.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  6341.  with "unsubscribe usr-tc" in the body of the message.
  6342.  For information on digests or retrieving files and old messages send
  6343.  "help" to the same address.  Do not use quotes in your message.
  6344.  
  6345.  
  6346. -------------------------------------------------------------------------------
  6347.  
  6348. From: "G. Owens" <gowens@magnolia-net.com>
  6349. Subject: Re: (usr-tc) Weird Log files (Revision)
  6350. Date: 27 Sep 2000 20:40:38 -0500
  6351.  
  6352. Since I got no replys from the first email I will try again from a different
  6353. angle. We finally figured out what is happening and maybe someone on this
  6354. list has been here. We are in the process of installing a R2000 filter box
  6355. from X-Stop and trying to use this by setting up a different user group in
  6356. radius to sort out filtered from unfiltered. What is happening the R2000
  6357. loos to filter outbound requests only. Well once the R2000 receives the
  6358. accounting packets it is never sending the ack packets back to the arc.
  6359. Thus all the weird accounting errors below. Has anyone ever used one of
  6360. these boxes with a total control that might could add some insight as to the
  6361. best way to do this either on or off list. So far we have spent about 6 hrs
  6362. on phone with xstop and it still isn't up and going. Thanks
  6363.  
  6364. Greg Owens
  6365. Magnolia Internet Services
  6366. South Arkansas' Premier Internet Provider
  6367. http://www.magnolia-net.com
  6368. ----- Original Message -----
  6369. Sent: Tuesday, September 26, 2000 11:20 PM
  6370.  
  6371.  
  6372. > Hey All. Can someone look and tell me what might be going on here. This is
  6373. a
  6374. > copy of my radius log file from one of my remote pops. It just started
  6375. this
  6376. > yesterday and we can't seem to stop it. Everything looks right on the ARC
  6377. > and in radius. Have even restarted the arc twice. Also the radius detail
  6378. > file from this box keeps showing this unauthinicated user stop over and
  6379. over
  6380. > and I am not sure what it means. What is odd is this chassis is in a
  6381. remote
  6382. > area and we are only using the slots 1 &2 on it with DSP cards. Everything
  6383. > is running the next to newest code. Not the one that reboots the arc all
  6384. the
  6385. > time...... Thanks for any help in advance. BTW we are running Cistron
  6386. radius
  6387. > Greg Owens
  6388. > Magnolia Internet Services
  6389. > South Arkansas' Premier Internet Provider
  6390. > http://www.magnolia-net.com
  6391. >
  6392. > Tue Sep 26 23:07:18 2000: Error: Accounting: logout: entry for NAS tc3arc1
  6393. > port 6 has wrong ID
  6394. > Tue Sep 26 23:07:19 2000: Error: Accounting: logout: entry for NAS tc3arc1
  6395. > port 3 has wrong ID
  6396. > Tue Sep 26 23:07:20 2000: Error: Accounting: logout: entry for NAS tc3arc1
  6397. > port 2 has wrong ID
  6398. > Tue Sep 26 23:07:25 2000: Error: Accounting: logout: entry for NAS tc3arc1
  6399. > port 2 has wrong ID
  6400. > Tue Sep 26 23:07:37 2000: Error: Accounting: logout: entry for NAS tc3arc1
  6401. > port 4 has wrong ID
  6402. > Tue Sep 26 23:07:38 2000: Info: NAS tc3arc1 restarted (Accounting-On
  6403. packet
  6404. > seen)
  6405. > Tue Sep 26 23:07:48 2000: Error: Accounting: logout: entry for NAS tc3arc1
  6406. > port 6 has wrong ID
  6407. > Tue Sep 26 23:07:52 2000: Error: Accounting: logout: entry for NAS tc3arc1
  6408. > port 3 has wrong ID
  6409. > Tue Sep 26 23:07:55 2000: Error: Accounting: logout: entry for NAS tc3arc1
  6410. > port 8 has wrong ID
  6411. > Tue Sep 26 23:07:55 2000: Error: Accounting: logout: entry for NAS tc3arc1
  6412. > port 2 has wrong ID
  6413. > Tue Sep 26 23:08:01 2000: Error: Accounting: logout: entry for NAS tc3arc1
  6414. > port 3 has wrong ID
  6415. > Tue Sep 26 23:08:01 2000: Auth: Login OK: [marlar] (from nas tc1arc2/S536)
  6416. > Tue Sep 26 23:08:02 2000: Error: Accounting: logout: entry for NAS tc3arc1
  6417. > port 3 has wrong ID
  6418. > Tue Sep 26 23:08:04 2000: Error: Accounting: logout: entry for NAS tc3arc1
  6419. > port 3 has wrong ID
  6420. > Tue Sep 26 23:08:05 2000: Error: Accounting: logout: entry for NAS tc3arc1
  6421. > port 2 has wrong ID
  6422. > Tue Sep 26 23:08:05 2000: Error: Accounting: logout: entry for NAS tc3arc1
  6423. > port 3 has wrong ID
  6424. > Tue Sep 26 23:08:05 2000: Error: Accounting: logout: entry for NAS tc3arc1
  6425. > port 2 has wrong ID
  6426. > Tue Sep 26 23:08:06 2000: Error: Accounting: logout: entry for NAS tc3arc1
  6427. > port 3 has wrong ID
  6428. >
  6429. > Tue Sep 26 23:13:31 2000
  6430. >         User-Name = "unauthenticated"
  6431. >         NAS-IP-Address = 63.89.132.3
  6432. >         Acct-Status-Type = Stop
  6433. >         Acct-Session-Id = "393591"
  6434. >         Acct-Delay-Time = 1440
  6435. >         Service-Type = Framed-User
  6436. >         NAS-Port-Type = Async
  6437. >         NAS-Port-Id = 7
  6438. >         USR-Interface-Index = 1263
  6439. >         USR-Chassis-Call-Slot = 1
  6440. >         USR-Chassis-Call-Span = 1
  6441. >         USR-Chassis-Call-Channel = 7
  6442. >         USR-Unauthenticated-Time = 40
  6443. >         USR-Modem-Training-Time = 20
  6444. >         Calling-Station-Id = ""
  6445. >         Called-Station-Id = ""
  6446. >         USR-Modulation-Type = v90Digital
  6447. >         USR-Simplified-MNP-Levels = ccittV42
  6448. >         USR-Simplified-V42bis-Usage = ccittV42bis
  6449. >         USR-Connect-Speed = 41333_BPS
  6450. >         Framed-Protocol = PPP
  6451. >         Framed-IP-Address = 0.0.0.0
  6452. >         Acct-Session-Time = 60
  6453. >         Acct-Terminate-Cause = User-Request
  6454. >         USR-HARC-Disconnect-Code = User-Req-Drop
  6455. >         Acct-Input-Octets = 406
  6456. >         Acct-Output-Octets = 170
  6457. >         Acct-Input-Packets = 17
  6458. >         Acct-Output-Packets = 8
  6459. >         USR-Call-Arrival-Time = 149550318
  6460. >         USR-Call-End-Time = 149550378
  6461. >         Timestamp = 970028011
  6462. >         Request-Authenticator = Verified
  6463. >
  6464. >
  6465. >
  6466. >
  6467. >
  6468. > -
  6469. >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  6470. >  with "unsubscribe usr-tc" in the body of the message.
  6471. >  For information on digests or retrieving files and old messages send
  6472. >  "help" to the same address.  Do not use quotes in your message.
  6473.  
  6474.  
  6475. -
  6476.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  6477.  with "unsubscribe usr-tc" in the body of the message.
  6478.  For information on digests or retrieving files and old messages send
  6479.  "help" to the same address.  Do not use quotes in your message.
  6480.  
  6481.  
  6482. -------------------------------------------------------------------------------
  6483.  
  6484. From: Brian Burgmeier <brian@ntwrld.com>
  6485. Subject: (usr-tc) bad ports
  6486. Date: 28 Sep 2000 01:04:01 -0700
  6487.  
  6488. We have several bad ports on one of our hiper arch cards.
  6489. slot:15/mod:5,9 and 10 never pick up.  I've tried resetting the
  6490. card but no luck.  When people hit these ports they get no answer.
  6491. What is the command to busy out these ports so people roll over
  6492. to the next available port?  Is it possible to fix these cards or
  6493. do I just need to send them into 3com?
  6494.  
  6495. Thanks- Brian
  6496.  
  6497. slot:15/mod:1   jennifer                    DIALIN PPP  27-SEP-2000
  6498. 23:17:40
  6499. slot:15/mod:2   pcroft                      DIALIN PPP  27-SEP-2000
  6500. 23:43:58
  6501. slot:15/mod:3   paulb                       DIALIN PPP  27-SEP-2000
  6502. 23:15:06
  6503. slot:15/mod:4   azred                       DIALIN PPP  27-SEP-2000
  6504. 23:44:21
  6505. slot:15/mod:6   mcrenaud                    DIALIN PPP  27-SEP-2000
  6506. 22:35:51
  6507. slot:15/mod:7   angelo                      DIALIN PPP  27-SEP-2000
  6508. 23:04:51
  6509. slot:15/mod:8   maverick                    DIALIN PPP  27-SEP-2000
  6510. 22:00:06
  6511. slot:15/mod:11  bjsjim                      DIALIN PPP  27-SEP-2000
  6512. 23:01:27
  6513. slot:15/mod:12  bishopc                     DIALIN PPP  27-SEP-2000
  6514. 23:55:44
  6515. slot:15/mod:13  jen                         DIALIN PPP  27-SEP-2000
  6516. 23:58:08
  6517. slot:15/mod:14  busch                       DIALIN PPP  27-SEP-2000
  6518. 09:54:00
  6519. slot:15/mod:15  arin                        DIALIN PPP  27-SEP-2000
  6520. 23:21:50
  6521. slot:15/mod:16  bass398                     DIALIN PPP  27-SEP-2000
  6522. 23:48:21
  6523. slot:15/mod:17  cabrams                     DIALIN PPP  27-SEP-2000
  6524. 08:09:42
  6525. slot:15/mod:18  jprice                      DIALIN PPP  27-SEP-2000
  6526. 06:49:30
  6527. slot:15/mod:19  chucha6                     DIALIN PPP  27-SEP-2000
  6528. 23:00:33
  6529. slot:15/mod:20  viking                      DIALIN PPP  27-SEP-2000
  6530. 23:33:39
  6531. slot:15/mod:21  shameem                     DIALIN PPP  27-SEP-2000
  6532. 21:40:34
  6533. slot:15/mod:22  bbonilla                    DIALIN PPP  27-SEP-2000
  6534. 21:53:36
  6535. slot:15/mod:23  jamesr                      DIALIN PPP  27-SEP-2000
  6536. 23:30:25
  6537. slot:15/mod:24  numbski
  6538.  
  6539. -
  6540.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  6541.  with "unsubscribe usr-tc" in the body of the message.
  6542.  For information on digests or retrieving files and old messages send
  6543.  "help" to the same address.  Do not use quotes in your message.
  6544.  
  6545.  
  6546. -------------------------------------------------------------------------------
  6547.  
  6548. From: "Mailing List Reader" <mlist@strato.net>
  6549. Subject: (usr-tc) HiPer ARC NICs
  6550. Date: 28 Sep 2000 10:16:53 -0400
  6551.  
  6552. Any one using the HiPerARC NICs with the WAN ports for POP-in-a-Box or other
  6553. uses?
  6554.  
  6555.  
  6556. -
  6557.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  6558.  with "unsubscribe usr-tc" in the body of the message.
  6559.  For information on digests or retrieving files and old messages send
  6560.  "help" to the same address.  Do not use quotes in your message.
  6561.  
  6562.  
  6563. -------------------------------------------------------------------------------
  6564.  
  6565. From: Jeff Mcadams <jeffm@iglou.com>
  6566. Subject: (usr-tc) CEO/COO shuffle
  6567. Date: 28 Sep 2000 15:16:07 -0400
  6568.  
  6569. Mr. Eric Benhamou has just announced that he will be stepping down as
  6570. CEO of 3Com Corporation.  He will be replaced with the current COO of
  6571. the company, Mr. Bruce Claflin.
  6572.  
  6573. I've heard both of these guys speak, and while both are clearly very
  6574. intelligent, Mr. Claflin is far and away the more dynamic speaker.  :)
  6575. Having said that...I don't have much of a feel for what this change
  6576. means for 3Com, and specifically for the Carrier Systems Group.
  6577. -- 
  6578. Jeff McAdams                            Email: jeffm@iglou.com
  6579. Head Network Administrator              Voice: (502) 966-3848
  6580. IgLou Internet Services                        (800) 436-4456
  6581.  
  6582. -
  6583.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  6584.  with "unsubscribe usr-tc" in the body of the message.
  6585.  For information on digests or retrieving files and old messages send
  6586.  "help" to the same address.  Do not use quotes in your message.
  6587.  
  6588.  
  6589. -------------------------------------------------------------------------------
  6590.  
  6591. From: "Sheldon Koehler" <sheldon@tenforward.com>
  6592. Subject: Re: (usr-tc) CEO/COO shuffle
  6593. Date: 28 Sep 2000 13:29:58 -0700
  6594.  
  6595. I would doubt any real changes as Benhamou is still Chairman. I did need the
  6596. nap last year at ISPCon when he spoke though... ;)
  6597.  
  6598. http://news.cnet.com/news/0-1004-200-2886747.html
  6599.  
  6600.  
  6601. Sheldon
  6602.  
  6603. _____________________________
  6604. Sheldon Koehler, Owner/Partner
  6605. Ten Forward Communications
  6606. http://www.tenforward.com
  6607. _____________________________
  6608. Amateurs built the Ark.
  6609. Professionals built the Titanic.
  6610.  
  6611. ----- Original Message -----
  6612. Sent: Thursday, September 28, 2000 12:16 PM
  6613.  
  6614.  
  6615. > Mr. Eric Benhamou has just announced that he will be stepping down as
  6616. > CEO of 3Com Corporation.  He will be replaced with the current COO of
  6617. > the company, Mr. Bruce Claflin.
  6618. >
  6619. > I've heard both of these guys speak, and while both are clearly very
  6620. > intelligent, Mr. Claflin is far and away the more dynamic speaker.  :)
  6621. > Having said that...I don't have much of a feel for what this change
  6622. > means for 3Com, and specifically for the Carrier Systems Group.
  6623. > --
  6624. > Jeff McAdams                            Email: jeffm@iglou.com
  6625. > Head Network Administrator              Voice: (502) 966-3848
  6626. > IgLou Internet Services                        (800) 436-4456
  6627. >
  6628. > -
  6629. >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  6630. >  with "unsubscribe usr-tc" in the body of the message.
  6631. >  For information on digests or retrieving files and old messages send
  6632. >  "help" to the same address.  Do not use quotes in your message.
  6633. >
  6634.  
  6635.  
  6636. -
  6637.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  6638.  with "unsubscribe usr-tc" in the body of the message.
  6639.  For information on digests or retrieving files and old messages send
  6640.  "help" to the same address.  Do not use quotes in your message.
  6641.  
  6642.  
  6643. -------------------------------------------------------------------------------
  6644.  
  6645. From: "Mike Wilker" <mikew@ll.net>
  6646. Subject: Re: (usr-tc) bad ports
  6647. Date: 28 Sep 2000 16:18:10 -0500
  6648.  
  6649. Brian, when you dial in and hit one of those bad modems, do you just get
  6650. dead air?  Did the problem coincide with any software upgrades on your
  6651. chassis?
  6652.  
  6653. Mike Wilker
  6654. Director of Network Operations
  6655. Local Link USA & Protocol Communications
  6656.  
  6657.  
  6658. ----- Original Message -----
  6659. Sent: Thursday, September 28, 2000 3:04 AM
  6660.  
  6661.  
  6662. > We have several bad ports on one of our hiper arch cards.
  6663. > slot:15/mod:5,9 and 10 never pick up.  I've tried resetting the
  6664. > card but no luck.  When people hit these ports they get no answer.
  6665. > What is the command to busy out these ports so people roll over
  6666. > to the next available port?  Is it possible to fix these cards or
  6667. > do I just need to send them into 3com?
  6668. >
  6669. > Thanks- Brian
  6670. >
  6671. > slot:15/mod:1   jennifer                    DIALIN PPP  27-SEP-2000
  6672. > 23:17:40
  6673. > slot:15/mod:2   pcroft                      DIALIN PPP  27-SEP-2000
  6674. > 23:43:58
  6675. > slot:15/mod:3   paulb                       DIALIN PPP  27-SEP-2000
  6676. > 23:15:06
  6677. > slot:15/mod:4   azred                       DIALIN PPP  27-SEP-2000
  6678. > 23:44:21
  6679. > slot:15/mod:6   mcrenaud                    DIALIN PPP  27-SEP-2000
  6680. > 22:35:51
  6681. > slot:15/mod:7   angelo                      DIALIN PPP  27-SEP-2000
  6682. > 23:04:51
  6683. > slot:15/mod:8   maverick                    DIALIN PPP  27-SEP-2000
  6684. > 22:00:06
  6685. > slot:15/mod:11  bjsjim                      DIALIN PPP  27-SEP-2000
  6686. > 23:01:27
  6687. > slot:15/mod:12  bishopc                     DIALIN PPP  27-SEP-2000
  6688. > 23:55:44
  6689. > slot:15/mod:13  jen                         DIALIN PPP  27-SEP-2000
  6690. > 23:58:08
  6691. > slot:15/mod:14  busch                       DIALIN PPP  27-SEP-2000
  6692. > 09:54:00
  6693. > slot:15/mod:15  arin                        DIALIN PPP  27-SEP-2000
  6694. > 23:21:50
  6695. > slot:15/mod:16  bass398                     DIALIN PPP  27-SEP-2000
  6696. > 23:48:21
  6697. > slot:15/mod:17  cabrams                     DIALIN PPP  27-SEP-2000
  6698. > 08:09:42
  6699. > slot:15/mod:18  jprice                      DIALIN PPP  27-SEP-2000
  6700. > 06:49:30
  6701. > slot:15/mod:19  chucha6                     DIALIN PPP  27-SEP-2000
  6702. > 23:00:33
  6703. > slot:15/mod:20  viking                      DIALIN PPP  27-SEP-2000
  6704. > 23:33:39
  6705. > slot:15/mod:21  shameem                     DIALIN PPP  27-SEP-2000
  6706. > 21:40:34
  6707. > slot:15/mod:22  bbonilla                    DIALIN PPP  27-SEP-2000
  6708. > 21:53:36
  6709. > slot:15/mod:23  jamesr                      DIALIN PPP  27-SEP-2000
  6710. > 23:30:25
  6711. > slot:15/mod:24  numbski
  6712. >
  6713. > -
  6714. >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  6715. >  with "unsubscribe usr-tc" in the body of the message.
  6716. >  For information on digests or retrieving files and old messages send
  6717. >  "help" to the same address.  Do not use quotes in your message.
  6718.  
  6719.  
  6720. -
  6721.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  6722.  with "unsubscribe usr-tc" in the body of the message.
  6723.  For information on digests or retrieving files and old messages send
  6724.  "help" to the same address.  Do not use quotes in your message.
  6725.  
  6726.  
  6727. -------------------------------------------------------------------------------
  6728.  
  6729. From: "Steve Rivera -www.wrca.net" <sales@wrca.net>
  6730. Subject: (usr-tc) FS: USR/3Com  Hiper Cards
  6731. Date: 28 Sep 2000 18:03:07 -0400
  6732.  
  6733. WR Communication Associates (WRCA) has the following USR Hardware available:
  6734.  
  6735. 3- 3Com HD Chassis w/ dual 70A (Blue Stickers) $750 ea
  6736. 5- USR Hiper DSP w/ nics $2900 each.
  6737. 5- USR Hiper NMC w/ nics $950 each.
  6738.  
  6739.  
  6740.  
  6741. Steve Rivera (VP) - w-732.833.2111 /  c-732.433.5890 24Hr 
  6742. (www.isp-networkhardware.com)
  6743. Email: srivera@wrca.net - Mobile Email: srivera711@hotmail.com
  6744.  
  6745. Worldwide Provider of Network Hardware Since 1981.
  6746.  
  6747.  
  6748.  
  6749.  
  6750.  
  6751.  
  6752.  
  6753.       
  6754.  
  6755.  
  6756.  
  6757.  
  6758.  
  6759. -
  6760.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  6761.  with "unsubscribe usr-tc" in the body of the message.
  6762.  For information on digests or retrieving files and old messages send
  6763.  "help" to the same address.  Do not use quotes in your message.
  6764.  
  6765.  
  6766. -------------------------------------------------------------------------------
  6767.  
  6768. From: Brian Burgmeier <brian@ntwrld.com>
  6769. Subject: Re: (usr-tc) bad ports
  6770. Date: 28 Sep 2000 17:24:52 -0700
  6771.  
  6772. Mike,
  6773.  
  6774. The last time we did a software upgrade was over a year ago.  All we
  6775. get when we hit the bad modem is dead air.  I rebooted the chassis and as
  6776. people logged back on they filled up mod 24, then 22,23, 20, 21, 19, 18, 17,
  6777.  
  6778. 16,15,14,13,12,11 and when it the card got to mod 10 all I could hear was
  6779. dead air when I called with a phone.  Any suggestions would be appreciated.
  6780.  
  6781. Thanks- Brian
  6782.  
  6783. Mike Wilker wrote:
  6784.  
  6785. > Brian, when you dial in and hit one of those bad modems, do you just get
  6786. > dead air?  Did the problem coincide with any software upgrades on your
  6787. > chassis?
  6788. >
  6789. > Mike Wilker
  6790. > Director of Network Operations
  6791. > Local Link USA & Protocol Communications
  6792. >
  6793. > ----- Original Message -----
  6794. > From: "Brian Burgmeier" <brian@ntwrld.com>
  6795. > To: <usr-tc@lists.xmission.com>
  6796. > Sent: Thursday, September 28, 2000 3:04 AM
  6797. > Subject: (usr-tc) bad ports
  6798. >
  6799. > > We have several bad ports on one of our hiper arch cards.
  6800. > > slot:15/mod:5,9 and 10 never pick up.  I've tried resetting the
  6801. > > card but no luck.  When people hit these ports they get no answer.
  6802. > > What is the command to busy out these ports so people roll over
  6803. > > to the next available port?  Is it possible to fix these cards or
  6804. > > do I just need to send them into 3com?
  6805. > >
  6806. > > Thanks- Brian
  6807. > >
  6808.  
  6809.  
  6810. -
  6811.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  6812.  with "unsubscribe usr-tc" in the body of the message.
  6813.  For information on digests or retrieving files and old messages send
  6814.  "help" to the same address.  Do not use quotes in your message.
  6815.  
  6816.  
  6817. -------------------------------------------------------------------------------
  6818.  
  6819. From: K Mitchell <mitch@keyconn.net>
  6820. Subject: Re: (usr-tc) bad ports
  6821. Date: 28 Sep 2000 23:06:03 -0400
  6822.  
  6823. At 05:24 PM 9/28/00 -0700, Brian Burgmeier wrote:
  6824. >Mike,
  6825. >
  6826. >The last time we did a software upgrade was over a year ago.  All we
  6827. >get when we hit the bad modem is dead air.  I rebooted the chassis and as
  6828. >people logged back on they filled up mod 24, then 22,23, 20, 21, 19, 18, 17,
  6829. >
  6830. >16,15,14,13,12,11 and when it the card got to mod 10 all I could hear was
  6831. >dead air when I called with a phone.  Any suggestions would be appreciated.
  6832.  
  6833. I'm not sure what's causing the problem since resetting the card isn't
  6834. fixing it. Here's how to bypass them till you get it figured out;
  6835.  Through TCM, highlight the top lights of the card, then go to
  6836. configure...actions/commands. Select the "Timeslot" radio button and
  6837. highlight the modem numbers you want to busy. Then use the "software/soft
  6838. busy out" command.
  6839.  
  6840. HTH
  6841. -- 
  6842. Kirk Mitchell-General Manager    mitch@keyconn.net
  6843. Keystone Connect                 Unlock Your World
  6844. Altoona, PA  814-941-5000        http://www.keyconn.net
  6845.  
  6846.  
  6847. -
  6848.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  6849.  with "unsubscribe usr-tc" in the body of the message.
  6850.  For information on digests or retrieving files and old messages send
  6851.  "help" to the same address.  Do not use quotes in your message.
  6852.  
  6853.  
  6854. -------------------------------------------------------------------------------
  6855.  
  6856. From: "Talal Ghaith" <talal@index.com.jo>
  6857. Subject: Re: (usr-tc) FS: USR/3Com  Hiper Cards
  6858. Date: 29 Sep 2000 14:24:11 +0200
  6859.  
  6860. Really intereste on that
  6861. what is there condition , what type are the DSPS (american , eurpean)?
  6862.  
  6863. Talal
  6864. ----- Original Message -----
  6865. Sent: Friday, September 29, 2000 12:03 AM
  6866.  
  6867.  
  6868. > WR Communication Associates (WRCA) has the following USR Hardware
  6869. available:
  6870. >
  6871. > 3- 3Com HD Chassis w/ dual 70A (Blue Stickers) $750 ea
  6872. > 5- USR Hiper DSP w/ nics $2900 each.
  6873. > 5- USR Hiper NMC w/ nics $950 each.
  6874. >
  6875. >
  6876. >
  6877. > Steve Rivera (VP) - w-732.833.2111 /  c-732.433.5890 24Hr
  6878. > (www.isp-networkhardware.com)
  6879. > Email: srivera@wrca.net - Mobile Email: srivera711@hotmail.com
  6880. >
  6881. > Worldwide Provider of Network Hardware Since 1981.
  6882. >
  6883. >
  6884. >
  6885. >
  6886. >
  6887. >
  6888. >
  6889. >
  6890. >
  6891. >
  6892. >
  6893. >
  6894. >
  6895. > -
  6896. >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  6897. >  with "unsubscribe usr-tc" in the body of the message.
  6898. >  For information on digests or retrieving files and old messages send
  6899. >  "help" to the same address.  Do not use quotes in your message.
  6900.  
  6901.  
  6902. -
  6903.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  6904.  with "unsubscribe usr-tc" in the body of the message.
  6905.  For information on digests or retrieving files and old messages send
  6906.  "help" to the same address.  Do not use quotes in your message.
  6907.  
  6908.  
  6909. -------------------------------------------------------------------------------
  6910.  
  6911. From: "Steve Rivera -www.wrca.net" <sales@wrca.net>
  6912. Subject: Re: (usr-tc) FS: USR/3Com  Hiper Cards
  6913. Date: 29 Sep 2000 10:58:55 -0400
  6914.  
  6915. All are American. I will keep you in mind for any E1 I get in.
  6916.  
  6917. At 02:24 PM 09/29/2000 +0200, you wrote:
  6918. >Really intereste on that
  6919. >what is there condition , what type are the DSPS (american , eurpean)?
  6920. >
  6921. >Talal
  6922. >----- Original Message -----
  6923. >From: "Steve Rivera -www.wrca.net" <sales@wrca.net>
  6924. >To: <usr-tc@lists.xmission.com>
  6925. >Sent: Friday, September 29, 2000 12:03 AM
  6926. >Subject: (usr-tc) FS: USR/3Com Hiper Cards
  6927. >
  6928. >
  6929. > > WR Communication Associates (WRCA) has the following USR Hardware
  6930. >available:
  6931. > >
  6932. > > 3- 3Com HD Chassis w/ dual 70A (Blue Stickers) $750 ea
  6933. > > 5- USR Hiper DSP w/ nics $2900 each.
  6934. > > 5- USR Hiper NMC w/ nics $950 each.
  6935. > >
  6936. > >
  6937. > >
  6938. > > Steve Rivera (VP) - w-732.833.2111 /  c-732.433.5890 24Hr
  6939. > > (www.isp-networkhardware.com)
  6940. > > Email: srivera@wrca.net - Mobile Email: srivera711@hotmail.com
  6941. > >
  6942. > > Worldwide Provider of Network Hardware Since 1981.
  6943. > >
  6944. > >
  6945. > >
  6946. > >
  6947. > >
  6948. > >
  6949. > >
  6950. > >
  6951. > >
  6952. > >
  6953. > >
  6954. > >
  6955. > >
  6956. > > -
  6957. > >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  6958. > >  with "unsubscribe usr-tc" in the body of the message.
  6959. > >  For information on digests or retrieving files and old messages send
  6960. > >  "help" to the same address.  Do not use quotes in your message.
  6961. >
  6962. >
  6963. >-
  6964. >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  6965. >  with "unsubscribe usr-tc" in the body of the message.
  6966. >  For information on digests or retrieving files and old messages send
  6967. >  "help" to the same address.  Do not use quotes in your message.
  6968.  
  6969.  
  6970. -
  6971.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  6972.  with "unsubscribe usr-tc" in the body of the message.
  6973.  For information on digests or retrieving files and old messages send
  6974.  "help" to the same address.  Do not use quotes in your message.
  6975.  
  6976.  
  6977. -------------------------------------------------------------------------------
  6978.  
  6979. From: Nicolas St-Pierre <nstpierre@iasl.com>
  6980. Subject: Re: (usr-tc) HiPer ARC NICs
  6981. Date: 29 Sep 2000 11:42:50 -0400
  6982.  
  6983. I am using the Quad T1 NIC with a T1 backhaul to a Cisco 2610 in a test
  6984. environment, works fine so far.
  6985.  
  6986. Nicolas
  6987.  
  6988.  
  6989. Mailing List Reader wrote:
  6990. > Any one using the HiPerARC NICs with the WAN ports for POP-in-a-Box or other
  6991. > uses?
  6992. > -
  6993. >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  6994. >  with "unsubscribe usr-tc" in the body of the message.
  6995. >  For information on digests or retrieving files and old messages send
  6996. >  "help" to the same address.  Do not use quotes in your message.
  6997.  
  6998. --
  6999. Nicolas St-Pierre
  7000. Systems Engineer
  7001. Internet Access Solutions Ltd.
  7002. Tel (416) 621-7255
  7003. Fax (416) 621-3509
  7004.  
  7005. -
  7006.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  7007.  with "unsubscribe usr-tc" in the body of the message.
  7008.  For information on digests or retrieving files and old messages send
  7009.  "help" to the same address.  Do not use quotes in your message.
  7010.  
  7011.  
  7012. -------------------------------------------------------------------------------
  7013.  
  7014. From: drernst@kirkwood.hoosier.net
  7015. Subject: Re: (usr-tc) bad ports
  7016. Date: 29 Sep 2000 11:15:56 -0500 (EST)
  7017.  
  7018. >At 05:24 PM 9/28/00 -0700, Brian Burgmeier wrote:
  7019. >>Mike,
  7020. >>
  7021. >>The last time we did a software upgrade was over a year ago.  All we
  7022. >>get when we hit the bad modem is dead air.  I rebooted the chassis and as
  7023. >>people logged back on they filled up mod 24, then 22,23, 20, 21, 19, 18, 17,
  7024. >>
  7025. >>16,15,14,13,12,11 and when it the card got to mod 10 all I could hear was
  7026. >>dead air when I called with a phone.  Any suggestions would be appreciated.
  7027. >
  7028. >I'm not sure what's causing the problem since resetting the card isn't
  7029. >fixing it. Here's how to bypass them till you get it figured out;
  7030. > Through TCM, highlight the top lights of the card, then go to
  7031. >configure...actions/commands. Select the "Timeslot" radio button and
  7032. >highlight the modem numbers you want to busy. Then use the "software/soft
  7033. >busy out" command.
  7034.  
  7035. No guarantees, but I've sometimes had ports that didn't spring back to
  7036. life on resetting the card, but did with a software reset of the port.  Go
  7037. figure.  Through TCM, highlight the bottom lights (the 0-100%
  7038. utilization ones).  Choose "Configure|Actions/Commands".  Select the
  7039. modem(s) in question and send them the "software reset" command.  
  7040.  
  7041. Good luck
  7042. David
  7043.  
  7044.  
  7045. -
  7046.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  7047.  with "unsubscribe usr-tc" in the body of the message.
  7048.  For information on digests or retrieving files and old messages send
  7049.  "help" to the same address.  Do not use quotes in your message.
  7050.  
  7051.  
  7052. -------------------------------------------------------------------------------
  7053.  
  7054. From: "Talal Ghaith" <talal@index.com.jo>
  7055. Subject: Re: (usr-tc) FS: USR/3Com  Hiper Cards
  7056. Date: 30 Sep 2000 08:45:10 +0200
  7057.  
  7058. thanx!
  7059. ----- Original Message ----- 
  7060. Sent: Friday, September 29, 2000 4:58 PM
  7061.  
  7062.  
  7063. > All are American. I will keep you in mind for any E1 I get in.
  7064. > At 02:24 PM 09/29/2000 +0200, you wrote:
  7065. > >Really intereste on that
  7066. > >what is there condition , what type are the DSPS (american , eurpean)?
  7067. > >
  7068. > >Talal
  7069. > >----- Original Message -----
  7070. > >From: "Steve Rivera -www.wrca.net" <sales@wrca.net>
  7071. > >To: <usr-tc@lists.xmission.com>
  7072. > >Sent: Friday, September 29, 2000 12:03 AM
  7073. > >Subject: (usr-tc) FS: USR/3Com Hiper Cards
  7074. > >
  7075. > >
  7076. > > > WR Communication Associates (WRCA) has the following USR Hardware
  7077. > >available:
  7078. > > >
  7079. > > > 3- 3Com HD Chassis w/ dual 70A (Blue Stickers) $750 ea
  7080. > > > 5- USR Hiper DSP w/ nics $2900 each.
  7081. > > > 5- USR Hiper NMC w/ nics $950 each.
  7082. > > >
  7083. > > >
  7084. > > >
  7085. > > > Steve Rivera (VP) - w-732.833.2111 /  c-732.433.5890 24Hr
  7086. > > > (www.isp-networkhardware.com)
  7087. > > > Email: srivera@wrca.net - Mobile Email: srivera711@hotmail.com
  7088. > > >
  7089. > > > Worldwide Provider of Network Hardware Since 1981.
  7090. > > >
  7091. > > >
  7092. > > >
  7093. > > >
  7094. > > >
  7095. > > >
  7096. > > >
  7097. > > >
  7098. > > >
  7099. > > >
  7100. > > >
  7101. > > >
  7102. > > >
  7103. > > > -
  7104. > > >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  7105. > > >  with "unsubscribe usr-tc" in the body of the message.
  7106. > > >  For information on digests or retrieving files and old messages send
  7107. > > >  "help" to the same address.  Do not use quotes in your message.
  7108. > >
  7109. > >
  7110. > >-
  7111. > >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  7112. > >  with "unsubscribe usr-tc" in the body of the message.
  7113. > >  For information on digests or retrieving files and old messages send
  7114. > >  "help" to the same address.  Do not use quotes in your message.
  7115. > -
  7116. >  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  7117. >  with "unsubscribe usr-tc" in the body of the message.
  7118. >  For information on digests or retrieving files and old messages send
  7119. >  "help" to the same address.  Do not use quotes in your message.
  7120.  
  7121.  
  7122. -
  7123.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  7124.  with "unsubscribe usr-tc" in the body of the message.
  7125.  For information on digests or retrieving files and old messages send
  7126.  "help" to the same address.  Do not use quotes in your message.
  7127.  
  7128.  
  7129. -------------------------------------------------------------------------------
  7130.  
  7131. From: "Mark Thornton" <mark@corridor.net>
  7132. Subject: (usr-tc) New problem with latest code...
  7133. Date: 30 Sep 2000 22:53:58 -0500
  7134.  
  7135. I am seeing a new problem I have never encountered befoer I loaded the
  7136. latest code on our systems. For the last 36 hours we have been seeing each
  7137. chassis drop 48 channels at semi-regular frequencies. Two chassis's are
  7138. doing this after about 12 hours, the otehr two after about 24. The
  7139. similarity between all the chassis's are 48 channels on dsp's served by
  7140. channelized T1, but I don't know what any of that has to do with the
  7141. problem.
  7142.  
  7143. I have looked at the performance counters and none of the T1 stats show any
  7144. errors for the last 24 hours. I can't find any reason for the problem other
  7145. than the evidence of a few folks complaining about disconnects again and the
  7146. mrtg indications of the problem.
  7147.  
  7148. Any ideas as to where I can look to diagnose this problem? I really
  7149. appreciate any and all responses.
  7150.  
  7151. Mark Thornton
  7152. San Marcos Internet, Inc.
  7153. 512-393-5300
  7154.  
  7155.  
  7156.  
  7157.  
  7158. -
  7159.  To unsubscribe to usr-tc, send an email to "majordomo@xmission.com"
  7160.  with "unsubscribe usr-tc" in the body of the message.
  7161.  For information on digests or retrieving files and old messages send
  7162.  "help" to the same address.  Do not use quotes in your message.
  7163.  
  7164.