ciao,
allora prova con questi valori 120000 22500 22500.
la documentazione cisco a riguardo parlando di rate-limit, indica che questo filtro varia in funzione anche del tempo (nn so se hai mai sentito farlare di token, burst ecc... ecc...), quindi la formula corretta sarebbe la seguente (utilizzando un tempo medio di 1,5 secondi):
primo valore: è il limite in bit che vuoi applicare quindi 120000 (15000 byte)
secondo valore (normal burst): primo valore / 8 (numero di bit che compongono un byte) * 1,5 (tempo medio in secondi di riempimento de secchiello) ---> (120000/8)*1,5=225000
terzo valore (extended burst): che in questo caso è uguale al secondo valore
cmq la documentazione cisco dice:
###############################################
Input and Output Rate Limiting on an Interface Example
In this example, a customer is connected to an Internet service provider (ISP) by a T3 link. The ISP wants to rate limit transmissions from the customer to 15 Mbps of the 45 Mbps. In addition, the customer is allowed to send bursts of 2,812,500 bytes. All packets exceeding this limit are dropped. The following commands are configured on the High-Speed Serial Interface (HSSI) of the ISP connected to the customer:
interface Hssi0/0/0
description 45Mbps to R1
rate-limit input 15000000 2812500 2812500 conform-action transmit exceed-action drop
ip address 200.200.14.250 255.255.255.252
rate-limit output 15000000 2812500 2812500 conform-action transmit exceed-action drop
###############################################
il link dell'esempio è questo:
http://www.cisco.com/en/US/docs/ios/12_ ... cfcar.html
il link che spiega il burst e la storia dei token e del secchiello è questo:
http://www.cisco.com/warp/public/732/Tech/car/
ciaoooooooo