2009-02-12

CakeBilling. Установка и настройка PPP и PPTPD.

Установка PPP и PPTPD.

# apt-get install ppp
# apt-get install pptpd
# apt-get install radiusclient1

Первым настроим radiusclient для работы с нашим FreeRADIUS сервером.

Добавляем в /etc/radiusclient/servers наш RADIUS сервер.
localhost test

Изменяем в /etc/radiusclient/radiusclient.conf сервер для авторизации и аккаунтинга.

authserver localhost:1812
acctserver localhost:1813

Также надо добавить в /etc/radiusclient/dictionary те же аттрибуты, которые добавлены в /etc/freeradius/dictionary:

ATTRIBUTE Acct-Interim-Interval 85 integer
ATTRIBUTE Session-Octets-Limit 227 integer
ATTRIBUTE Octets-Direction 228 integer

ATTRIBUTE PPPD-Upstream-Speed-Limit 230 integer
ATTRIBUTE PPPD-Downstream-Speed-Limit 231 integer
ATTRIBUTE PPPD-Upstream-Speed-Limit-1 232 integer
ATTRIBUTE PPPD-Downstream-Speed-Limit-1 233 integer
ATTRIBUTE PPPD-Upstream-Speed-Limit-2 234 integer
ATTRIBUTE PPPD-Downstream-Speed-Limit-2 235 integer
ATTRIBUTE PPPD-Upstream-Speed-Limit-3 236 integer
ATTRIBUTE PPPD-Downstream-Speed-Limit-3 237 integer

Изменяем файл /etc/ppp/pptpd-options:
# Authentication

# Name of the local system for authentication purposes
# (must match the second field in /etc/ppp/chap-secrets entries)
name pptpd

# Optional: domain name to use for authentication
# domain mydomain.net

# Strip the domain prefix from the username before authentication.
# (applies if you use pppd with chapms-strip-domain patch)
#chapms-strip-domain

auth

# Encryption
# Debian: on systems with a kernel built with the package
# kernel-patch-mppe >= 2.4.2 and using ppp >= 2.4.2, ...
# {{{
refuse-pap
require-chap
require-mschap
# Require the peer to authenticate itself using MS-CHAPv2 [Microsoft
# Challenge Handshake Authentication Protocol, Version 2] authentication.
require-mschap-v2
# Require MPPE 128-bit encryption
# (note that MPPE requires the use of MSCHAP-V2 during authentication)
#require-mppe-128
nomppe
# }}}

silent


# Network and Routing

# If pppd is acting as a server for Microsoft Windows clients, this
# option allows pppd to supply one or two DNS (Domain Name Server)
# addresses to the clients. The first instance of this option
# specifies the primary DNS address; the second instance (if given)
# specifies the secondary DNS address.
# Attention! This information may not be taken into account by a Windows
# client. See KB311218 in Microsoft's knowledge base for more information.
#ms-dns 10.0.0.1
#ms-dns 10.0.0.2
ms-dns 192.168.1.1

# If pppd is acting as a server for Microsoft Windows or "Samba"
# clients, this option allows pppd to supply one or two WINS (Windows
# Internet Name Services) server addresses to the clients. The first
# instance of this option specifies the primary WINS address; the
# second instance (if given) specifies the secondary WINS address.
#ms-wins 10.0.0.3
#ms-wins 10.0.0.4

# Add an entry to this system's ARP [Address Resolution Protocol]
# table with the IP address of the peer and the Ethernet address of this
# system. This will have the effect of making the peer appear to other
# systems to be on the local ethernet.
# (you do not need this if your PPTP server is responsible for routing
# packets to the clients -- James Cameron)
proxyarp

# Debian: do not replace the default route
#nodefaultroute


# Logging

# Enable connection debugging facilities.
# (see your syslog configuration for where pppd sends to)
#debug

# Print out all the option values which have been set.
# (often requested by mailing list to verify options)
#dump


# Miscellaneous

# Create a UUCP-style lock file for the pseudo-tty to ensure exclusive
# access.
lock

# Disable BSD-Compress compression
nobsdcomp

nodeflate

nologfd

plugin /usr/lib/pppd/2.4.4/radius.so


ms-dns - ваш DNS сервер или DNS сервер провайдера.
ppp будет принимать запросы только с типом авторизации chap mschap mschap-v2,
pap отключен в связи с тем что передает пароль в открытом виде.
nomppe nomppc - отключаем компрессию и шифрование.
silent - работать пассивно. Ожидаем запросы от клиента. В противном случае сервер начинает запрашивать параметры у клиента. В результате чего windows VPN работает не стабильно.
nodeflate nobsdcomp - отключаем компрессию.
plugin /usr/lib/pppd/2.4.4/radius.so - подключаем плагин radius.so. Если у вас не 2.4.4 версия измените путь так чтоб он соответствовал вашей версии.
На этом настройка ppp для pptpd закончена.

Переходим к pptpd.

Редактируем файл /etc/pptpd.conf:

option /etc/ppp/pptpd-options
localip 192.168.0.1
remoteip 192.168.0.2-254
option /etc/ppp/pptpd-options - указываем файл с опциями для ppp при поднятии инкапсуляции. localip 192.168.0.1 - ip адрес сервера VPN сети. remoteip 192.168.0.2-254 - ip адреса клиентов VPN сети.

Комментариев нет: