hilfe mein git ist komisch
This commit is contained in:
28
etc/xinetd.d/chargen
Normal file
28
etc/xinetd.d/chargen
Normal file
@@ -0,0 +1,28 @@
|
||||
# default: off
|
||||
# description: An xinetd internal service which generate characters. The
|
||||
# xinetd internal service which continuously generates characters until the
|
||||
# connection is dropped. The characters look something like this:
|
||||
# !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefg
|
||||
# This is the tcp version.
|
||||
service chargen
|
||||
{
|
||||
disable = yes
|
||||
type = INTERNAL
|
||||
id = chargen-stream
|
||||
socket_type = stream
|
||||
protocol = tcp
|
||||
user = root
|
||||
wait = no
|
||||
}
|
||||
|
||||
# This is the udp version.
|
||||
service chargen
|
||||
{
|
||||
disable = yes
|
||||
type = INTERNAL
|
||||
id = chargen-dgram
|
||||
socket_type = dgram
|
||||
protocol = udp
|
||||
user = root
|
||||
wait = yes
|
||||
}
|
||||
14
etc/xinetd.d/chargen-udp
Normal file
14
etc/xinetd.d/chargen-udp
Normal file
@@ -0,0 +1,14 @@
|
||||
# default: off
|
||||
# description: A chargen server. This is the udp version.
|
||||
|
||||
service chargen
|
||||
{
|
||||
type = INTERNAL UNLISTED
|
||||
id = chargen-dgram
|
||||
socket_type = dgram
|
||||
protocol = udp
|
||||
user = root
|
||||
wait = yes
|
||||
disable = yes
|
||||
port = 19
|
||||
}
|
||||
26
etc/xinetd.d/daytime
Normal file
26
etc/xinetd.d/daytime
Normal file
@@ -0,0 +1,26 @@
|
||||
# default: off
|
||||
# description: An internal xinetd service which gets the current system time
|
||||
# then prints it out in a format like this: "Wed Nov 13 22:30:27 EST 2002".
|
||||
# This is the tcp version.
|
||||
service daytime
|
||||
{
|
||||
disable = yes
|
||||
type = INTERNAL
|
||||
id = daytime-stream
|
||||
socket_type = stream
|
||||
protocol = tcp
|
||||
user = root
|
||||
wait = no
|
||||
}
|
||||
|
||||
# This is the udp version.
|
||||
service daytime
|
||||
{
|
||||
disable = yes
|
||||
type = INTERNAL
|
||||
id = daytime-dgram
|
||||
socket_type = dgram
|
||||
protocol = udp
|
||||
user = root
|
||||
wait = yes
|
||||
}
|
||||
14
etc/xinetd.d/daytime-udp
Normal file
14
etc/xinetd.d/daytime-udp
Normal file
@@ -0,0 +1,14 @@
|
||||
# default: off
|
||||
# description: A daytime server. This is the udp version.
|
||||
|
||||
service daytime
|
||||
{
|
||||
type = INTERNAL UNLISTED
|
||||
id = daytime-dgram
|
||||
socket_type = dgram
|
||||
protocol = udp
|
||||
user = root
|
||||
wait = yes
|
||||
disable = yes
|
||||
port = 13
|
||||
}
|
||||
25
etc/xinetd.d/discard
Normal file
25
etc/xinetd.d/discard
Normal file
@@ -0,0 +1,25 @@
|
||||
# default: off
|
||||
# description: An RFC 863 discard server.
|
||||
# This is the tcp version.
|
||||
service discard
|
||||
{
|
||||
disable = yes
|
||||
type = INTERNAL
|
||||
id = discard-stream
|
||||
socket_type = stream
|
||||
protocol = tcp
|
||||
user = root
|
||||
wait = no
|
||||
}
|
||||
|
||||
# This is the udp version.
|
||||
service discard
|
||||
{
|
||||
disable = yes
|
||||
type = INTERNAL
|
||||
id = discard-dgram
|
||||
socket_type = dgram
|
||||
protocol = udp
|
||||
user = root
|
||||
wait = yes
|
||||
}
|
||||
14
etc/xinetd.d/discard-udp
Normal file
14
etc/xinetd.d/discard-udp
Normal file
@@ -0,0 +1,14 @@
|
||||
# default: off
|
||||
# description: A discard server. This is the udp version.
|
||||
|
||||
service discard
|
||||
{
|
||||
type = INTERNAL UNLISTED
|
||||
id = discard-dgram
|
||||
socket_type = dgram
|
||||
protocol = udp
|
||||
user = root
|
||||
wait = yes
|
||||
disable = yes
|
||||
port = 9
|
||||
}
|
||||
26
etc/xinetd.d/echo
Normal file
26
etc/xinetd.d/echo
Normal file
@@ -0,0 +1,26 @@
|
||||
# default: off
|
||||
# description: An xinetd internal service which echo's characters back to
|
||||
# clients.
|
||||
# This is the tcp version.
|
||||
service echo
|
||||
{
|
||||
disable = yes
|
||||
type = INTERNAL
|
||||
id = echo-stream
|
||||
socket_type = stream
|
||||
protocol = tcp
|
||||
user = root
|
||||
wait = no
|
||||
}
|
||||
|
||||
# This is the udp version.
|
||||
service echo
|
||||
{
|
||||
disable = yes
|
||||
type = INTERNAL
|
||||
id = echo-dgram
|
||||
socket_type = dgram
|
||||
protocol = udp
|
||||
user = root
|
||||
wait = yes
|
||||
}
|
||||
14
etc/xinetd.d/echo-udp
Normal file
14
etc/xinetd.d/echo-udp
Normal file
@@ -0,0 +1,14 @@
|
||||
# default: off
|
||||
# description: An echo server. This is the udp version.
|
||||
|
||||
service echo
|
||||
{
|
||||
type = INTERNAL UNLISTED
|
||||
id = echo-dgram
|
||||
socket_type = dgram
|
||||
protocol = udp
|
||||
user = root
|
||||
wait = yes
|
||||
disable = yes
|
||||
port = 7
|
||||
}
|
||||
18
etc/xinetd.d/ftp_psa
Normal file
18
etc/xinetd.d/ftp_psa
Normal file
@@ -0,0 +1,18 @@
|
||||
#ATTENTION!
|
||||
#
|
||||
#DO NOT MODIFY THIS FILE BECAUSE IT WAS GENERATED AUTOMATICALLY,
|
||||
#SO ALL YOUR CHANGES WILL BE LOST AFTER YOU UPGRADE PLESK.
|
||||
|
||||
service ftp
|
||||
{
|
||||
flags = IPv6
|
||||
disable = no
|
||||
socket_type = stream
|
||||
protocol = tcp
|
||||
wait = no
|
||||
user = root
|
||||
instances = UNLIMITED
|
||||
server = /usr/sbin/in.proftpd
|
||||
server_args = -c /etc/proftpd.conf -S 0.0.0.0
|
||||
}
|
||||
|
||||
17
etc/xinetd.d/poppassd_psa
Normal file
17
etc/xinetd.d/poppassd_psa
Normal file
@@ -0,0 +1,17 @@
|
||||
#ATTENTION!
|
||||
#
|
||||
#DO NOT MODIFY THIS FILE BECAUSE IT WAS GENERATED AUTOMATICALLY,
|
||||
#SO ALL YOUR CHANGES WILL BE LOST AFTER YOU UPGRADE PLESK.
|
||||
service poppassd
|
||||
{
|
||||
socket_type = stream
|
||||
protocol = tcp
|
||||
port = 106
|
||||
wait = no
|
||||
disable = no
|
||||
user = root
|
||||
instances = 1000
|
||||
flags = KEEPALIVE IPv6
|
||||
server = /opt/psa/admin/sbin/poppassd
|
||||
only_from = 127.0.0.1 ::1
|
||||
}
|
||||
13
etc/xinetd.d/servers
Normal file
13
etc/xinetd.d/servers
Normal file
@@ -0,0 +1,13 @@
|
||||
# default: off
|
||||
# description: An internal xinetd service, listing active servers.
|
||||
|
||||
service servers
|
||||
{
|
||||
type = INTERNAL UNLISTED
|
||||
port = 9099
|
||||
socket_type = stream
|
||||
protocol = tcp
|
||||
wait = no
|
||||
disable = yes
|
||||
only_from = 127.0.0.1
|
||||
}
|
||||
13
etc/xinetd.d/services
Normal file
13
etc/xinetd.d/services
Normal file
@@ -0,0 +1,13 @@
|
||||
# default: off
|
||||
# description: An internal xinetd service, listing active services.
|
||||
|
||||
service services
|
||||
{
|
||||
type = INTERNAL UNLISTED
|
||||
port = 9098
|
||||
socket_type = stream
|
||||
protocol = tcp
|
||||
wait = no
|
||||
disable = yes
|
||||
only_from = 127.0.0.1
|
||||
}
|
||||
28
etc/xinetd.d/time
Normal file
28
etc/xinetd.d/time
Normal file
@@ -0,0 +1,28 @@
|
||||
# default: off
|
||||
# description: An RFC 868 time server. This protocol provides a
|
||||
# site-independent, machine readable date and time. The Time service sends back
|
||||
# to the originating source the time in seconds since midnight on January first
|
||||
# 1900.
|
||||
# This is the tcp version.
|
||||
service time
|
||||
{
|
||||
disable = yes
|
||||
type = INTERNAL
|
||||
id = time-stream
|
||||
socket_type = stream
|
||||
protocol = tcp
|
||||
user = root
|
||||
wait = no
|
||||
}
|
||||
|
||||
# This is the udp version.
|
||||
service time
|
||||
{
|
||||
disable = yes
|
||||
type = INTERNAL
|
||||
id = time-dgram
|
||||
socket_type = dgram
|
||||
protocol = udp
|
||||
user = root
|
||||
wait = yes
|
||||
}
|
||||
14
etc/xinetd.d/time-udp
Normal file
14
etc/xinetd.d/time-udp
Normal file
@@ -0,0 +1,14 @@
|
||||
# default: off
|
||||
# description: An RFC 868 time server. This is the udp version.
|
||||
|
||||
service time
|
||||
{
|
||||
type = INTERNAL UNLISTED
|
||||
id = time-dgram
|
||||
socket_type = dgram
|
||||
protocol = udp
|
||||
user = root
|
||||
wait = yes
|
||||
disable = yes
|
||||
port = 37
|
||||
}
|
||||
Reference in New Issue
Block a user