diff options
-rw-r--r-- | doc/configuration/ipoe.rst | 5 | ||||
-rw-r--r-- | doc/installation/centos.rst | 4 | ||||
-rw-r--r-- | doc/installation/debian.rst | 6 | ||||
-rw-r--r-- | doc/installation/generic_inst.rst | 2 | ||||
-rw-r--r-- | doc/installation/ubuntu.rst | 6 |
5 files changed, 14 insertions, 9 deletions
diff --git a/doc/configuration/ipoe.rst b/doc/configuration/ipoe.rst index e73589d..f016c17 100644 --- a/doc/configuration/ipoe.rst +++ b/doc/configuration/ipoe.rst @@ -426,3 +426,8 @@ The ``username=ifname|lua:function_name`` allow set custom LUA function to form ``ipv6=0|1`` will activate support ipv6 on interface. If not defined, inherit global params. ``weight=n`` is load balancing mechanism based on weight. ``weight=0`` has special meaning as backup (fail-over) interface, f.e. it terminates session on any received weight. + +**check-ip=0|1** + By default is: ``check-ip=0`` + + Specifies whether accel-ppp should check if IP already assigned to other ppp or ipoe interface. diff --git a/doc/installation/centos.rst b/doc/installation/centos.rst index 92d11c9..e484226 100644 --- a/doc/installation/centos.rst +++ b/doc/installation/centos.rst @@ -13,13 +13,13 @@ Before compile and build package need satisfy some dependencies * **cmake** - open-source system that manages the build process * **gcc** - GNU Compiler Collection (GCC) is a compiler system * **git** - version-control system for tracking changes, (need for downloading source code) -* **pcre-devel** - source code of pcre lib, accel-ppp need it for use reg expression +* **pcre2-devel** - source code of pcre2 lib, accel-ppp need it for use reg expression * **openssl-devel** - source code of lib ssl, accel-ppp need it for use regular expression * **lua-devel** - this need for create custom username (IPoE) from packet. Script write on lua language .. code-block:: sh - yum -y install rpm-build make cmake gcc git pcre-devel openssl-devel lua-devel + yum -y install rpm-build make cmake gcc git pcre2-devel openssl-devel lua-devel After install dependencies, download accel-ppp source code with git client, tree master . Master tree contain actual patches last release. diff --git a/doc/installation/debian.rst b/doc/installation/debian.rst index 877b153..d81fbcf 100644 --- a/doc/installation/debian.rst +++ b/doc/installation/debian.rst @@ -8,13 +8,13 @@ Before compile and build package need satisfy some dependencies * **gcc** - GNU Compiler Collection (GCC) is a compiler system * **linux-headers-`uname -r`** - source code of current installing linux kernel, need for build ipoe and vlan_mon modules. If you don`t need these modules, you may don`t install this * **git** - version-control system for tracking changes, (need for downloading source code) -* **libpcre3-dev** - source code of pcre lib, accel-ppp need it for use reg expression -* **libssl-dev** - source code of pcre lib, accel-ppp need it for use regular expression +* **libpcre2-dev** - source code of pcre2 lib, accel-ppp need it for use reg expression +* **libssl-dev** - source code of ssl lib, accel-ppp need it for use regular expression * **liblua5.1-0-dev** - this need for create custom username (IPoE) from packet. Script write on lua language .. code-block:: sh - apt-get install -y build-essential cmake gcc linux-headers-`uname -r` git libpcre3-dev libssl-dev liblua5.1-0-dev + apt-get install -y build-essential cmake gcc linux-headers-`uname -r` git libpcre2-dev libssl-dev liblua5.1-0-dev After install dependencies, download accel-ppp source code with git client, tree master . Master tree contain actual patches last release. diff --git a/doc/installation/generic_inst.rst b/doc/installation/generic_inst.rst index ec8b87f..8387a0c 100644 --- a/doc/installation/generic_inst.rst +++ b/doc/installation/generic_inst.rst @@ -9,7 +9,7 @@ Requirment * cmake-2.6 or later * libnl-2.0 or probably later (optional, required for builtin shaper) * libcrypto-0.9.8 or probably later (openssl-0.9.8) -* libpcre +* libpcre2 * net-snmp-5.x (optional, required for snmp) * libssl-0.9.8 or probably later (openssl-0.9.8) * liblua5.1 probably later (optional, required for create username fundamental on packet header information) diff --git a/doc/installation/ubuntu.rst b/doc/installation/ubuntu.rst index eb98ca5..a451120 100644 --- a/doc/installation/ubuntu.rst +++ b/doc/installation/ubuntu.rst @@ -8,13 +8,13 @@ Before compile and build package need satisfy some dependencies * **gcc** - GNU Compiler Collection (GCC) is a compiler system * **linux-headers-`uname -r`** - source code of current installing linux kernel, need for build ipoe and vlan_mon modules. If you don`t need these modules, you may don`t install this * **git** - version-control system for tracking changes, (need for downloading source code) -* **libpcre3-dev** - source code of pcre lib, accel-ppp need it for use reg expression -* **libssl-dev** - source code of pcre lib, accel-ppp need it for use regular expression +* **libpcre2-dev** - source code of pcre2 lib, accel-ppp need it for use reg expression +* **libssl-dev** - source code of ssl lib, accel-ppp need it for use regular expression * **liblua5.1-0-dev** - this need for create custom username (IPoE) from packet. Script write on lua language .. code-block:: sh - apt-get install -y build-essential cmake gcc linux-headers-`uname -r` git libpcre3-dev libssl-dev liblua5.1-0-dev + apt-get install -y build-essential cmake gcc linux-headers-`uname -r` git libpcre2-dev libssl-dev liblua5.1-0-dev After install dependencies, download accel-ppp source code with git client, tree master . Master tree contain actual patches last release. |