<?xml version="1.0" encoding="UTF-8"?>

<rss version="2.0" xmlns:blogChannel="http://backend.userland.com/blogChannelModule">

<channel>
<title>docsdiag help in OptimumOnline</title>
<link>http://www.dslreports.com/forum/r13087483</link>
<description></description>
<language>en</language>
<pubDate>Fri, 04 Dec 2009 15:04:43 EDT</pubDate>
<lastBuildDate>Fri, 04 Dec 2009 15:04:43 EDT</lastBuildDate>

<item>
<title>Re: docsdiag help</title>
<link>http://www.dslreports.com/forum/remark,13106465</link>
<description><![CDATA[<A HREF="/useremail/u/672928"><b>StreetSpirit</b></A> : The perl script works, thank you, it correctly identifies the private ip of the modem, however maybe you can help me debug this problem.<br><br>This is the output I get. I'm using CPAN's Net::SNMP package and ActiveState 5.8.6 Binary Build 811.<br><br>[code]<br>$getoolip.pl<br>Network IP Address:  10.41.96.xx == correct (not the gateway)<br>ERROR: Received noSuchName(2) error-status at error-index 1.<br><br>$<br><br>I'm using Windows XP. I installed Net::SNMP with ppm3 (perl package manager). I ran it and got the above output.<br><br>I then installed the entire Win32 build of Net:SNMP with the same results.<br><br>My goal is to get this script working under XP.<br>Thanks in advace,<br>David]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,13106465</guid>
<pubDate>Wed, 06 Apr 2005 21:07:49 EDT</pubDate>
</item>

<item>
<title>Re: docsdiag help</title>
<link>http://www.dslreports.com/forum/remark,13101792</link>
<description><![CDATA[<A HREF="/useremail/u/672928"><b>StreetSpirit</b></A> : Aaah! Now I get it :)<div class="borderless"><TABLE WIDTH=95% align=center border=0 CELLPADDING=4"><TR><TD ALIGN=CENTER VALIGN=CENTER BGCOLOR=#000000 nwrap COLSPAN=3 WIDTH=100%><A HREF="/speak/slideshow/13101792?c=803500&ret=L2ZvcnVtL3IxMzA4NzQ4My54bWw%3D"><IMG class="apic" BORDER=0 TITLE="67547 bytes" WIDTH=600 HEIGHT=500 SRC="/r0/download/803500.thumb600~66d010d10e69d59f9162aa9cb33e1fb1/modem_ip.png/thumb.jpg" ALT="Click for full size"></A></TD></TABLE></div>]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,13101792</guid>
<pubDate>Wed, 06 Apr 2005 11:32:32 EDT</pubDate>
</item>

<item>
<title>Re: docsdiag help</title>
<link>http://www.dslreports.com/forum/remark,13099132</link>
<description><![CDATA[<A HREF="/useremail/u/653770"><b>TheWiseGuy</b></A> : Thanks, ;) a screen capture is the best way to show how it is done. :)<br><SMALL>--<br>Dog and Butterfly</SMALL>]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,13099132</guid>
<pubDate>Tue, 05 Apr 2005 23:48:59 EDT</pubDate>
</item>

<item>
<title>Re: docsdiag help</title>
<link>http://www.dslreports.com/forum/remark,13098749</link>
<description><![CDATA[<A HREF="/useremail/u/796542"><b>howie</b></A> : As  TheWiseGuy <A HREF="/useremail/u/653770"><IMG SRC="http://i.dslr.net/bb/profile.gif" ALT="See Profile" BORDER=0 WIDTH=16 HEIGHT=11></A> has noted, a "packet sniffing" utility such as CommView is a fast and easy way to determine the IP of your modem. It's as simple as powering off your modem, starting the sniffer, plugging the modem back in and then as entries begin to appear, note the IP numbers next to the ARP entry with your modem's MAC. There will be two 10.xxx numbers shown. The lefthand number shown is your modem's IP (see above). A trial version of CommView is available here:<br>&raquo;<A HREF="http://www.tamosoft.com" >www.tamosoft.com</A><br><SMALL>--<br>"I'm as sure as I can be...  without any, you know, proof!" - Adrian Monk</SMALL><div class="borderless"><TABLE WIDTH=95% align=center border=0 CELLPADDING=4"><TR><TD ALIGN=CENTER VALIGN=CENTER BGCOLOR=#000000 nwrap COLSPAN=3 WIDTH=100%><A HREF="/speak/slideshow/13098749?c=803293&ret=L2ZvcnVtL3IxMzA4NzQ4My54bWw%3D"><IMG TITLE="56786 bytes" BORDER=0 WIDTH=453 HEIGHT=142 SRC="/r0/download/803293~8f2b8d5b390249e2714f3906f842fd96/modemIP.png"></A><br>Modem IP</TD></TABLE></div>]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,13098749</guid>
<pubDate>Tue, 05 Apr 2005 23:02:21 EDT</pubDate>
</item>

<item>
<title>Re: docsdiag help</title>
<link>http://www.dslreports.com/forum/remark,13093651</link>
<description><![CDATA[<A HREF="/useremail/u/285788"><b>n2jtx</b></A> : When I traceroute to www.cablevision.com I get the first hop as 10.20.0.1 which is the gateway not the modem (same thing happens on Rogers cable in Mississauga, ON).<br><br>For those who have Perl and the Net::SNMP package installed on their system, this script I wrote some time ago can retrieve the network side address (as well as issue an alert if your uploads are capped).  You need to be able to get a on 192.168.100.1 so you may need to remove your router temporarily:<br><br><div class="code"><PRE><span class="codetext"># GetIP.pl - Query DOCSIS modem for network side IP address<br> <br>use Net::SNMP;<br> <br># Use the standard Cable Modem address of 192.168.100.1 with a community string of public.<br># Unless it has been changed, this should work without any problems.<br> <br>my $HOST = @ARGV&#91;0&#93;;<br>my $HOST = "192.168.100.1" unless $HOST;<br> <br>($session, $error) = Net::SNMP-&gt;session(<br>  -hostname =&gt; shift | $HOST,<br>  -community =&gt; shift | "public",<br>  -port =&gt; shift | 161,<br>  -timeout =&gt; 60<br>  );<br>if (!defined($session)) {<br>  printf("ERROR: %s.\n", $error);<br>  exit 1;<br>}<br> <br>############################################################<br>my $OID_IpAdEntAddr         = '1.3.6.1.2.1.4.20.1';<br>my $OID_QosMaxUpstream      = '1.3.6.1.2.1.10.127.1.1.3.1.3.1';<br>############################################################<br> <br>$k = SNMPGetNextRequest($session, $OID_IpAdEntAddr);<br>($IPMib) = keys(%$k);<br>printf("Network IP Address:  %s\n",<br>  SNMPGetRequest($session, $IPMib)<br>);<br> <br>$QosMaxUpstream = SNMPGetRequest($session, $OID_QosMaxUpstream);<br>printf("Qos Max Upstream Bandwidth: %s bps\n",<br>  Commas($QosMaxUpstream)<br>);<br>print "\n** THE UPSTREAM BANDWIDTH HAS BEEN CAPPED **\n"<br>  if ($QosMaxUpstream &lt; 1000000);<br> <br>$session-&gt;close();<br>exit 0;<br> <br>#<br># Commas( &lt;Number&gt; )<br>#<br># RETURN: Comma seperated number<br>#<br> <br>sub Commas {<br>  local($_) = @_;<br>  1 while s/(.*\d)(\d\d\d)/$1,$2/;<br>  $_;<br>}<br> <br>#<br># SNMPGetRequest(&lt;SNMP Session Object&gt;, &lt;OID String&gt; )<br>#<br># RETURN: SNMP value for specified OID string<br>#<br> <br>sub SNMPGetRequest {<br>  local($session) = shift @_;<br>  local($OID) = shift @_;<br> <br>  if (!defined($response = $session-&gt;get_request($OID))) {<br>    printf("ERROR: %s.\n", $session-&gt;error());<br>    $session-&gt;close();<br>    exit 1;<br>  }<br>  return $response-&gt;{$OID}<br>}<br>  <br>#<br># SNMPGetNextRequest(&lt;SNMP Session Object&gt;, &lt;OID String&gt; )<br>#<br># RETURN: Hash containing found OID.<br>#<br> <br>sub SNMPGetNextRequest {<br>  local($session) = shift @_;<br>  local($OID) = shift @_;<br> <br>  if (!defined($response = $session-&gt;get_next_request($OID))) {<br>    printf("ERROR: %s.\n", $session-&gt;error());<br>    $session-&gt;close();<br>    exit 1;<br>  }<br>  return $response;<br>}</SPAN></PRE></DIV><br><SMALL>--<br>I support the right to keep and arm bears.</SMALL>]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,13093651</guid>
<pubDate>Tue, 05 Apr 2005 13:26:44 EDT</pubDate>
</item>

<item>
<title>Re: docsdiag help</title>
<link>http://www.dslreports.com/forum/remark,13093382</link>
<description><![CDATA[<A HREF="/useremail/u/653770"><b>TheWiseGuy</b></A> : Hmmm, the 10.xxx.xxxx.xxx IP that is the first hop in a tracert is the Default Gateway IP of the modem subnet, not the private IP of the cable modem. The Modem acts as a transparent bridge and therefore does not decrease the ttl and send an ICMP type 11 when the ttl = 0.<br><br>I believe you can see the IP of the cable modem by sniffing traffic and rebooting the modem or by using docsdiag via the formula in the <A HREF="http://www2.dslreports.com/faq/2815">FAQ</A>.<br><SMALL>--<br>Dog and Butterfly</SMALL>]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,13093382</guid>
<pubDate>Tue, 05 Apr 2005 12:50:51 EDT</pubDate>
</item>

<item>
<title>Re: docsdiag help</title>
<link>http://www.dslreports.com/forum/remark,13093292</link>
<description><![CDATA[<A HREF="/useremail/u/672928"><b>StreetSpirit</b></A> : Most customers can also see their assigned 10.x.x.x number by doing a tracert. The first (or second for those with routers that show up in a tracert) hop is your modem's 10.x.x.x address.<br><br><div class="code"><PRE><span class="codetext">C:\ipv6\bin&gt;tracert www.cablevision.com<br> <br>Tracing route to www.cablevision.com &#91;66.54.41.193&#93;<br>over a maximum of 30 hops:<br> <br>  1     6 ms     6 ms     7 ms  10.41.xx.x   &lt;=--- <br>  2    10 ms     8 ms     7 ms  dstswr1-vlan2.rh.nyk2ny.cv.net &#91;67.83.220.161&#93;<br>  3     8 ms     7 ms     8 ms  r3-ge0-1-2.mhe.hcvlny.cv.net &#91;67.83.220.129&#93;<br>  4    12 ms     8 ms     9 ms  r1-srp0-0.wan.hcvlny.cv.net &#91;65.19.104.193&#93;<br>&lt;..snip..&gt;</SPAN></PRE></DIV><br>Notice the 1st hop... Caveat: Some (very few) members can't do this if their CMTS doesn't reply to ICMP echo requests.<br><br>HTH<br>David<br>FWIW I use the -cmmac parameter and specify my HFC mac when running DocsDiag.<br>]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,13093292</guid>
<pubDate>Tue, 05 Apr 2005 12:40:19 EDT</pubDate>
</item>

<item>
<title>Re: docsdiag help</title>
<link>http://www.dslreports.com/forum/remark,13092469</link>
<description><![CDATA[<A HREF="/useremail/u/285788"><b>n2jtx</b></A> : You definitely need to use your modems 10.x.x.x address when behind a router.  Figuring it out though can be a pain.  Probably the easiest thing to do is to temporarily remove the router and use DOCSDIAG to dump out all of parameters to a file using -vv.  Then search the file for the string .iso.3.6.1.2.1.4.20.1.1 (this is the DOCSIS SNMP ipAdEntAddr value).  Right after that string will be four additional numbers, the first being 10, that will be your 10.x.x.x address.<br><SMALL>--<br>I support the right to keep and arm bears.</SMALL>]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,13092469</guid>
<pubDate>Tue, 05 Apr 2005 10:45:06 EDT</pubDate>
</item>

<item>
<title>Re: docsdiag help</title>
<link>http://www.dslreports.com/forum/remark,13091247</link>
<description><![CDATA[<A HREF="/useremail/u/746813"><b>NJBlackBerry</b></A> : I use the following command from behind a router...<br><br>java -cp docsdiag.jar docsdiag -cmip 10.x.x.x -cmmac 00204xxxxx<br><br>Use (obviously) the 10.x IP address of your cable modem and the appropriate cable modem MAC address.<br><br> ]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,13091247</guid>
<pubDate>Tue, 05 Apr 2005 06:11:03 EDT</pubDate>
</item>

<item>
<title>Re: docsdiag help</title>
<link>http://www.dslreports.com/forum/remark,13091025</link>
<description><![CDATA[<A HREF="/useremail/u/552622"><b>murcury2</b></A> : [quot]C:\DOCUME~1\MURCURY\DESKTOP\DOCSDIAG>java -cp docsdiag.jar docsdiag -v > results<br>.txt<br><br>C:\DOCUME~1\MURCURY\DESKTOP\DOCSDIAG><HR></BLOCKQUOTE><br><br>::sigh::<br><br> <BLOCKQUOTE><SMALL>quote:</SMALL><HR>DocsDiag v030720 Copyright 2001-3 Robin Walker rdhw@cam.ac.uk<br><br>Cable modem not found<br><HR></BLOCKQUOTE><br><br>whatever...if i have to use it i'll just hook it directly to the modem.  thanks anyway.]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,13091025</guid>
<pubDate>Tue, 05 Apr 2005 04:06:34 EDT</pubDate>
</item>

<item>
<title>Re: docsdiag help</title>
<link>http://www.dslreports.com/forum/remark,13088926</link>
<description><![CDATA[<A HREF="/useremail/u/653770"><b>TheWiseGuy</b></A> : <div class="bquote"><SMALL>said by  murcury2 <A HREF="/useremail/u/552622"><IMG SRC="http://i.dslr.net/bb/profile.gif" ALT="See Profile" BORDER=0 WIDTH=16 HEIGHT=11></A>:</SMALL><br><br> <BLOCKQUOTE><SMALL>quote:</SMALL><HR>C:\DOCUME~1\MURCURY\DESKTOP\DOCSDIAG>java docsdiag.jar docsdiag -v > results.txt<br><br>Exception in thread "main" java.lang.NoClassDefFoundError: docsdiag/jar<HR></BLOCKQUOTE><br> </DIV><div class="bquote"><SMALL>said by  GeekNJ <A HREF="/useremail/u/206593"><IMG SRC="http://i.dslr.net/bb/profile.gif" ALT="See Profile" BORDER=0 WIDTH=16 HEIGHT=11></A>:</SMALL><br><br>java -cp docsdiag.jar docsdiag >results.txt<br> </DIV>You left out the -cp maybe you should copy and paste it or use the batch file included? I added the out to results in the quote from Geeks post so you can copy and paste.<br><SMALL>--<br>Dog and Butterfly</SMALL>]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,13088926</guid>
<pubDate>Mon, 04 Apr 2005 21:49:47 EDT</pubDate>
</item>

<item>
<title>Re: docsdiag help</title>
<link>http://www.dslreports.com/forum/remark,13088555</link>
<description><![CDATA[<A HREF="/useremail/u/552622"><b>murcury2</b></A> :  <BLOCKQUOTE><SMALL>quote:</SMALL><HR>C:\DOCUME~1\MURCURY\DESKTOP\DOCSDIAG>java docsdiag.jar docsdiag -v > results.txt<br><br>Exception in thread "main" java.lang.NoClassDefFoundError: docsdiag/jar<HR></BLOCKQUOTE>]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,13088555</guid>
<pubDate>Mon, 04 Apr 2005 21:07:51 EDT</pubDate>
</item>

<item>
<title>Re: docsdiag help</title>
<link>http://www.dslreports.com/forum/remark,13087551</link>
<description><![CDATA[<A HREF="/useremail/u/206593"><b>GeekNJ</b></A> : Looking at the FAQ here at &raquo;<A HREF="/faq/optonline">Optimum Online FAQ</A> &raquo;<A HREF="/faq/2815">Running DocsDiag to see detailed modem info</A><br>you should be calling it like:<br><br>java -cp docsdiag.jar docsdiag<br><br>Not -jar as you posted.]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,13087551</guid>
<pubDate>Mon, 04 Apr 2005 19:07:24 EDT</pubDate>
</item>

<item>
<title>docsdiag help</title>
<link>http://www.dslreports.com/forum/remark,13087483</link>
<description><![CDATA[<A HREF="/useremail/u/552622"><b>murcury2</b></A> : I am trying to setup docsdiag from behind my router.  I set the ip of the router to 192.168.100.2.  I run java -jar docsdiag.jar docsdiag -vv > results.txt and this is the output of the file<br><br>Unrecognised parameter docsdiag<br>Usage: <br><br>how might i fix this?]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,13087483</guid>
<pubDate>Mon, 04 Apr 2005 18:59:24 EDT</pubDate>
</item>

</channel>
</rss>
