snmp/mrtg scale/config

I have an mrtg server graphing a bunch of cisco/juniper/whatever hosts just fine, but when I try to graph an epmp link it just seems to not graph right. Here's a graph of one box running about 50M:

epmp_mrtg.png

Looks like it's maybe off by a factor of 10 somehow? Also, the upload graph just dies after awhile. Here's the relevant parts of my mrtg.cfg file, which was generated by cfgmaker utility:

Target[192.168.1.42_1]: 1:blah@192.168.1.42:
SetEnv[192.168.1.42_1]: MRTG_INT_IP="No Ip" MRTG_INT_DESCR="LAN-interface-1"
MaxBytes[192.168.1.42_1]: 1250000
Title[192.168.1.42_1]: Traffic Analysis for 1 -- blah
PageTop[192.168.1.42_1]: <h1>Traffic Analysis for 1 -- blah</h1>
                <div id="sysdetails">
                        <table>
                                <tr>
                                        <td>System:</td>
                                        <td>blah in undefined</td>
                                </tr>
                                <tr>
                                        <td>Maintainer:</td>
                                        <td>undefined</td>
                                </tr>
                                <tr>
                                        <td>Description:</td>
                                        <td>LAN-interface-1  </td>
                                </tr>
                                <tr>
                                        <td>ifType:</td>
                                        <td>ethernetCsmacd (6)</td>
                                </tr>
                                <tr>
                                        <td>ifName:</td>
                                        <td>LAN interface 1</td>
                                </tr>
                                <tr>
                                        <td>Max Speed:</td>
                                        <td>1250.0 kBytes/s</td>
                                </tr>
                                <tr>
                                        <td>Ip:</td>
                                        <td>No Ip (No DNS name)</td>
                                </tr>
                        </table>
                </div>

 Does anyone have an example mrtg.cfg with a working epmp?

Okay, I figured it out, the snmp discovery for some reason misreads the scale, so just add an extra zero like:

MaxBytes[192.168.1.42_1]: 12500000

and it should start scaling fine. HTH someone else working on the same thing :)