Openwrt GUI is using Unnamed convention to create a VAP in Wireless i.e.
config wifi-iface
option device 'wifi0'
option network 'lan'
option mode 'ap'
option ssid 'Default'
option encryption 'none'
option disabled '0'
option hidden '0'
I want to use a named convention to create VAP in wireless by using Openwrt, i.e
config wifi-iface 'vap00'
option device 'wifi0'
option network 'lan'
option mode 'ap'
option ssid 'Default'
opGUItion encryption 'none'
option disabled '0'
option hidden '0'
Is it possible with openwrt GUI?