CentOS6でOcservを構成する

Configure Ocserv on CentOS 6

Table of Contents

1 Install ocserv

https://www.vultr.com/docs/setup-openconnect-V**-server-for-cisco-anyconnect-on-ubuntu-14-04-x64

https://www.stunnel.info/%E5%9C%A8centos-6-5%E4%B8%8A%E9%85%8D%E7%BD%AEcisco-anyconnect-V**/

http://stackoverflow.com/questions/23085076/readline-readline-h-file-not-found

https://www.youtube.com/watch?v=54WXQ3CmkGw

2 Configure ocserv

http://www.infradead.org/ocserv/manual.html

3 How to host ocserv and a web server on the same port ?

One of the advantages of ocserv is that is an HTTPS-based protocol and it is often used over 443 to allow bypassing certain firewalls. However the 443 TCP port is typically used by an HTTP server on a system. This section will describe methods on how to collocate ocserv with a web server.

3.1 Method 1: SSL termination on external program (haproxy)

To collocate ocserv and an HTTPS server on port 443, haproxy (or similar proxy applications) could be used. haproxy allows forwarding the HTTPS port data to arbitrary servers, based on various criteria. This method, however, has the limitation that client certificate authentication cannot be enforced by ocserv as the SSL session is terminated at haproxy.

The configuration required for haproxy is something along the lines:

frontend www-https
 bind 0.0.0.0:443 ssl crt /etc/ocserv/cert-key.pem
 default_backend ocserv-backend

backend ocserv-backend
 server ocserv unix@/var/run/ocserv-conn.socket check

and ocserv must be configured to accept cleartext connections on ocserv-conn.socket file. That can be achieved using the following configuration snippet.

listen-clear-file =/var/run/ocserv-conn.socket

3.2 Method 2: SSL termination on ocserv (sniproxy)

An alternative method to collocate ocserv and an HTTPS server on port 443, is with sniproxy. Sniproxy allows sharing the HTTPS port as long as the clients advertise the host name they connect to using server name indication (SNI). This is true for the majority of web browsers today. For this to work the web server and ocserv have to be setup to use an alternative port, e.g., ocserv uses 4443, and the web server uses 4444. A configuration of sniproxy that will redirect the traffic to the appropriate server is shown below.

listener 0.0.0.0:443{
 protocol tls
 table TableName

 # we set fallback to be ocserv as older versions of openconnect 
 # don't advertise the hostname they connect to.
 fallback 127.0.0.1:4443}

table TableName {
 # Match exact request hostnames
 V**.example.com 127.0.0.1:4443
 www.example.com 127.0.0.1:4444.*\\.net    127.0.0.1:4444}

Both of the approaches incur a performance penalty and should be considered mostly for low-traffic V** servers and web sites.

Author: rain

作成日:2016-06-28火22:06

Recommended Posts

CentOS6でOcservを構成する
CentOS7でスワップスペースを構成する
CentOSでrsyslogログクライアントを構成する
centos7でpython3環境を構成し、
Centos7はJDKを構成します
CentOS7に基づいてNginxリバースプロキシを構成する
CentOS7に基づいてNginxロードバランシングを構成する
CentOS7に基づいてNginxフォワードプロキシを構成する
Centos7にDockerをインストールする
Centos7.4はLNMPをインストールします
centos7でk8s1.9.9をビルドする
Centos7にJavaをインストールする
centos7でのXfs構成
Nodejsはcentos7にインストールされます
CentOS8にFFmpegをインストールします
CentOS7にRabbitMQをインストールします
CentOS8にVNCをインストールして構成する方法
CentosにNode.jsをインストールします
CentOS7に基づいて自動的に起動するようにNginxを構成します
Mavenはcentos7にインストールします
CentOS7にMongoDBをインストールします
CentOS8にRedisをインストールして構成する方法
ジェンキンスはセントスに基づいて構築されています
CentOS8にSurelogをインストールする
centos6.8でランプを構成する
Centos7はIPアドレスを構成します
centos7にvuepressをデプロイする
centos7へのOpenjdkのインストール
Jenkinsをcentos7にインストールします
CentOS7でRapidSVNを使用する
CentOS6にphpMyAdminをインストールして構成する方法
Centos7はnodejs環境を構成します
セントスにRabbitMQをインストールする
CentOS8にOwncloudをインストールして構成する方法
CentOS7にRabbitMQをインストールします
centos6.5にDockerをインストールします
セントスにオラクルをインストールする
CentOS7GPU環境を構成する
Centos7にElasticsearch6をインストールします
CentOS7にRabbitMQをインストールします
Jenkinをcentos7にデプロイします
CentOS8にRedmineをインストールして構成する方法
CentOS8でVsftpdを使用してFTPサーバーを構成する方法
CentOS8にNFSサーバーをインストールして構成する方法
CentOS8でVsftpdを使用してFTPサーバーを構成する方法
mysqlをcentosにオンラインでインストールする
CentOS7にElasticSearch7.xをインストールします
Centos7へのGlusterfsクラスターのインストール
CentOSでMariaDBレプリケーションを構築する
ubuntuサーバーでtomcatを構成する
CentOS7で静的IPを構成する
LinuxCentosにMySQL8.0.16をインストールします
centos7へのグラファイトの展開
Centos7にdockertransferをインストールします
Centos6.5はmongodbをインストールして構成します
Centosは複数の仮想IPを構成します
Centosシステムにdockerをインストールします
セントスにEPELリポジトリをインストールする
CentOS7に基づくZabbix3.4をインストールします
centosサーバーにvirtualboxをインストールする
centos7へのDockerEEのインストール