summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2020-03-05 21:36:55 +0100
committerChristian Poessinger <christian@poessinger.com>2020-03-05 21:38:38 +0100
commitd1dcb1fc3fd407820a19c295d04415326fbfac88 (patch)
tree1259b3dedabe62cf5978cedfd8940b077831fc1a /src
parent1a3683ad3f953bd9a12216c289224150d416386e (diff)
downloadvyos-1x-d1dcb1fc3fd407820a19c295d04415326fbfac88.tar.gz
vyos-1x-d1dcb1fc3fd407820a19c295d04415326fbfac88.zip
vrf: T31: add more documentation links
Diffstat (limited to 'src')
-rwxr-xr-xsrc/conf_mode/vrf.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/conf_mode/vrf.py b/src/conf_mode/vrf.py
index f87622b89..f3387677b 100755
--- a/src/conf_mode/vrf.py
+++ b/src/conf_mode/vrf.py
@@ -171,7 +171,12 @@ def generate(vrf_config):
return None
def apply(vrf_config):
- # https://github.com/torvalds/linux/blob/master/Documentation/networking/vrf.txt
+ # Documentation
+ #
+ # - https://github.com/torvalds/linux/blob/master/Documentation/networking/vrf.txt
+ # - https://github.com/Mellanox/mlxsw/wiki/Virtual-Routing-and-Forwarding-(VRF)
+ # - https://netdevconf.info/1.1/proceedings/slides/ahern-vrf-tutorial.pdf
+ # - https://netdevconf.info/1.2/slides/oct6/02_ahern_what_is_l3mdev_slides.pdf
# set the default VRF global behaviour
bind_all = vrf_config['bind_to_all']