[DEBIAN] add netmask in routes
All checks were successful
/ test (push) Successful in 13s

This commit is contained in:
Michaël Ricart 2025-02-27 15:23:59 +01:00
parent 4f0d01aab0
commit 454cabb8bc

View file

@ -15,11 +15,11 @@ interface adresses
routes
######
============ =============== ==============
destination gateway interface
============ =============== =============={% for route in routes %}
{{ "{:<12}".format(route["destination"]) }} {{ "{:<15}".format(route["gateway"]) }} {{ route["iface"] }}{% endfor %}
============ =============== ==============
============ =============== =============== ==============
destination netmask gateway interface
============ =============== =============== =============={% for route in routes %}
{{ "{:<12}".format(route["destination"]) }} {{ "{:<15}".format(route["genmask"]) }} {{ "{:<15}".format(route["gateway"]) }} {{ route["iface"] }}{% endfor %}
============ =============== =============== ==============
services
--------