Link to home
Start Free TrialLog in
Avatar of Genet
Genet

asked on

ATM calculations

I am trying to wrap my head around some ATM calculations.

transfer burst <= 7 frames
1 frame = 2048 bytes of data
mean time between bursts = 80ms
bandwith required = 2.048 Mbps

calculate:
peak cell rate
maximum burst size
sustainable cell rate
Avatar of ZiaTioN
ZiaTioN

I wrote a small perl script to convert from ATM cells to IP packets and vise versa. You can find that program at http://www.perlskripts.com/scripts/converter/IP-2-ATM . That should help you with your issues. I also wrote a command line one designed to run on any Unix.Linux machine if that would better serve your purpose. I used Tk for the gui building on this one so it will run on any platoform that runs perl.

Basically all you need to do is calculate the Peak Cello Rate then you can adjust for Sustained Cell Rate and Mximum Burst Size yourself. For an IP bandwidth of 2.048 MB/s that would equate to 4,830 cps (Cells Perl Second) PCR. That is your max data transfer to set your SVC or SPVC for. Now for SCR usually around 80% of your PCR is a good percentage to go with. so around 3,500 cps for SCR maybe even 4,000 if you want to go a little higher. As for MBS you will usually set this to 50 no matter what the data transfer is. The Max Burst Size is simply the amount of cells you will allow to burst at PCR. So if your SVC burst from SCR to PCR you tell your circuit to allow this for 50 cells and then to back it back down.
ASKER CERTIFIED SOLUTION
Avatar of Computer101
Computer101
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Hmm, it seems that maybe the only person who answered the question should have recieved the points. I would have posted this objection sooner but was unaware of the status of the question.
I must update the link above. I have since moved the script being referenced and you can no longer find it at the link above. The new location is: http://www.perlskripts.com/cgi-bin/showscript.cgi?IP-to-ATM=show