summaryrefslogtreecommitdiff
path: root/smoketest/scripts/cli/test_service_pppoe-server.py
blob: 14f8316f57e199194cb0a81188690f5b60875911 (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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
#!/usr/bin/env python3
#
# Copyright (C) 020 VyOS maintainers and contributors
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 or later as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

import os
import re
import unittest

from configparser import ConfigParser
from vyos.configsession import ConfigSession
from vyos.configsession import ConfigSessionError
from vyos.util import process_named_running
from vyos.util import cmd

process_name = 'accel-pppd'
base_path = ['service', 'pppoe-server']
local_if = ['interfaces', 'dummy', 'dum667']
pppoe_conf = '/run/accel-pppd/pppoe.conf'

ac_name = 'ACN'
gateway = '192.0.2.1'
nameserver = '9.9.9.9'
interface = 'eth0'

class TestServicePPPoEServer(unittest.TestCase):
    def setUp(self):
        self.session = ConfigSession(os.getpid())
        # ensure we can also run this test on a live system - so lets clean
        # out the current configuration :)
        self.session.delete(base_path)

    def tearDown(self):
        self.session.delete(base_path)
        self.session.delete(local_if)
        self.session.commit()
        del self.session

    def verify(self, conf):
        mtu = '1492'

        # validate some common values in the configuration
        for tmp in ['log_syslog', 'pppoe', 'chap-secrets', 'ippool',
                    'auth_mschap_v2', 'auth_mschap_v1', 'auth_chap_md5',
                    'auth_pap', 'shaper']:
            # Settings without values provide None
            self.assertEqual(conf['modules'][tmp], None)

        # check Access Concentrator setting
        self.assertTrue(conf['pppoe']['ac-name'] == ac_name)
        self.assertTrue(conf['pppoe'].getboolean('verbose'))
        self.assertTrue(conf['pppoe']['interface'], interface)

        # check ppp
        self.assertTrue(conf['ppp'].getboolean('verbose'))
        self.assertTrue(conf['ppp'].getboolean('check-ip'))
        self.assertEqual(conf['ppp']['mtu'], mtu)
        self.assertEqual(conf['ppp']['lcp-echo-interval'], '30')
        self.assertEqual(conf['ppp']['lcp-echo-timeout'], '0')
        self.assertEqual(conf['ppp']['lcp-echo-failure'], '3')

    def basic_config(self):
        self.session.set(local_if + ['address', '192.0.2.1/32'])

        # PPPoE local auth mode requires local users to be configured!
        self.session.set(base_path + ['authentication', 'local-users', 'username', 'vyos', 'password', 'vyos'])
        self.session.set(base_path + ['authentication', 'mode', 'local'])

        self.session.set(base_path + ['access-concentrator', ac_name])
        self.session.set(base_path + ['authentication', 'mode', 'local'])
        self.session.set(base_path + ['name-server', nameserver])
        self.session.set(base_path + ['interface', interface])
        self.session.set(base_path + ['local-ip', gateway])

    def test_local_user(self):
        """ Test configuration of local authentication for PPPoE server """
        self.basic_config()

        # other settings
        self.session.set(base_path + ['ppp-options', 'ccp'])
        self.session.set(base_path + ['ppp-options', 'mppe', 'require'])
        self.session.set(base_path + ['limits', 'connection-limit', '20/min'])

        # upload / download limit
        user = 'test'
        password = 'test2'
        static_ip = '100.100.100.101'
        self.session.set(base_path + ['authentication', 'local-users', 'username', user, 'password', password])
        self.session.set(base_path + ['authentication', 'local-users', 'username', user, 'static-ip', static_ip])
        self.session.set(base_path + ['authentication', 'local-users', 'username', user, 'rate-limit', 'upload', '5000'])

        # upload rate-limit requires also download rate-limit
        with self.assertRaises(ConfigSessionError):
            self.session.commit()
        self.session.set(base_path + ['authentication', 'local-users', 'username', user, 'rate-limit', 'download', '10000'])

        # min-mtu
        min_mtu = '1400'
        self.session.set(base_path + ['ppp-options', 'min-mtu', min_mtu])

        # mru
        mru = '9000'
        self.session.set(base_path + ['ppp-options', 'mru', mru])

        # commit changes
        self.session.commit()

        # Validate configuration values
        conf = ConfigParser(allow_no_value=True)
        conf.read(pppoe_conf)

        # basic verification
        self.verify(conf)

        # check auth
        self.assertEqual(conf['chap-secrets']['chap-secrets'], '/run/accel-pppd/pppoe.chap-secrets')
        self.assertEqual(conf['chap-secrets']['gw-ip-address'], gateway)

        # check ppp
        self.assertEqual(conf['ppp']['mppe'], 'require')
        self.assertEqual(conf['ppp']['min-mtu'], min_mtu)
        self.assertEqual(conf['ppp']['mru'], mru)

        self.assertTrue(conf['ppp'].getboolean('ccp'))

        # check other settings
        self.assertEqual(conf['connlimit']['limit'], '20/min')

        # check local users
        tmp = cmd('sudo cat /run/accel-pppd/pppoe.chap-secrets')
        regex = f'{user}\s+\*\s+{password}\s+{static_ip}\s+10000/5000'
        tmp = re.findall(regex, tmp)
        self.assertTrue(tmp)

        # Check for running process
        self.assertTrue(process_named_running(process_name))

    def test_radius_auth(self):
        """ Test configuration of RADIUS authentication for PPPoE server """
        radius_server = '192.0.2.22'
        radius_key = 'secretVyOS'
        radius_port = '2000'
        radius_port_acc = '3000'
        radius_acct_interim_jitter = '9'
        radius_called_sid = 'ifname:mac'

        self.basic_config()

        self.session.set(base_path + ['authentication', 'mode', 'radius'])
        self.session.set(base_path + ['authentication', 'radius', 'server', radius_server, 'key', radius_key])
        self.session.set(base_path + ['authentication', 'radius', 'server', radius_server, 'port', radius_port])
        self.session.set(base_path + ['authentication', 'radius', 'server', radius_server, 'acct-port', radius_port_acc])
        self.session.set(base_path + ['authentication', 'radius', 'acct-interim-jitter', radius_acct_interim_jitter])
        self.session.set(base_path + ['authentication', 'radius', 'called-sid-format', radius_called_sid])

        coa_server = '4.4.4.4'
        coa_key = 'testCoA'
        self.session.set(base_path + ['authentication', 'radius', 'dynamic-author', 'server', coa_server])
        self.session.set(base_path + ['authentication', 'radius', 'dynamic-author', 'key', coa_key])

        nas_id = 'VyOS-PPPoE'
        nas_ip = '7.7.7.7'
        self.session.set(base_path + ['authentication', 'radius', 'nas-identifier', nas_id])
        self.session.set(base_path + ['authentication', 'radius', 'nas-ip-address', nas_ip])

        source_address = '1.2.3.4'
        self.session.set(base_path + ['authentication', 'radius', 'source-address', source_address])

        # commit changes
        self.session.commit()

        # Validate configuration values
        conf = ConfigParser(allow_no_value=True)
        conf.read(pppoe_conf)

        # basic verification
        self.verify(conf)

        # check auth
        self.assertTrue(conf['radius'].getboolean('verbose'))
        self.assertEqual(conf['radius']['acct-timeout'], '3')
        self.assertEqual(conf['radius']['timeout'], '3')
        self.assertEqual(conf['radius']['max-try'], '3')
        self.assertEqual(conf['radius']['gw-ip-address'], gateway)
        self.assertEqual(conf['radius']['acct-interim-jitter'], radius_acct_interim_jitter)
        self.assertEqual(conf['radius']['called-sid'], radius_called_sid)
        self.assertEqual(conf['radius']['dae-server'], f'{coa_server}:1700,{coa_key}')
        self.assertEqual(conf['radius']['nas-identifier'], nas_id)
        self.assertEqual(conf['radius']['nas-ip-address'], nas_ip)
        self.assertEqual(conf['radius']['bind'], source_address)

        server = conf['radius']['server'].split(',')
        self.assertEqual(radius_server, server[0])
        self.assertEqual(radius_key, server[1])
        self.assertEqual(f'auth-port={radius_port}', server[2])
        self.assertEqual(f'acct-port={radius_port_acc}', server[3])
        self.assertEqual(f'req-limit=0', server[4])
        self.assertEqual(f'fail-time=0', server[5])

        # check defaults
        self.assertEqual(conf['ppp']['mppe'], 'prefer')
        self.assertFalse(conf['ppp'].getboolean('ccp'))

        # Check for running process
        self.assertTrue(process_named_running(process_name))

    def test_auth_protocols(self):
        """ Test configuration of local authentication for PPPoE server """
        self.basic_config()
        self.session.set(base_path + ['authentication', 'protocols', 'auth_mschap_v2'])

        # commit changes
        self.session.commit()

        # Validate configuration values
        conf = ConfigParser(allow_no_value=True)
        conf.read(pppoe_conf)

        self.assertEqual(conf['modules']['auth_mschap_v2'], None)

        # Check for running process
        self.assertTrue(process_named_running(process_name))


    def test_ip_pool(self):
        """ Test configuration of IPv6 client pools """
        self.basic_config()

        subnet = '172.18.0.0/24'
        self.session.set(base_path + ['client-ip-pool', 'subnet', subnet])

        start = '192.0.2.10'
        stop = '192.0.2.20'
        start_stop = f'{start}-{stop}'
        self.session.set(base_path + ['client-ip-pool', 'start', start])
        self.session.set(base_path + ['client-ip-pool', 'stop', stop])

        # commit changes
        self.session.commit()

        # Validate configuration values
        conf = ConfigParser(allow_no_value=True)
        conf.read(pppoe_conf)

        # check configured subnet
        self.assertEqual(conf['ip-pool'][subnet], None)
        self.assertEqual(conf['ip-pool'][start_stop], None)
        self.assertEqual(conf['ip-pool']['gw-ip-address'], gateway)


    def test_ipv6_pool(self):
        """ Test configuration of IPv6 client pools """
        self.basic_config()

        # Enable IPv6
        allow_ipv6 = 'allow'
        random = 'random'
        self.session.set(base_path + ['ppp-options', 'ipv6', allow_ipv6])
        self.session.set(base_path + ['ppp-options', 'ipv6-intf-id', random])
        self.session.set(base_path + ['ppp-options', 'ipv6-accept-peer-intf-id'])
        self.session.set(base_path + ['ppp-options', 'ipv6-peer-intf-id', random])

        prefix = '2001:db8:ffff::/64'
        prefix_mask = '128'
        client_prefix = f'{prefix},{prefix_mask}'
        self.session.set(base_path + ['client-ipv6-pool', 'prefix', prefix, 'mask', prefix_mask])

        delegate_prefix = '2001:db8::/40'
        delegate_mask = '56'
        self.session.set(base_path + ['client-ipv6-pool', 'delegate', delegate_prefix, 'delegation-prefix', delegate_mask])

        # commit changes
        self.session.commit()

        # Validate configuration values
        conf = ConfigParser(allow_no_value=True, delimiters='=')
        conf.read(pppoe_conf)
        from vyos.util import read_file
        print(read_file(pppoe_conf))

        for tmp in ['ipv6pool', 'ipv6_nd', 'ipv6_dhcp']:
            self.assertEqual(conf['modules'][tmp], None)

        self.assertEqual(conf['ppp']['ipv6'], allow_ipv6)
        self.assertEqual(conf['ppp']['ipv6-intf-id'], random)
        self.assertEqual(conf['ppp']['ipv6-peer-intf-id'], random)
        self.assertTrue(conf['ppp'].getboolean('ipv6-accept-peer-intf-id'))

        self.assertEqual(conf['ipv6-pool'][client_prefix], None)
        self.assertEqual(conf['ipv6-pool']['delegate'], f'{delegate_prefix},{delegate_mask}')

        # Check for running process
        self.assertTrue(process_named_running(process_name))

if __name__ == '__main__':
    unittest.main()