In Debian 9 Stretch it is possible to set up addresses in CIDR format.
Example
iface eth0 inet static
address 192.168.99.1/24
gateway 192.168.99.1
name eth0
instead of:
iface eth0 inet static
address 192.168.99.1
netmask 255.255.255.0
gateway 192.168.99.1
name eth0
Debinterfaces currently does not support this and it gives ValueError on validating IP addres when trying to parse interfaces file
In Debian 9 Stretch it is possible to set up addresses in CIDR format.
Example
instead of:
Debinterfaces currently does not support this and it gives
ValueErroron validating IP addres when trying to parse interfaces file