Displaying 2 results from an estimated 2 matches for "downloadig".
Did you mean:
downloading
2009 Jan 12
1
DO NOT REPLY [Bug 6025] New: 0 files to consider should not return code 23
...has nothing to do and
therefore it did nothing.
Returning CODE 23 is missleading for other programmers using rsync inside a
shell script as is leads them to believe that there were some actual files to
download but for some reason rsync was unable to download them.
In my case, as an example i am downloadig Apache log files from a test server
this files are sometimes rotated automatically by cron or sometimes manually
deleted.
When I have rsync download all the log files in the usual Apache log directory
/var/log/httpd , and the directory just happens to be empty:
rsync -qPt -e ssh root2@mysite.com...
2007 Aug 24
3
subdivide 64 kbit bandwidth 32kbit for WWW and 32 Kbit for mail
...led both iptables and iproute2.
I has 3 network cards.
eth0 is connected to Internet (is has an internet ip. pls assume its ip is
1.2.3.4/29). it is a 256 Kbit link.
eth1 is DMZ. its ip is 192.168.100.254
eth2 is LAN. Its ip is 192.168.101.254
I have alreday shaped traffic to 64 Kbit on eth1 for downloadig (i.e DMZ
zone ).
This is the sript that does the job. It works ine.
#traffic shaping on eth1 (Downloading)
INTERFAZ_DMZ=eth1
FULLBANDWIDTH=256
BANDWIDTH4DMZ=64
tc qdisc del root dev $INTERFAZ_DMZ
tc qdisc add dev $INTERFAZ_DMZ root handle 1: htb r2q 4
tc class add dev $INTERFAZ_DMZ parent 1: c...