Hi experts,
My network consists with two sensors, two APs, one router, and one wired computer.
[Sensor] - AP ---------------[Router] ----------------- [Wired Computer]
/
/
/
[Sensor] - AP ---------------/
I use "inetmanet-2.0-integration" and currently am modirying wpan/csma802154 example.
In order to hybrid wireless and wired network, I use IPv4NetworkConfigurator instead of FlatNetworkConfigurator
In order to assign IP address and route, I put following XML statements in my ini file
*.iPv4NetworkConfigurator.config = xml( \
"<config> \
<interface hosts='fixhost[*] accessPoint[*]' address='10.0.1.x' netmask='255.255.255.0'/> \
<interface hosts='router' names='eth' address='10.0.1.x' netmask='255.255.255.0'/> \
<interface among='router wiredHost' address='10.0.2.x' netmask='255.255.255.0'/> \
<interface among='router accessPoint[0]' address='10.0.1.x' netmask='255.255.255.0'/> \
<route hosts='fixhost[*]' gateway='router>accessPoint[*]' destination='10.0.2.0' netmask='255.255.255.0' interface='wlan' /> \
When I run script, then I get following error message.
Error in XML <route> element at content:1: IPvXAddressResolver: address 'router>accessPoint[0]' not configured (yet?)
Please help me to resolve above problem.
Thank you
-jin