Merge pull request #4309 from nikos-github/frr-doc

doc: Provide info on what pkg to install if mpls-router module is missing
This commit is contained in:
Renato Westphal 2019-05-13 14:32:18 -03:00 committed by GitHub
commit 174e8ee1ae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 0 deletions

View File

@ -104,6 +104,10 @@ And load the kernel modules on the running system:
sudo modprobe mpls-router mpls-iptunnel
If the above command returns an error, you may need to install the appropriate
or latest linux-modules-extra-<kernel-version>-generic package. For example
``apt-get install linux-modules-extra-`uname -r`-generic``
Enable MPLS Forwarding
""""""""""""""""""""""

View File

@ -105,6 +105,8 @@ Execute all tests with output to console
py.test -s -v --tb=no
The above command must be executed from inside the topotests directory.
All test\_\* scripts in subdirectories are detected and executed (unless
disabled in ``pytest.ini`` file).
@ -119,6 +121,13 @@ Execute single test
cd test_to_be_run
./test_to_be_run.py
For example, and assuming you are inside the frr directory:
.. code:: shell
cd tests/topotests/bgp_l3vpn_to_bgp_vrf
./test_bgp_l3vpn_to_bgp_vrf.py
For further options, refer to pytest documentation.
Test will set exit code which can be used with ``git bisect``.