diff options
-rwxr-xr-x | src/conf_mode/vrf.py | 7 |
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'] |