If I need to rate limit file transfers between to machines, what can I do at the host-level within CentOS, and what might I need to "yum install" in order to do?
(For example, say I would like to rsync something, and then I would like to make sure that I don't exceed, say, 10 Mbs.)
Rogelio wrote:
If I need to rate limit file transfers between to machines, what can I do at the host-level within CentOS, and what might I need to "yum install" in order to do?
(For example, say I would like to rsync something, and then I would like to make sure that I don't exceed, say, 10 Mbs.) _______________________________________________ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
rsync has a built in rate limiter. See the man pages for more details
--bwlimit=KBPS limit I/O bandwidth; KBytes per second
Other ways would be to utilize a firewall or switch with built in QoS to perform such tasks. I believe Netfilter supports this type of thing.
On Tue, 2007-10-30 at 13:57 -0700, James A. Peltier wrote:
Other ways would be to utilize a firewall or switch with built in QoS to perform such tasks. I believe Netfilter supports this type of thing.
Not netfilter but iproute.
Ignacio Vazquez-Abrams wrote:
On Tue, 2007-10-30 at 13:57 -0700, James A. Peltier wrote:
Other ways would be to utilize a firewall or switch with built in QoS to perform such tasks. I believe Netfilter supports this type of thing.
Not netfilter but iproute.
Sorry about that. I use OpenBSDs PF so am unfamiliar with the GNU/Linux equivalents. ;)