summaryrefslogtreecommitdiff
path: root/docs/configuration/service/ipoe-server.rst
blob: c219a0632466b8d023efb3b1294af12634e4d19a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
.. include:: /_include/need_improvement.txt

.. _ipoe_server:

###########
IPoE Server
###########

VyOS utilizes `accel-ppp`_ to provide :abbr:`IPoE (Internet Protocol over
Ethernet)` server functionality. It can be used with local authentication
(mac-address) or a connected RADIUS server.

IPoE is a method of delivering an IP payload over an Ethernet-based access
network or an access network using bridged Ethernet over Asynchronous Transfer
Mode (ATM) without using PPPoE. It directly encapsulates the IP datagrams in
Ethernet frames, using the standard :rfc:`894` encapsulation.

The use of IPoE addresses the disadvantage that PPP is unsuited for multicast
delivery to multiple users. Typically, IPoE uses Dynamic Host Configuration
Protocol and Extensible Authentication Protocol to provide the same
functionality as PPPoE, but in a less robust manner.

.. note:: Please be aware, due to an upstream bug, config changes/commits
   will restart the ppp daemon and will reset existing IPoE sessions,
   in order to become effective.

Configuration
=============

IPoE can be configure on different interfaces, it will depend on each specific
situation which interface will provide IPoE to clients. The clients mac address
and the incoming interface is being used as control parameter, to authenticate
a client.

The example configuration below will assign an IP to the client on the incoming
interface eth2 with the client mac address 08:00:27:2f:d8:06. Other DHCP
discovery requests will be ignored, unless the client mac has been enabled in
the configuration.

.. code-block:: none

  set service ipoe-server authentication interface eth2 mac 08:00:27:2f:d8:06
  set service ipoe-server authentication mode 'local'
  set service ipoe-server name-server '10.10.1.1'
  set service ipoe-server name-server '10.10.1.2'
  set service ipoe-server interface eth2 client-subnet '192.168.0.0/24'


The first address of the parameter ``client-subnet``, will be used as the
default gateway. Connected sessions can be checked via the ``show ipoe-server
sessions`` command.

.. code-block:: none

  vyos@vyos:~$ show ipoe-server sessions

  ifname | called-sid |    calling-sid    |     ip      | ip6 | ip6-dp | rate-limit | state  |  uptime  |        sid
  -------+------------+-------------------+-------------+-----+--------+------------+--------+----------+------------------
  ipoe0  | eth2       | 08:00:27:2f:d8:06 | 192.168.0.2 |     |        |            | active | 00:45:05 | dccc870fd3134612


IPv6 SLAAC and IA-PD
--------------------

To configure IPv6 assignments for clients, two options need to be configured.
A global prefix which is terminated on the clients cpe and a delegated prefix,
the client can use for devices routed via the clients cpe.

IPv6 DNS addresses are optional.

.. code-block:: none

  set service ipoe-server authentication interface eth3 mac 08:00:27:2F:D8:06
  set service ipoe-server authentication mode 'local'
  set service ipoe-server client-ipv6-pool delegate '2001:db8:1::/48' delegation-prefix '56'
  set service ipoe-server client-ipv6-pool prefix '2001:db8::/48' mask '64'
  set service ipoe-server name-server '2001:db8::'
  set service ipoe-server name-server '2001:db8:aaa::'
  set service ipoe-server name-server '2001:db8:bbb::'
  set service ipoe-server interface eth3 client-subnet '192.168.1.0/24'

.. code-block:: none

  vyos@ipoe-server# run sh ipoe-server sessions
  ifname | called-sid |    calling-sid    |     ip      |               ip6               | ip6-dp          | rate-limit | state  |  uptime  |        sid
  -------+------------+-------------------+-------------+---------------------------------+-----------------+------------+--------+----------+------------------
  ipoe0  | eth3       | 08:00:27:2f:d8:06 | 192.168.1.2 | 2001:db8::a00:27ff:fe2f:d806/64 | 2001:db8:1::/56 |            | active | 01:02:59 | 4626faf71b12cc25


The clients :abbr:`CPE (Customer Premises Equipment)` can now communicate via
IPv4 or IPv6. All devices behind ``2001:db8::a00:27ff:fe2f:d806/64`` can use
addresses from ``2001:db8:1::/56`` and can globally communicate without the
need of any NAT rules.

Automatic VLAN creation
-----------------------

To create VLANs per user during runtime, the following settings are required on
a per interface basis. VLAN ID and VLAN range can be present in the
configuration at the same time.

.. code-block:: none

  set service ipoe-server interface eth2 network vlan
  set service ipoe-server interface eth2 vlan-id 100
  set service ipoe-server interface eth2 vlan-id 200
  set service ipoe-server interface eth2 vlan-range 1000-2000
  set service ipoe-server interface eth2 vlan-range 2500-2700

RADIUS Setup
------------

To use a RADIUS server for authentication and bandwidth-shaping, the following
example configuration can be used.

.. code-block:: none

  set service ipoe-server authentication mode 'radius'
  set service ipoe-server authentication radius server 10.100.100.1 key 'password'

Bandwidth Shaping
=================

Bandwidth rate limits can be set for local users within the configuration or
via RADIUS based attributes.

Bandwidth Shaping for local users
---------------------------------

The rate-limit is set in kbit/sec.

.. code-block:: none

  set service ipoe-server authentication interface eth2 mac 08:00:27:2f:d8:06 rate-limit download '500'
  set service ipoe-server authentication interface eth2 mac 08:00:27:2f:d8:06 rate-limit upload '500'
  set service ipoe-server authentication mode 'local'
  set service ipoe-server name-server '10.10.1.1'
  set service ipoe-server name-server '10.10.1.2'
  set service ipoe-server interface eth2 client-subnet '192.168.0.0/24'

.. code-block:: none

  vyos@vyos# run show ipoe-server sessions

  ifname | called-sid |    calling-sid    |     ip      | ip6 | ip6-dp | rate-limit | state  |  uptime  |        sid
  -------+------------+-------------------+-------------+-----+--------+------------+--------+----------+------------------
  ipoe0  | eth2       | 08:00:27:2f:d8:06 | 192.168.0.2 |     |        | 500/500    | active | 00:00:05 | dccc870fd31349fb

Example
=======

* IPoE server will listen on interfaces eth1.50 and eth1.51
* There are rate-limited and non rate-limited users (MACs)

Server configuration
--------------------

.. code-block:: none

    set interfaces dummy dum1000 address 100.64.0.1/32
    set interfaces dummy dum1000 address 2001:db8::1/128

    set interfaces ethernet eth1 description 'IPoE'
    set interfaces ethernet eth1 vif 50
    set interfaces ethernet eth1 vif 51

    set service ipoe-server authentication interface eth1.50 mac 00:0c:29:b7:49:a7
    set service ipoe-server authentication interface eth1.50 mac 00:0c:29:f0:be:4c rate-limit download '5000'
    set service ipoe-server authentication interface eth1.50 mac 00:0c:29:f0:be:4c rate-limit upload '5000'
    set service ipoe-server authentication interface eth1.51 mac 00:0c:29:b7:49:a7 rate-limit download '50000'
    set service ipoe-server authentication interface eth1.51 mac 00:0c:29:b7:49:a7 rate-limit upload '50000'
    set service ipoe-server authentication mode 'local'
    
    set service ipoe-server client-ipv6-pool delegate 2001:db8:ffff::/48 delegation-prefix '56'
    set service ipoe-server client-ipv6-pool prefix 2001:db8:fffe::/48 mask '64'
    set service ipoe-server interface eth1.50 client-subnet '100.64.50.0/24'
    set service ipoe-server interface eth1.50 mode 'l2'
    set service ipoe-server interface eth1.51 client-subnet '100.64.51.0/24'
    set service ipoe-server interface eth1.51 mode 'l2'
    set service ipoe-server name-server '100.64.0.1'
    set service ipoe-server name-server '2001:db8::1'

Client configuration
--------------------

.. code-block:: none

    set interfaces ethernet eth0 mac '00:0c:29:b7:49:a7'

    set interfaces ethernet eth0 vif 50 address 'dhcp'
    set interfaces ethernet eth0 vif 50 address 'dhcpv6'
    set interfaces ethernet eth0 vif 50 dhcpv6-options pd 0 interface eth1 sla-id '1'

.. include:: /_include/common-references.txt