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

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

<channel>
<title>Topic &#x27;Multiple ADSL WIC SNMP weirdness&#x27; in forum &#x27;Cisco&#x27; - dslreports.com</title>
<link>http://www.dslreports.com/forum/Multiple-ADSL-WIC-SNMP-weirdness-22672004</link>
<description></description>
<language>en</language>
<pubDate>Fri, 10 Feb 2012 00:28:47 EDT</pubDate>
<lastBuildDate>Fri, 10 Feb 2012 00:28:47 EDT</lastBuildDate>

<item>
<title>Re: Multiple ADSL WIC SNMP weirdness</title>
<link>http://www.dslreports.com/forum/Re-Multiple-ADSL-WIC-SNMP-weirdness-22680137</link>
<description><![CDATA[kamikatze posted : scli is pretty complex, but i can't confirm it can return the exact info `show dsl int` does.<br><br><pre class="brush: text">#scli -c "show scli command tree" | grep -i atm&#012;   |- atm&#012;   |     |- info           show atm interface info &lt;regexp&gt;&#012;   |     `- details        show atm interface details &lt;regexp&gt;&#012; &#012;</pre><!--end code block--><br>What snmp client are you using to browse the tree?<br>If snmpwalk doesn't list the interface, you've probably hit a bug in IOS's snmpd.<br><br>You can always do a little Python magic to grab what you need from IOS CLI via ssh ;)<br><br><pre class="brush: text">import pexpect&#012;import os&#012; &#012;password = 'bobloblaw'&#012; &#012;ssh = pexpect.spawn("ssh user@router")&#012;ssh.expect('Password:')&#012;ssh.sendline(password)&#012; &#012;ssh.expect('IneedMoreRAM&gt;')&#012;ssh.sendline('show ip bgp summary')&#012; &#012;ssh.expect('IneedMoreRAM&gt;')&#012;print ssh.before&#012; &#012;ssh.sendline('exit')&#012;ssh.sendline('exit')&#012;ssh.close()&#012; &#012;</pre><!--end code block--><br>You get the idea..<br>]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/Re-Multiple-ADSL-WIC-SNMP-weirdness-22680137</guid>
<pubDate>Thu, 09 Jul 2009 13:12:46 EDT</pubDate>
</item>

<item>
<title>Re: Multiple ADSL WIC SNMP weirdness</title>
<link>http://www.dslreports.com/forum/Re-Multiple-ADSL-WIC-SNMP-weirdness-22678069</link>
<description><![CDATA[code0 posted : Looks interesting, but it doesn't solve my problem. If I want to look at interface status, I can see it by looking at the ATM "interface" associated with the connection ("ATM0/0-atm layer" for example).<br><br>My need is to monitor the DSL related stats like below:<br><br><pre><br>gw-dsl>sh dsl int atm0/0<br>ATM0/0<br>Alcatel 20150 chipset information<br> &#9;&#9;ATU-R (DS)&#9;&#9;&#9;ATU-C (US)<br>Modem Status:&#9; Showtime (DMTDSL_SHOWTIME)<br>DSL Mode:&#9; ITU G.992.1 (G.DMT) Annex A<br>ITU STD NUM: &#9; 0x01&#9;&#9;&#9;&#9; 0x1 <br>Vendor ID:&#9; '    '&#9;&#9;&#9;&#9; 'BDCM'<br>Vendor Specific: 0xDBB0&#9;&#9;&#9;&#9; 0x6193<br>Vendor Country:&#9; 0x04&#9;&#9;&#9;&#9; 0xB5<br>Capacity Used:&#9; 71%&#9;&#9;&#9;&#9; 97%<br>Noise Margin:&#9; 17.5 dB&#9;&#9;&#9; 10.0 dB<br>Output Power:&#9; 20.0 dBm&#9;&#9;&#9; 12.0 dBm<br>Attenuation:&#9; 17.0 dB&#9;&#9;&#9; 10.0 dB<br>Defect Status:&#9; None                            None                        <br>Last Fail Code:&#9; None<br>Watchdog Counter: 0x34<br>Watchdog Resets: 0<br>Selftest Result: 0x00<br>Subfunction:&#9; 0x15 <br>Interrupts:&#9; 1078263 (662 spurious)<br>PHY Access Err:&#9; 0<br>Activations:&#9; 3<br>LED Status:&#9; ON<br>LED On Time:&#9; 100<br>LED Off Time:&#9; 100<br>Init FW:&#9; embedded<br>Operation FW:&#9; embedded<br>FW Version:&#9; 3.8131<br> <br> &#9;&#9; Interleave&#9;&#9;Fast&#9;Interleave&#9;&#9;Fast<br>Speed (kbps):&#9;       7168&#9;           0&#9;       832&#9;           0<br>Cells:&#9;&#9;   33721434&#9;           0&#9; 280046394&#9;           0<br>Reed-Solomon EC:          0&#9;           0&#9;        15&#9;           0<br>CRC Errors:&#9;          0&#9;           0&#9;         0&#9;           0<br>Header Errors:&#9;          0&#9;           0&#9;         0&#9;           0<br>Bit Errors:&#9;          0&#9;           0<br>BER Valid sec:&#9;          0&#9;           0<br>BER Invalid sec:          0&#9;           0<br> <br>LOM Monitoring : Disabled<br></pre><br>]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/Re-Multiple-ADSL-WIC-SNMP-weirdness-22678069</guid>
<pubDate>Thu, 09 Jul 2009 08:31:13 EDT</pubDate>
</item>

<item>
<title>Re: Multiple ADSL WIC SNMP weirdness</title>
<link>http://www.dslreports.com/forum/Re-Multiple-ADSL-WIC-SNMP-weirdness-22674852</link>
<description><![CDATA[kamikatze posted : I've had a similar issue in the past with BRI interfaces, however scli could read them just fine. Give it a shot.<br><br>&raquo;<A HREF="https://trac.eecs.jacobs-university.de/projects/scli/" >trac.eecs.jacobs-university.de/p&middot;&middot;&middot;ts/scli/</A><br><br><pre class="brush: text">#scli -c "monitor interface stats" 10.1.29.1 ReadOnlyCommunity&#012;INTERFACE STATUS I-BPS O-BPS I-PPS O-PPS I-ERR O-ERR  DESCRIPTION&#012;        1  UUCN      0    27     0     0     0     0  FastEthernet0&#012;        2  UDCN      0     0     0     0     0     0  FastEthernet1&#012;        3  UDCN      0     0     0     0     0     0  FastEthernet2&#012;        4  UDCN      0     0     0     0     0     0  FastEthernet3&#012;        5  UUCN   1382  1548     3     3     0     0  FastEthernet4&#012;        6  UUNN      0     0     0     0     0     0  Null0&#012;        7  UUNN      0     0     0     0     0     0  Vlan1&#012;        8  UUNN   1071  1203     3     3     0     0  Tunnel1&#012;        9  UONN      0     0     0     0     0     0  Dialer0&#012;       10  UUNN   1304  1541     3     3     0     0  Virtual-Access1&#012; &#012;</pre><!--end code block-->]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/Re-Multiple-ADSL-WIC-SNMP-weirdness-22674852</guid>
<pubDate>Wed, 08 Jul 2009 16:21:56 EDT</pubDate>
</item>

<item>
<title>Re: Multiple ADSL WIC SNMP weirdness</title>
<link>http://www.dslreports.com/forum/Re-Multiple-ADSL-WIC-SNMP-weirdness-22672012</link>
<description><![CDATA[code0 posted : BTW, "show dsl interface atm0/0", etc. work for the live interfaces as expected.]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/Re-Multiple-ADSL-WIC-SNMP-weirdness-22672012</guid>
<pubDate>Wed, 08 Jul 2009 09:15:35 EDT</pubDate>
</item>

<item>
<title>Multiple ADSL WIC SNMP weirdness</title>
<link>http://www.dslreports.com/forum/Multiple-ADSL-WIC-SNMP-weirdness-22672004</link>
<description><![CDATA[code0 posted : We've got a 3745 currently with 4 ADSL WICs (ATM0/0, ATM0/1, ATM0/2, and ATM1/0) - 2 are active at the moment.<br><br>The weirdness is that only the first WIC shows as a DSL interface to SNMP. Also, when I walk the DSL interface statistics tree, I only see stats for ATM0/0, and not 0/1 (I wouldn't expect the other 2 since they aren't live at the moment). I checked the configuration for the interfaces, and they are exactly the same. Have I hit some sort of limit?<br><br>BTW, the 2 live connections are part of a MLPPP link.<br><br>ADSL WIC config (all are the same):<br><pre><br>interface ATM0/0<br> no ip address<br> no atm ilmi-keepalive<br> dsl operating-mode auto <br> hold-queue 224 in<br> pvc 0/32 <br>  encapsulation aal5mux ppp dialer<br>  dialer pool-member 1<br> !<br>!<br></pre><br><br>SNMP configuration:<br><pre><br>snmp-server community public RO<br></pre><br>]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/Multiple-ADSL-WIC-SNMP-weirdness-22672004</guid>
<pubDate>Wed, 08 Jul 2009 09:13:58 EDT</pubDate>
</item>

</channel>
</rss>

