Re: apt-proxy über xinetd
> service aptproxy
> {
> socket_type = stream
> protocol = tcp
> wait = no
> port = 9999
> user = aptproxy
> server = /usr/sbin/tcpd
> server_args = /usr/sbin/apt-proxy -l /var/log/apt-proxy.log
> disable = yes
> }
Ich benutze schon seit Monaten folgenden Eintrag mit Woody und es funzt
wunderbar. tcpd brauchst du nicht. Das kann xinetd selbst besser.
service apt-proxy
{
socket_type = stream
protocol = tcp
wait = no
user = aptproxy
server = /usr/sbin/apt-proxy
server_args =
bind = 192.168.1.200
only_from = 192.168.1.0/24
# disable = yes
}
Michael
Reply to: