Actually wrote the vlan uniconf generator. Whew, these switches sure are
[wvapps.git] / unity / vlan / vlantest.cc
blobfae8dc8be24594d0e9df66910879bf5b772023eb
1 #include "uniconfroot.h"
3 int main()
5 UniConfRoot cfg("vlan: ini:/tmp/vlan.out tcp:10.0.0.201:23 admin {}",
6 false);
8 #if 0
9 cfg.xset("101/ports/24/tagging", "802.1q");
10 cfg.xset("101/ports/24/tagging", "none");
11 cfg.xset("101/ports/24/tagging", "");
12 cfg.xset("101/ports/24/tagging", "none");
13 #endif
14 cfg.commit();
16 return 0;