Parameters options to be passed down to ip
.
Global parameters options that affects the command execution.
Import module
import { utils } from 'iproute';
Add a single table
await utils.routingTables.add({
id: 50,
name: 'table_name'
});
Add more than one table
await utils.routingTables.add([{
id: 50,
name: 'table_name'
}, {
id: 51,
name: 'table_name2'
}]);
Generated using TypeDoc
Add a routing table.