QOS packet scheduler and group policy

 
Thread Tools Search this Thread
Special Forums Windows & DOS: Issues & Discussions QOS packet scheduler and group policy
# 1  
Old 10-22-2010
QOS packet scheduler and group policy

hi,

did anyone know how to configure a priority of dns ports (and other ports) on QOS on windows 2003? hard to understand the group policy "explain" tab on 'qos packet scheduler', no elaboration on how to use it.

thanks for any comment you may add.



---------- Post updated at 05:03 PM ---------- Previous update was at 01:15 AM ----------




i think i can't prioritize ports here, only packets policy...
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

AD Group Policy Management and Kerberos / LDAP

Has anyone attempted to define GPO / HBAC policies in Windows Server 2012 that could be respected by Kerberos/LDAP on AIX? I'm looking to associate servers to groups so that when a user part of a group tries to login to a host not associated with that group, it would be denied. This would allow... (3 Replies)
Discussion started by: Devyn
3 Replies

2. AIX

Packet loss coming with big packet size ping

(5 Replies)
Discussion started by: Vishal_dba
5 Replies

3. IP Networking

Internet QOS woes

I'm looking for recommendations for a general problem. Apparently (that is according to my boss and coworkers) I am responsible for guaranteeing quality of service to our remote MySQL server during the course of the day. They may run a complete database restore for any number of reasons and are... (1 Reply)
Discussion started by: Astrocloud
1 Replies

4. IP Networking

QOS using tc

Hello all my friends Please Read to understand my problem I have 1 MB bandwidth and two networks then i did traffic control on my two internal interfaces i.e eth1(192.168.3.0/24) and eth2(172.16.3.0/24) (internal) and eth0 (outside) Then i divided my bandwidth using tc command with the... (3 Replies)
Discussion started by: rink
3 Replies

5. IP Networking

QOS script

Does anyone know how can I determine which user is UPLOADING via http protocol? Like sending video on youtube? Or maybe how to throttle multimedia uploads ? Or any uploads? maybe get packet size? (9 Replies)
Discussion started by: darkman_hr
9 Replies

6. Solaris

how to assign group policy to user in solaris

hi, how to assign group policy to user in solaris (1 Reply)
Discussion started by: meet2muneer
1 Replies

7. IP Networking

802 QOS/ Bandwidth Control

My question is such: I want to control the bandwidth of my users and cap there speed on the network. I was told by a Cisco rep that it is better to police or control the bandwidth at the switch and not via the router. It that the correct place to control bandwidth at the switch or would it be... (0 Replies)
Discussion started by: metallica1973
0 Replies

8. IP Networking

Firewall Policy Scheduler.

Hi All. can anybody help me out in knowing the technical details of Firewall Policy Scheduler :confused: Thanks (1 Reply)
Discussion started by: ashokmeti
1 Replies
Login or Register to Ask a Question
sched_getscheduler(3)					     Library Functions Manual					     sched_getscheduler(3)

NAME
sched_getscheduler - Returns the scheduling policy of a process (P1003.1b) LIBRARY
Realtime Library (librt.so, librt.a) SYNOPSIS
#include <sched.h> int sched_getscheduler ( pid_t pid); PARAMETERS
pid Specifies the ID of the process for which the scheduling policy is to be obtained. If pid is zero, the scheduling policy of the calling process is obtained. DESCRIPTION
The sched_getscheduler function returns the current scheduling policy of a process. The values that can be returned are defined in the header file <sched.h>. The sched_setscheduler function changes the scheduling policy and priority of a process. Changing the scheduling policy and priority ensures that an application can determine more effectively when a process will run. The realtime scheduling policies are as follows: SCHED_FIFO Specifies the first-in, first-out (FIFO) scheduling policy SCHED_RR Specifies the round-robin (RR) scheduling policy SCHED_OTHER Specifies the standard timesharing scheduling policy The SCHED_FIFO and SCHED_RR scheduling policies are fixed-priority scheduling policies. You can specify a priority for your process and the scheduler will not adjust it. Setting priorities in conjunction with a SCHED_FIFO scheduling policy allows a critical process to run as soon as it is ready, for as long as it needs to run, because the process will preempt other lower-priority processes. The round-robin scheduling policy is similar to first in-first out, but also imposes a quantum on execution time. Use the sched_rr_get_interval function to determine the current quantum for process execution under the SCHED_RR scheduling policy. The scheduler adjusts process priorities running under the timesharing scheduling policy. No special privileges are needed to use the sched_getscheduler function. RETURN VALUES
On a successful call to sched_getscheduler, the scheduling policy of the process is returned. If there is an error, -1 is returned and errno is set to indicate the error. ERRORS
The sched_getscheduler function fails under the following condition: [ESRCH] No process can be found corresponding to that specified by pid. RELATED INFORMATION
Functions: getpid(2), sched_getparam(3), sched_setparam(3), sched_setscheduler(3) Guide to Realtime Programming delim off sched_getscheduler(3)