ALT Linux sysadmins discussion
 help / color / mirror / Atom feed
* [Sysadmins] Порты rsync
@ 2007-05-15  8:43 Вадим Илларионов
  2007-05-15 10:03 ` Mikhail A. Pokidko
  0 siblings, 1 reply; 6+ messages in thread
From: Вадим Илларионов @ 2007-05-15  8:43 UTC (permalink / raw)
  To: sysadmins

Пытаюсь подключиться к rsync-серверу с машинки, где в iptables Policy=DROP,
но порт 873 с/на сервер открыт и по UDP, и по TCP:

iptables -t filter -A INPUT  -p tcp -s xx.xx.xx.xx --sport rsync -j ACCEPT
iptables -t filter -A INPUT  -p udp -s xx.xx.xx.xx --sport rsync -j ACCEPT
iptables -t filter -A OUTPUT -p tcp -d xx.xx.xx.xx --dport rsync -j ACCEPT
iptables -t filter -A OUTPUT -p udp -d xx.xx.xx.xx --dport rsync -j ACCEPT

Телнетом получаю следующее:
$ telnet xx.xx.xx.xx rsync
Trying xx.xx.xx.xx...
Connected to xx.xx.xx.xx (xx.xx.xx.xx).
Escape character is '^]'.
Connection closed by foreign host.

Попатка синхронизации приводит к следующему:
$ rsync -vat --delete xx.xx.xx.xx::resource /dest/dir
rsync: read error: Connection reset by peer (104)
rsync error: error in rsync protocol data stream (code 12) at io.c(614)
[receiver=2.6.8]

tcpdump с этого клиента при попытке соединения показывает:
# tcpdump -i any host usib.irkps.ru and port rsync
tcpdump: WARNING: Promiscuous mode not supported on the "any" device
tcpdump: verbose output suppressed, use -v or -vv for full protocol decode
listening on any, link-type LINUX_SLL (Linux cooked), capture size 96 bytes
17:36:46.562821 IP yy.yy.yy.yy.60546 > xx.xx.xx.xx.rsync: S
1642475883:1642475883(0) win 5808 <mss 1452,sackOK,timestamp 81491190
0,nop,wscale 6>
17:36:46.567922 IP xx.xx.xx.xx.rsync > yy.yy.yy.yy.60546: S
3794370669:3794370669(0) ack 1642475884 win 5808 <mss
1412,nop,nop,sackOK,nop,wscale 2>
17:36:46.568047 IP yy.yy.yy.yy.60546 > xx.xx.xx.xx.rsync: . ack 1 win 91
17:36:46.568251 IP yy.yy.yy.yy.60546 > xx.xx.xx.xx.rsync: P 1:13(12) ack 1
win 91
17:36:46.573249 IP xx.xx.xx.xx.rsync > yy.yy.yy.yy.60546: . ack 13 win 1452
17:36:46.586749 IP xx.xx.xx.xx.rsync > yy.yy.yy.yy.60546: R 1:1(0) ack 13
win 1452

От других же клиентов подключаюсь-синхронизируюсь без проблем.

В чём может быть затык? Не нужны ли rsync ещё какие-то порты?




^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [Sysadmins] Порты rsync
  2007-05-15  8:43 [Sysadmins] Порты rsync Вадим Илларионов
@ 2007-05-15 10:03 ` Mikhail A. Pokidko
  2007-05-16  3:07   ` Вадим Илларионов
  0 siblings, 1 reply; 6+ messages in thread
From: Mikhail A. Pokidko @ 2007-05-15 10:03 UTC (permalink / raw)
  To: ALT Linux sysadmin discuss

2007/5/15, Вадим Илларионов :
> Пытаюсь подключиться к rsync-серверу с машинки, где в iptables Policy=DROP,
> но порт 873 с/на сервер открыт и по UDP, и по TCP:
>
> iptables -t filter -A INPUT  -p tcp -s xx.xx.xx.xx --sport rsync -j ACCEPT
> iptables -t filter -A INPUT  -p udp -s xx.xx.xx.xx --sport rsync -j ACCEPT
> iptables -t filter -A OUTPUT -p tcp -d xx.xx.xx.xx --dport rsync -j ACCEPT
> iptables -t filter -A OUTPUT -p udp -d xx.xx.xx.xx --dport rsync -j ACCEPT
>
> Телнетом получаю следующее:
> $ telnet xx.xx.xx.xx rsync
> Trying xx.xx.xx.xx...
> Connected to xx.xx.xx.xx (xx.xx.xx.xx).
> Escape character is '^]'.
> Connection closed by foreign host.
>
> Попатка синхронизации приводит к следующему:
> $ rsync -vat --delete xx.xx.xx.xx::resource /dest/dir
> rsync: read error: Connection reset by peer (104)
> rsync error: error in rsync protocol data stream (code 12) at io.c(614)
> [receiver=2.6.8]
>
<SKIP>

>
> От других же клиентов подключаюсь-синхронизируюсь без проблем.
>
> В чём может быть затык? Не нужны ли rsync ещё какие-то порты?

grep only_from /etc/xinetd.conf

-- 
Mikhail A. Pokidko
ALTLinux Team
e-mail: pma@altlinux.org
jid: solar@gmail.ru

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [Sysadmins] Порты rsync
  2007-05-15 10:03 ` Mikhail A. Pokidko
@ 2007-05-16  3:07   ` Вадим Илларионов
  2007-05-16  6:49     ` Mikhail A. Pokidko
  0 siblings, 1 reply; 6+ messages in thread
From: Вадим Илларионов @ 2007-05-16  3:07 UTC (permalink / raw)
  To: sysadmins

Mikhail A. Pokidko wrote:

> grep only_from /etc/xinetd.conf

only_from = 127.0.0.1

А вот grep only_from /etc/xinetd.d/rsync
only_from = 0.0.0.0/0

По адресам некоторые ресурсы уже в конфиге демона rsync ограничиваю.




^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [Sysadmins] Порты rsync
  2007-05-16  3:07   ` Вадим Илларионов
@ 2007-05-16  6:49     ` Mikhail A. Pokidko
  2007-05-17  3:28       ` Вадим Илларионов
  0 siblings, 1 reply; 6+ messages in thread
From: Mikhail A. Pokidko @ 2007-05-16  6:49 UTC (permalink / raw)
  To: ALT Linux sysadmin discuss

Rsync пускает. Xinetd - нет.

2007/5/16, Вадим Илларионов:
> Mikhail A. Pokidko wrote:
>
> > grep only_from /etc/xinetd.conf
>
> only_from = 127.0.0.1
>
> А вот grep only_from /etc/xinetd.d/rsync
> only_from = 0.0.0.0/0
>
> По адресам некоторые ресурсы уже в конфиге демона rsync ограничиваю.
>
>
> _______________________________________________
> Sysadmins mailing list
> Sysadmins@lists.altlinux.org
> https://lists.altlinux.org/mailman/listinfo/sysadmins
>


-- 
Mikhail A. Pokidko
ALTLinux Team
e-mail: pma@altlinux.org
jid: solar@gmail.ru

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [Sysadmins] Порты rsync
  2007-05-16  6:49     ` Mikhail A. Pokidko
@ 2007-05-17  3:28       ` Вадим Илларионов
  2007-05-17  3:43         ` Вадим Илларионов
  0 siblings, 1 reply; 6+ messages in thread
From: Вадим Илларионов @ 2007-05-17  3:28 UTC (permalink / raw)
  To: sysadmins

Mikhail A. Pokidko wrote:

> Rsync пускает. Xinetd - нет.

Пускает. С других клиентов. С разными адресами.
Только с этого - никак.



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [Sysadmins] Порты rsync
  2007-05-17  3:28       ` Вадим Илларионов
@ 2007-05-17  3:43         ` Вадим Илларионов
  0 siblings, 0 replies; 6+ messages in thread
From: Вадим Илларионов @ 2007-05-17  3:43 UTC (permalink / raw)
  To: sysadmins

Всё заработало.
Прошу прощения за беспокойство.
Оказалось, portsentry поместил этот адрес в /etc/hosts.deny



^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2007-05-17  3:43 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-05-15  8:43 [Sysadmins] Порты rsync Вадим Илларионов
2007-05-15 10:03 ` Mikhail A. Pokidko
2007-05-16  3:07   ` Вадим Илларионов
2007-05-16  6:49     ` Mikhail A. Pokidko
2007-05-17  3:28       ` Вадим Илларионов
2007-05-17  3:43         ` Вадим Илларионов

ALT Linux sysadmins discussion

This inbox may be cloned and mirrored by anyone:

	git clone --mirror http://lore.altlinux.org/sysadmins/0 sysadmins/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 sysadmins sysadmins/ http://lore.altlinux.org/sysadmins \
		sysadmins@lists.altlinux.org sysadmins@lists.altlinux.ru sysadmins@lists.altlinux.com
	public-inbox-index sysadmins

Example config snippet for mirrors.
Newsgroup available over NNTP:
	nntp://lore.altlinux.org/org.altlinux.lists.sysadmins


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git