Parameters options to be passed down to ip
.
Global parameters options that affects the command execution.
Import module
import { utils } from 'iproute';
It will remove the specified table if it exists
await utils.routingTables.delete({
id: 50
});
Delete more than one table
await utils.routingTables.delete([{
id: 51
}, {
id: 52
}]);
Generated using TypeDoc
Delete a routing table.