I need create 4 flow, 2 for internet and 2 for my network (mailserver, voip, etc). Downstream flow work fine but not upstream flow, always match with flow for internet (64K). where I wrong?
Necesito crear 4 flujos, 2 para internet y 2 para mi red (servidores de correo, etc), para que vayan más rápido. El downstream funciona bien, y baja a diferentes velocidades segun el flujo que le corresponda, pero el upstream siempre baja a la velocidad internet (64K).
¿donde le estoy errando?
My conf:
Main
{
NetworkAccess 1;
GlobalPrivacyEnable 0;
MaxCPE 2;
UsServiceFlow
{
UsServiceFlowRef 1;
QosParamSetType 7;
TrafficPriority 5;
MaxRateSustained 1048000;
MinReservedRate 512000;
}
DsServiceFlow
{
DsServiceFlowRef 2;
QosParamSetType 7;
TrafficPriority 5;
MaxRateSustained 1048000;
}
UsServiceFlow
{
UsServiceFlowRef 3;
QosParamSetType 7;
TrafficPriority 7;
MaxRateSustained 64000;
}
DsServiceFlow
{
DsServiceFlowRef 4;
QosParamSetType 7;
TrafficPriority 7;
MaxRateSustained 522000;
MinReservedRate 0;
}
UsPacketClass
{
ClassifierRef 1;
ServiceFlowRef 1;
ActivationState 1;
IpPacketClassifier
{
IpDstAddr 200.24.240.0;
IpDstMask 255.255.248.0;
}
}
DsPacketClass
{
ClassifierRef 2;
ServiceFlowRef 2;
ActivationState 1;
IpPacketClassifier
{
IpSrcAddr 200.24.240.0;
IpSrcMask 255.255.248.0;
}
}
UsPacketClass
{
ClassifierRef 3;
ServiceFlowRef 3;
ActivationState 1;
IpPacketClassifier
{
IpDstAddr 0.0.0.0;
IpDstMask 0.0.0.0;
}
}
DsPacketClass
{
ClassifierRef 4;
ServiceFlowRef 4;
ActivationState 1;
IpPacketClassifier
{
IpSrcAddr 0.0.0.0;
IpSrcMask 0.0.0.0;
}
}
}
works! thanks
Funciona!, Gracias