Hi!
On a NI-LinuxRT device, I have a network interface /sys/class/net/eno1 and i would like to create /sys/class/net/eno0 so that eno0 is perfectly equivalent to eno1
I am able to do it in a "non persistent way" by doing as follows:
ip link add link eno1 name eno0 type vlan id 10
ip link set eno0 up
Can i use the utility "ninetcfgutil" to do the same in a persistent way?
Ivan