home *** CD-ROM | disk | FTP | other *** search
/ A Beginner's Guide to the Internet / INTERNET.ISO / text / telediag / tc13-089.txt < prev    next >
Encoding:
Text File  |  1996-05-06  |  17.9 KB  |  446 lines

  1. TELECOM Digest     Sat, 13 Feb 93 23:48:30 CST    Volume 13 : Issue 89
  2.  
  3. Index To This Issue:                     Moderator: Patrick A. Townson
  4.  
  5.     The Definitive Word on TTL Fields (Mark Boolootian)
  6.     Re: Meaning of TTL in TCP/IP (Eric M. Carroll)
  7.     Re: AT&T Are You Listening? (Jack Decker)
  8.     Re: AT&T Are You Listening? (Ed Greenberg)
  9.     Re: ANI on 800 Line w/o T1? (John Llorens)
  10.     Re: ANI on 800 Line w/o T1? (John Higdon)
  11.     Re: FCC Proposed Ruling on Scanners That Receive Cellphones (Ken Stox)
  12.     Re: FCC Proposed Ruling on Scanners That Receive Cellphones (John Higdon)
  13. ----------------------------------------------------------------------
  14.  
  15. From: booloo@framsparc.ocf.llnl.gov (Mark Boolootian)
  16. Subject: The Definitive Word on TTL Fields
  17. Date: Sat, 13 Feb 1993 13:01:45 -0800 (PST)
  18.  
  19.  
  20. I don't want to drag this on ad infinitum, but it is important to get
  21. the correct information out and that doesn't seem to be happening
  22. here.
  23.  
  24. Matti Aarnio <mea@utu.fi> writes:
  25.  
  26. > Lately I have seen this "TTL is time in seconds" dream on many places.
  27. > Who originated that idea?  Current IP version 4 does not contain an
  28. > absolute time stamp in each datagram, rather it has a hop-count.
  29.  
  30. and, referring to TTL, again writes:
  31.  
  32. > Nope, it is not SECONDS, it is HOPS.  (Gomer does explain it well)
  33. > (And it is explained well in the original RFCs too, see RFC 791).
  34.  
  35. While it is a minor point, the TTL field is in fact specified as being
  36. in seconds in RFC 791 (and also in RFC 1122 - Host Requirements).
  37. Here is the salient passage from 791:
  38.  
  39.     Time to Live:
  40.  
  41.     The time to live is set by the sender to the maximum time the
  42.     datagram is allowed to be in the internet system.  If the datagram
  43.     is in the internet system longer than the time to live, then the
  44.     datagram must be destroyed.
  45.  
  46.     This field must be decreased at each point that the internet header
  47.     is processed to reflect the time spent processing the datagram.
  48.     Even if no local information is available on the time actually
  49.     spent, the field must be decremented by 1.  The time is measured in
  50.     units of seconds (i.e. the value 1 means one second).  Thus, the
  51.     maximum time to live is 255 seconds or 4.25 minutes.  Since every
  52.     module that processes a datagram must decrease the TTL by at least
  53.     one even if it process the datagram in less than a second, the TTL
  54.     must be thought of only as an upper bound on the time a datagram may
  55.     exist.  The intention is to cause undeliverable datagrams to be
  56.     discarded, and to bound the maximum datagram lifetime.
  57.  
  58.  
  59. Since routers typically decrement the TTL by one, the TTL is typically
  60. referred to as a hop count.  But according to the spec, it is
  61. acceptable for a router to decrement the TTL by some larger value.  I
  62. am unaware of any cases where this occurs, but it is within the realm
  63. of possibilty.
  64.  
  65. >> By looking at Jack Decker's traceroute output, it seems that his TCP
  66. >> packets are going through too many gateways.
  67.  
  68. > Nope, 30 is quite normal amount of router hops from one edge to
  69. > another of the present Internet network. Even 50 is not that unusual.
  70.  
  71. I would like to challenge you to produce a traceroute for me with 30
  72. hops in it (and no routing loops!).  My understanding of why a TTL of
  73. 60 is commonly used in TCP is that it virtually guarantees a packet
  74. can move from one edge of the Internet to the other and back again
  75. without being discarded (i.e. the maximum width of the Internet is <
  76. 30 hops).  50 hops is unbelievable.
  77.  
  78. I want to correct something *I* wrote in my last post.  I said:
  79.  
  80. > By the way, most implemenations of traceroute use a TTL of 30.
  81.  
  82. I should have said, most implementations of traceroute use a maximum
  83. default TTL of 30 (the reason being is that is usually sufficient to
  84. get where you need to go).
  85.  
  86.  
  87. Mark Boolootian        booloo@llnl.gov        +1 510 423 1948
  88. Disclaimer:  booloo speaks for booloo and no other.
  89.  
  90. ------------------------------
  91.  
  92. From: eric@cathaus.utcs.utoronto.ca (Eric M. Carroll)
  93. Subject: Re: Meaning of TTL in TCP/IP
  94. Organization: UTCS Campus Access
  95. Date: Sat, 13 Feb 1993 16:21:14 -0500
  96.  
  97.  
  98. > Nope, it is not SECONDS, it is HOPS.   ...
  99. > (And it is explained well in the original RFCs too, see RFC 791).
  100.  
  101. The TTL is in seconds. But a router is required to decrement it by at
  102. least one. Thus it has hop-count properties. RFC791 defines it, and
  103. RFC1122 clarifies it.
  104.  
  105.  From RFC791:
  106.     
  107. Time to Live:  8 bits
  108.  
  109. [Moderator's Note: This message quoted the very same text and has been
  110. omitted here, since he repeats what the first message in this issue
  111. said quoted from the same source by Mark B.  PAT]
  112.  
  113.  From Host Requirements RFC1122:
  114.  
  115. 3.2.1.7  Time-to-Live: RFC-791 Section 3.2
  116.  
  117. DISCUSSION:
  118.                  The TTL field has two functions: limit the lifetime of
  119.                  TCP segments (see RFC-793 [TCP:1], p. 28), and
  120.                  terminate Internet routing loops.  Although TTL is a
  121.                  time in seconds, it also has some attributes of a hop-
  122.                  count, since each gateway is required to reduce the TTL
  123.                  field by at least one.
  124.  
  125.  
  126. Eric Carroll     University of Toronto Computing & Communications
  127.                  Network & Operations Services, Network Development
  128.  
  129. ------------------------------
  130.  
  131. Date: Sat, 13 Feb 93 15:02:50 EST
  132. From: jack.decker@f8.n154.z1.fidonet.org (Jack Decker)
  133. Subject: Re: AT&T Are You Listening?
  134.  
  135.  
  136. In message <telecom13.78.2@eecs.nwu.edu>, lchiu@holonet.net (Laurence
  137. Chiu) wrote:
  138.  
  139. > I am thinking about MCI instead. They have a similar plan to ROW
  140. > (don't remember the name) with similar rates but also they have
  141. > Friends and Family. I can denote two international numbers F&F (China
  142. > is allowed) and thus get savings to all the international destinations
  143. > I call.
  144.  
  145. > I don't want to switch carriers. I like AT&T. Their lines are good
  146. > (I've made consistent 14.4 connects all over the country using my
  147. > cheap Supra modem), their customer service very friendly etc. But they
  148. > just don't offer the calling plans I want. Anyway MCI advertise all
  149. > the time on our local channel which carries Chinese broadcasting, in
  150. > both Cantonese and Mandarin with toll-free numbers you can call which
  151. > are answered by Chinese speaking operators so my wife is always asking
  152. > me why I don't use MCI! I cannot explain modems to her that easily!
  153.  
  154. Why not use both carriers?
  155.  
  156. I would suggest you do this: Switch your line to MCI and use them for
  157. all your voice calls.  You might want to try your modem calls at least
  158. once; you may well be surprised to find that the line quality to the
  159. places you call is perfectly acceptable.
  160.  
  161. However, should you find a place that you cannot call via MCI, simply
  162. force the call to go via AT&T, by dialing 10288, then 1, the area code
  163. and number.
  164.  
  165. If there is a location that you have consistent problems calling via
  166. MCI, by all means call up MCI's customer service and complain!  But
  167. honestly, you should not have that many problems.  All three of the
  168. major carriers use digital fiber optic circuits now so you really
  169. should not notice a difference in the quality of your modem connects,
  170. unless you are calling some place out in the hinterlands.
  171.  
  172. But remember, as long as your phone line has been converted for "equal
  173. access" (MOST lines in the U.S. have by now), you can ALWAYS force a
  174. call to go by the carrier of your choice, simply by prefixing whatever
  175. you'd normally dial with the carrier's "10xxx" code.  Thus, if you'd
  176. normally dial 1-(xxx) xxx-xxxx, you'd instead dial 10xxx-1 (xxx)
  177. xxx-xxxx.  The "10xxx" codes for the "big three" carriers are:
  178.  
  179. 10222 - MCI
  180. 10288 - AT&T
  181. 10333 - Sprint
  182.  
  183. (I know this is all "common knowledge" for regular readers of the
  184. TELECOM Digest, but I have to imagine that new folks stumble through
  185. here at least once in a while!)  :-)
  186.  
  187. AT&T spends a LOT of money on advertising to convince you that their
  188. quality is better.  In my mind, this is just about as valid as the
  189. advertising that oil companies used to run to convince you that one
  190. brand of gasoline was better than another.  In many cases, all the gas
  191.  
  192. stations in a town got their gas from the same source!  It was the
  193. same gas, yet they all tried to convince the public that theirs was
  194. better!
  195.  
  196. And we see a similar situation here, in that in many cases if you are
  197. going to have trouble on a call, the trouble is most likely to be in
  198. the local telco's lines from their point-of-presence (of which there
  199. is often only one per LATA) to their local exchange, and ALL the
  200. carriers use those same lines to complete calls.  If you try a call
  201. over MCI and it doesn't work, and you then try to complete it over
  202. AT&T and it does, that doesn't necessarily mean that AT&T is better,
  203. it just means you got a different circuit from the local telco.  Had
  204. you tried your second attempt on MCI again, you would probably have
  205. been just as satisfied with the result.
  206.  
  207. Mind you, I can find things to complain about regarding all the
  208. carriers, but with AT&T my biggest complaint is that AT&T tries to
  209. make it sound as though their lines are so vastly superior to that of
  210. their competitors when the truth is that there really isn't any
  211. perceptible difference in most cases (certainly nothing you could hear
  212. on a voice call ... and in the past I have seen a few cases where you
  213. couldn't make a modem connect over AT&T, while using MCI produced a
  214. near-perfect connection.  Still, that could also have been a local
  215. telco problem).
  216.  
  217. AT&T's new fax commercials really get me ... they talk about their fax
  218. guarantee but insofar as I can determine from the short amount of time
  219. that the fine print remains on the screen, they only guarantee to
  220. credit your bill for the cost of any failed fax call.  Have the other
  221. carriers refused to do that?  I rather doubt it, since essentially we
  222. are talking a "poor connection" and the major carriers have all issued
  223. credits for those for quite some time!
  224.  
  225.  
  226. Jack Decker | Internet: jack.decker@f8.n154.z1.fidonet.org | Fidonet: 1:154/8
  227.  
  228. ------------------------------
  229.  
  230. From: edg@netcom.com (Ed Greenberg)
  231. Subject: Re: AT&T Are You Listening?
  232. Organization: Netcom Online Communications Services (408-241-9760 login: guest)
  233. Date: Sat, 13 Feb 1993 13:22:39 GMT
  234.  
  235.  
  236. In article <telecom13.84.8@eecs.nwu.edu> John Higdon <john@zygot.ati.
  237. com> writes:
  238.  
  239. > For instance, keep AT&T as your PIC and then sign up with MCI for the
  240. > international plan, keeping your MCI account secondary. Then when you
  241. > call China (or whereever), prepend '10222' to the call. Frontline
  242. > salesslime will tell you that you have to "switch" to take advantage
  243. > of a particular plan, but that is 99.9% hogwash.
  244.  
  245. > I have used various plans offered by Sprint and MCI, but I have never
  246. > "left" AT&T. There is no need.
  247.  
  248. I can second this.  I have an MCI personal 800 number. Even though my
  249. PIC is AT&T, I have a "Friends and Family" account with one number on
  250. it -- mine.  I discount the cost of my 800 calls home by 20% this way.
  251. The whole thing was set up for me by a courteous, respectful, _telecom_
  252. literate_ MCI rep who understood me perfectly when I said that I had
  253. no intention of switching PICs but wanted an MCI 800 number.  She
  254. explained that I could add F&F to a secondary account and set it up.
  255. I checked and checked, waiting to be slammed, and imagine my surprise
  256. when I wasn't!
  257.  
  258.  
  259. Edward W. Greenberg  | Home: +1 408 283 0511 | edg@netcom.com
  260. 1600 Stokes St. #24  | Work: +1 408 764 5305 | DoD#: 0357
  261. San Jose, CA  95126  | Fax:  +1 408 764 5003 | KM6CG (ex WB2GOH)
  262.  
  263. ------------------------------
  264.  
  265. From: johnl@cpqhou.se.hou.compaq.com (John Llorens)
  266. Subject: Re: ANI on 800 Line w/o T1?
  267. Organization: Compaq Computer Corp.
  268. Date: Sat, 13 Feb 1993 17:34:17 GMT
  269.  
  270.  
  271. In article <telecom13.82.14@eecs.nwu.edu> John Higdon <john@zygot.
  272. ati.com> writes:
  273.  
  274. > Tas Dienes <tas@hmcvax.claremont.edu> writes:
  275.  
  276. >> Does anybody know if it is possible to get ANI on an 800 line without
  277. >> having to get T1 service?  I just have a couple of regular (actually,
  278. >> Centranet) lines - local service is GTE, 800 is Sprint.  Sprint says
  279. >> no, but I was wondering if anybody else can?
  280.  
  281. > In order to receive realtime ANI from a long distance carrier, you
  282. > must have a "trunk-side connection". All connections from your telco's
  283. > switch are "line-side connections". So the answer is no, you cannot
  284. > get realtime ANI without having a direct trunk connection to a
  285. > carrier's switch.
  286.  
  287. > There is a way around this however. Stay tuned.
  288.  
  289. You can recieve realtime ANI and DNIS on reqular voice lines via a
  290. DTMF header that begins the call.  While this information is being
  291. transfered to the called, the caller is receiving a ring back tone.
  292.  
  293. When you (called) have processed the ANI/DNIS (database lookup,
  294. operator available, etc ...) you send a special DTMF to the switch to
  295. connect the voice path.  This method requires a Dialogic or equivalent
  296. tone detection/generation equipment at the receiver's end.
  297.  
  298. Who offers this service?
  299.  
  300.    Arch Telecom
  301.    Houston TX
  302.    (713) 222-1995 or 1-800-882-2947
  303.  
  304. How much does it cost?
  305.  
  306.    ATT Readyline rates!
  307.  
  308. Who is the carrier?
  309.  
  310.    ATT (ISDN inbound and outbound for extremely fast call setup times)
  311.  
  312. Features in addition to ANI/DNIS delivery?
  313.  
  314.    ANI Blocking/Passing can be programmed via touchtone.
  315.    Takes effect immediately.
  316.  
  317. Destination number redirect to any domestic number.
  318.  
  319.    Can be programmed via touchtone.
  320.    Takes effect immediately.
  321.  
  322. Can be used as a calling card.
  323.  
  324.    Speed dial codes
  325.  
  326. I think they also offer this service in combination with ATT's new
  327. Vari-a-bill 900 service.
  328.  
  329. etc ... I don't remember all the services/features...
  330.  
  331. I don't know of anyone else using this method for switched long
  332. distance service. I hope the info is useful to those in need of this
  333. service.
  334.  
  335.  
  336. John Llorens    Compaq Computer Corporation   johnl@cpqhou.compaq.com
  337.  
  338. ------------------------------
  339.  
  340. Date: Sat, 13 Feb 93 13:32 PST
  341. From: john@zygot.ati.com (John Higdon)
  342. Reply-To: John Higdon <john@zygot.ati.com>
  343. Organization: Green Hills and Cows
  344. Subject: Re: ANI on 800 Line w/o T1?
  345.  
  346.  
  347. tim gorman <71336.1270@CompuServe.COM> writes:
  348.  
  349. > First, there are ways to get ANI over 800 lines without T1 service.
  350. > It depends entirely on what your long distance provider offers.
  351.  
  352. > If the carrier can offer standard trunking with the ANI sent as an MF
  353. > (or possible DTMF) digit stream and your PBX can handle the specific
  354. > format, then a T1 is not a requirement.
  355.  
  356. > If your PBX can handle Feature Group D signaling formats,
  357.  
  358. Were you responding to the same post I was? The original poster said
  359. that he had ordinary POTS (well Centrex anyway) from GTE and no
  360. special equipment. I assumed he was asking if he could casually get
  361. ANI from a carrier without T1.
  362.  
  363. All POTS circuits are "line side". I never claimed that you could not
  364. get trunk connections from telco (I have them in certain
  365. applications), but the question was not about PBXes, complex
  366. alternatives to IXC direct trunking or anything else. It was about ANI
  367. on POTS. Of course, it is certainly possible for a carrier to provide
  368. there is no such offering at this time.
  369.  
  370. There is even a rumored service from AT&T that provides ANI via the
  371. CNID mechanism to customers. Only problem with that (and why I did not
  372. mention it) is that the poster is from California, the land of
  373. politically correct, anonymous thinking. (An aside: the pest who
  374. called me fifteen times this morning, hanging up each time I answered
  375. will have no worry about HIS identity being discovered. Only in
  376. California!)
  377.  
  378.  
  379. John Higdon  |   P. O. Box 7648   |   +1 408 264 4115     |       FAX:
  380. john@ati.com | San Jose, CA 95150 | 10288 0 700 FOR-A-MOO | +1 408 264 4407
  381.  
  382.  
  383. ------------------------------
  384.  
  385. From: kstox@admips2.naitc.com (Ken Stox)
  386. Subject: Re: FCC Proposed Ruling on Scanners That Receive Cellphones
  387. Reply-To: kstox@admips2.naitc.com (Ken Stox)
  388. Organization: Ministry of Extremely Silly Walks
  389. Date: Sat, 13 Feb 93 17:55:41 GMT
  390.  
  391.  
  392. > 3. As defined in 47 CFR part 15 scanning receivers, or "scanners,"
  393. > are radio receivers that automatically switch between four or more
  394. > frequencies anywhere within the 30-960 Mhz band....
  395.  
  396. I guess my TV set will become illegal too!! It has a mode which
  397. "scans" all channels to see if they are transmitting, and then when
  398. you hit the channel up or down buttons only "active" stations will be
  399. shown.
  400.  
  401. You know, that may not be such a bad idea... :->
  402.  
  403.  
  404. #include <std_disclaimer.h>
  405. Ken Stox     Consultant to A.C. Nielsen    kstox@naitc.com
  406.  
  407. ------------------------------
  408.  
  409. Date: Sat, 13 Feb 93 12:57 PST
  410. From: john@zygot.ati.com (John Higdon)
  411. Reply-To: John Higdon <john@zygot.ati.com>
  412. Organization: Green Hills and Cows
  413. Subject: Re: FCC Proposed Ruling on Scanners That Receive Cellphones
  414.  
  415.  
  416. bloeber@ecst.csuchico.edu (Robert Paul Loeber) writes:
  417.  
  418. > I know this may sound like a dumb question ... but what is the FCCs
  419. > definition of a "radio receiver"?
  420.  
  421. > get a cellular phone (instead of a scanner) ...
  422.  
  423. Also, what is the FCC's definition of "easily modified"? I happen to
  424. know someone who has rewritten the firmware for a very popular
  425. handheld phone to allow it to act as a powerful monitor of cellular
  426. communications. Unlike an ordinary scanner, this modified product has
  427. the ability to follow a conversation after a handoff.
  428.  
  429. Believe me, if I wanted to listen in on cellular traffic I would not
  430. waste any time or effort with my venerable Yaesu. The [name withheld]
  431. "Special Edition" cellular phone would be my weapon of choice!
  432.  
  433. Scanner laws will be just about as effective as gun laws -- only much
  434. sillier. The FCC is seriously deluded if it thinks it can win a
  435. technological war with anyone. The below-average moron outguns the FCC
  436. in the brain cell department.
  437.  
  438.  
  439. John Higdon  |   P. O. Box 7648   |   +1 408 264 4115     |       FAX:
  440. john@ati.com | San Jose, CA 95150 | 10288 0 700 FOR-A-MOO | +1 408 264 4407
  441.  
  442. ------------------------------
  443.  
  444. End of TELECOM Digest V13 #89
  445. *****************************
  446.