Parameters options to be passed down to ip
.
Global parameters options that affects the command execution.
ParametersError - Throws when passed parameters are invalid.
CommandError - Throws when the executed command fails.
Import module
import { tunnel } from 'iproute';
Modify an existing tunnel
await tunnel.change({
name : 'tun0',
mode : TunnelModes.Ipip,
remote: '203.0.113.6',
local : '203.0.113.7',
dev : 'eth1'
});
Generated using TypeDoc
Change an existing tunnel.