# L3 VLAN interface

# URL

frinx-openconfig-interfaces:interfaces/interface=

# OPENCONFIG YANG

YANG models

{
    "interface": [
        {
            "name": "",
            "config": {
                "type": "iana-if-type:l3ipvlan",
                "enabled": ,
                "name": "",
                "mtu": 
            },
            "frinx-l3ipvlan:l3ipvlan":  {
                "config": {
                    "ip-redirects": 
                }
            },
            "subinterfaces": {
                "subinterface": [
                    {
                        "index": 0,
                        "config": {
                            "index": 0
                        },
                        "frinx-openconfig-if-ip:ipv4": {
                            "addresses": {
                                "address": [
                                    {
                                        "ip": "",
                                        "config": {
                                            "ip": "",
                                            "prefix-length": 
                                        }
                                    }
                                ]
                            }
                        }
                    }
                ]
            }
        }
    ]
}

# OS Configuration Commands

# Dasan NOS SFU.RR.5.6p5

# CLI

interface br
 shutdown | no shutdown
 ip redirects | no ip redirects
 mtu 
 ip address /

is parsed from
example is Vlan10 -> is 10

no shutdown is a conversion of set true
shutdown is a conversion of set false
no ip redirects is a conversion of set false
ip redirects is a conversion of set true

# Unit

Link to github : dasan-unit