Newer
Older
# MACVLAN Vendor Extension Data Model
The purpose of this document is to explain the X_IOWRT_EU_MACVLAN datamodel parameters handling/mapping for the network configuration.
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
## MACVLAN
The MACVLAN driver is the newest built-in network driver and offers several unique characteristics. It's a very lightweight driver, because rather than using any Linux bridging or port mapping, it connects container interfaces directly to host interfaces.
## Deployment Scenario
Historically MACVLAN used in iowrt devices to support One Vlan per customer scenario, where MACVLAN devices created over tagged wan interface, one MACVLAN device for a specific service type.
## Current Issues
With vlanconf deprecation, uci option vid no longger available for device sections with type MACVLAN, so the current datamodel implementation needs to be updated.
Also the current datamodel implementation is bit complex and caused us several bugs and open corner cases.
## MACVLAN Implementation
With linux MACVLAN driver, it is possible to create MACVLAN device over untagged interfaces or tagged interface
### UCI for MACVLAN over untagged interface
```bash
config device 'mv1'
option type 'macvlan'
option ifname 'eth4'
option name 'eth4_1'
config device 'mv2'
option type 'macvlan'
option ifname 'eth4'
option name 'eth4_2'
config interface 'wan1'
option device 'eth4_1'
option proto 'dhcp'
config interface 'wan2'
option device 'eth4_2'
option proto 'dhcp'
```
### UCI for MACVLAN over tagged wan interface
```bash
config device 'tagged_wan'
option type '8021q'
option ifname 'eth4'
option name 'eth4.100'
option vid '100'
config device 'mv1'
option type 'macvlan'
option ifname 'eth4.100'
option name 'eth4_1'
config device 'mv2'
option type 'macvlan'
option ifname 'eth4.100'
option name 'eth4_2'
config interface 'service1'
option proto 'dhcp'
option ifname 'eth4_1'
config interface 'service2'
option proto 'dhcp'
option device 'eth4_2'
```
## Datamodel Implementation
Although MACVLAN share some similarities with an Ethernet Link object, but it can't be mapped to the Ethernet.Link, as MACVLAN has to be over vlan termination which creates a cyclic dependency.
Statndart TR181 datamodel does not include MACVLAN in datamodel, but it has a provision to define vendor specific datamodel interface as described in "4.2.4 Vendor-specific Interface Objects" chapter of TR181.
To simplify the interface stacking, we introduce a new vendor specific interface layer between IP.Interface and Ethernet.Link, as below
```mermaid
flowchart TD
A[IP.Interface.] --> B[Ethernet.X_IOWRT_EU_MACVLAN.]
B --> C[Ethernet.Link.]
```
It could be possible to create a MACVLAN interface on tagged and untagged interfaces, which could be done as below:
### Datamodel for MACVLAN over untagged interface
```mermaid
flowchart TD
A[IP.Interface.] --> B[Ethernet.X_IOWRT_EU_MACVLAN.]
B --> C[Ethernet.Link.]
C --> D[Ethernet.Interface.]
```
### Datamodel for MACVLAN over Tagged interface
```mermaid
flowchart TD
A[IP.Interface.] --> B[Ethernet.X_IOWRT_EU_MACVLAN.]
B --> C[Ethernet.VLANTermination.]
C --> D[Ethernet.Link.]
D --> E[Ethernet.Interface.]
```
#### Datamodel Parameters
Since this new vendor extension is an interface object, we introduce parameters that are similar to those on an interface object, which are as below:
```bash
Device.Ethernet.X_IOWRT_EU_MACVLAN.{i}.Enable
Device.Ethernet.X_IOWRT_EU_MACVLAN.{i}.Status
Device.Ethernet.X_IOWRT_EU_MACVLAN.{i}.Alias
Device.Ethernet.X_IOWRT_EU_MACVLAN.{i}.Name
Device.Ethernet.X_IOWRT_EU_MACVLAN.{i}.LowerLayers
Device.Ethernet.X_IOWRT_EU_MACVLAN.{i}.MACAddress
Device.Ethernet.X_IOWRT_EU_MACVLAN.{i}.Stats.BytesSent
Device.Ethernet.X_IOWRT_EU_MACVLAN.{i}.Stats.BytesReceived
Device.Ethernet.X_IOWRT_EU_MACVLAN.{i}.Stats.PacketsSent
Device.Ethernet.X_IOWRT_EU_MACVLAN.{i}.Stats.PacketsReceived
Device.Ethernet.X_IOWRT_EU_MACVLAN.{i}.Stats.ErrorsSent
Device.Ethernet.X_IOWRT_EU_MACVLAN.{i}.Stats.ErrorsReceived
Device.Ethernet.X_IOWRT_EU_MACVLAN.{i}.Stats.DiscardPacketsSent
Device.Ethernet.X_IOWRT_EU_MACVLAN.{i}.Stats.DiscardPacketsReceived