vlan handling

Is the Qnx Ip stack able to handle dynamic configuration of vlan interfaces?

And is there any documentation on this?

Thanks in advance,

No

Yes. See the ifconfig documentation.

-seanb

ifconfig -C

vlan

ifconfig -a

lo0: flags=8009<UP,LOOPBACK,MULTICAST> mtu 33212
inet 127.0.0.1 netmask 0xff000000
en0: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> mtu 1500
address: 00:01:02:49:65:ff
inet 10.0.0.25 netmask 0xff000000 broadcast 10.255.255.255

ifconfig vlan0 create

ifconfig -a

lo0: flags=8009<UP,LOOPBACK,MULTICAST> mtu 33212
inet 127.0.0.1 netmask 0xff000000
en0: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> mtu 1500
address: 00:01:02:49:65:ff
inet 10.0.0.25 netmask 0xff000000 broadcast 10.255.255.255
vlan0: flags=8802<BROADCAST,SIMPLEX,MULTICAST>

ifconfig vlan0 vlan 1234 vlanif en0

ifconfig vlan0

vlan0: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> mtu 1496
vlan: 1234 parent: en0
address: 00:01:02:49:65:ff

ifconfig vlan0 destroy

ifconfig -a

lo0: flags=8009<UP,LOOPBACK,MULTICAST> mtu 33212
capabilities=7<IP4CSUM,TCP4CSUM,UDP4CSUM>
enabled=0<>
inet 127.0.0.1 netmask 0xff000000
en0: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> mtu 1500
capabilities=7<IP4CSUM,TCP4CSUM,UDP4CSUM>
enabled=0<>
address: 00:01:02:49:65:ff
media: Ethernet 100baseTX half-duplex
status: active
inet 10.0.0.25 netmask 0xff000000 broadcast 10.255.255.255

Sorry

thanks.