2018-08-26 15:15:10 +00:00
|
|
|
import { MetaIPType } from '../meta';
|
|
|
|
|
|
|
|
export interface Interface {
|
|
|
|
iface: string;
|
|
|
|
mac: string;
|
2018-08-27 01:41:27 +00:00
|
|
|
addresses: InterfaceAddress[] | null;
|
2018-08-26 15:15:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface InterfaceAddress {
|
|
|
|
metaIPType: MetaIPType;
|
|
|
|
address: string;
|
|
|
|
netmask: string;
|
|
|
|
network: string;
|
|
|
|
gateway: string;
|
|
|
|
}
|