LINUX.ORG.RU
ФорумAdmin

VPN только по TCP без GRE?


0

0

VPN только по TCP без GRE можно пробросить?
Сильно вникать в теорию пока нет особо времени (да и не хочется, пока нет уверенности в возможности). Если оно в принципе возможно, то тогда буду копать дальше. Нет - ковырять какой-нибудь stunnel и пробрасывать только необходимые сервисы.
Или я не в ту сторону думаю?..

anonymous

> VPN только по TCP без GRE можно пробросить?
Да, смотря чем пробрасывать, ПО для создания VPN много:
http://mia.ece.uic.edu/~papers/volans/table.html
Openvpn, например, умеет работать как по tcp, так и по udp.

P.S. Необходимые сервисы в принципе можно даже по ssh перебросить.

spirit ★★★★★
()
Ответ на: комментарий от spirit

Спасибо, буду выбирать. Главное, что в принципе возможно.

anonymous
()
Ответ на: комментарий от sdio

> Здесь, на ЛОРе, в 95% случаев под словом "VPN" понимается "pptp" -- бесит жутко, но я держусь :-)
Аналогично ! :-)

spirit ★★★★★
()
Ответ на: комментарий от spirit

> Здесь, на ЛОРе, в 95% случаев под словом "VPN" понимается "pptp" бесит жутко, но я держусь :-)
+1 И не только на лоре :)

А вообще можно организовать проброс цельного интерфейса через pppd + ssh :

Вот скрипт который идет вместе с ppp я толком не разбирался, но вроде делает то что нужно

#!/bin/sh
#
# A sample script to establish PPP session(s) via SSH 1.x
#
# Adi Masputra <adi.masputra@sun.com>
# Jan 24, 2000
#

#
# You'd definitely want to change the following addresses to suit
# your network configuration
#
LOC_IP=10.0.0.1
REM_IP=10.0.0.2
NETMASK=255.255.0.0

export LOC_IP REM_IP

#
# This is the remote peer where sshd is running, either
# its hostname or IP address
#
PPPD_RHOST=myremotehost

#
# For this example, we assume that pppd on both local and remote
# machines reside in the same place, /usr/local/bin/pppd
#
PPPD_LOC=/usr/local/bin/pppd

#
# The location of local options file (where ssh client is running).
# Note that the sample options file included in the distribution
# may need further customizations, depending on your needs. The 'noauth'
# option specified in the file is there to simplify the example, although
# some may choose to have it there and rely on ssh authentication
# instead.
#
PPPD_LOC_OPT=/etc/ppp/options-ssh-loc

#
# The location of remote options file (where sshd daemon is running)
# Note that the sample options file included in the distribution
# may need further customizations, depending on your needs. The 'noauth'
# option specified in the file is there to simplify the example, although
# some may choose to have it there and rely on ssh authentication
# instead. Also note that the remote options file need to include the 'notty'
# options for this to work.
#
PPPD_REM_OPT=/etc/ppp/options-ssh-rem

#
# The location of ssh client on the local machine
#
SSH_LOC=/usr/local/bin/ssh

export PPPD_LOC PPPD_LOC_OPT PPPD_REM_OPT PPPD_RHOST SSH_LOC

#
# Uncomment the following to enable IPv6, note that the IPv6 support
# needs to be enabled during compilation
#
# PPPD_IPV6='+ipv6 ipv6cp-use-ipaddr'
export PPPD_IPV6

#
# And execute pppd with the pty option, specifying ssh client as the
# slave side of the pseudo-tty master/slave pair. Note that on this example,
# ssh has been compiled to allow NULL encryption (thus the '-c none' option),
# but in reality, you'd probably want to specify the encryption algorithm.
# See the man page of ssh(1) for details.
#
exec $PPPD_LOC \
pty '$SSH_LOC -c none $PPPD_RHOST $PPPD_LOC $REM_IP:$LOC_IP $PPPD_IPV6 file $PPPD_REM_OPT' \
$LOC_IP:$REM_IP netmask $NETMASK $PPPD_IPV6 file $PPPD_LOC_OPT

zaz ★★★★
()
Ответ на: комментарий от Deleted

1. Скрипт не мой а Adi Masputra (я так понимаю один из разработчиков pppd)
2. В данном скрипте нужно, тк если посмотреть на следующую строчку:
exec $PPPD_LOC \
pty '$SSH_LOC -c none $PPPD_RHOST $PPPD_LOC $REM_IP:$LOC_IP $PPPD_IPV6 file $PPPD_REM_OPT' \
$LOC_IP:$REM_IP netmask $NETMASK $PPPD_IPV6 file $PPPD_LOC_OPT
то видно что строка
'$SSH_LOC -c none $PPPD_RHOST $PPPD_LOC $REM_IP:$LOC_IP $PPPD_IPV6 file $PPPD_REM_OPT' передается как есть, и подстановки будут производится уже не в этом скрипте - следовательно переменные нужно проэкспортировать
или я не прав ?

zaz ★★★★
()
Ответ на: комментарий от capricorn20

Похоже, придётся остановиться на ppp over stunnel. openvpn что-то не удалось сразу завести. :( А времени нет катастрофически в нём разбираться... Спасибо всем за инфу! Позже, может, более аккуратно этим займусь.

anonymous
()
Вы не можете добавлять комментарии в эту тему. Тема перемещена в архив.