questions related to delay pool help plz

Discussion in 'HOWTO-Related Questions' started by imranikram, Dec 24, 2009.

  1. imranikram

    imranikram New Member

    hi
    i am new to linux, having problems with delay pool, kindly help

    acl accounts src 192.168.0.1-192.168.0.133/255.255.255.0
    acl accounts src 192.168.0.135-192.168.0.254/255.255.255.0
    acl full src 192.168.0.134/255.255.255.0

    http_access allow accounts
    http_access allow full
    http_access deny all

    delay_pools 2
    delay_class 1 2
    delay_parameters 1 9000000/9000000 20000/20000
    delay_access 1 allow accounts
    delay_access 1 deny all

    delay_class 2 2
    delay_parameters 1 9000000/9000000 250000/250000
    delay_access 1 allow full
    delay_access 1 deny all

    well why all my ips are getting the speed i mentioned in delay pool, even 192.168.0.134, as i have excluded it in delay pool. what is wrong with the configuration. i want 192.168.0.134 to get maximum speed available, while rest of the network goes with the mentioned speed.
    thanks in advance
     
  2. topdog

    topdog Active Member

    For one this mask is wrong
    Code:
    acl full src 192.168.0.134/255.255.255.0
    it should be
    Code:
     acl full src 192.168.0.134/255.255.255.255
     

Share This Page