Yes we have followed the same link :
1) We enabled networking -> 802.1d Ethernet Bridging on our board kernel
2) While intalling bridge utility on PC (ubuntu) we used following command
sudo apt-get install bridge-utils
3) We are running our card over NFS
4) By using following command we bridged our wireless and Lan port on PC
system("sudo ifconfig eth0 0.0.0.0");
system("sudo ifconfig wlan0 0.0.0.0");
system("sudo brctl addbr mybridge");
system("sudo brctl addif mybridge eth0");
system("sudo brctl addif mybridge wlan0");
system("sudo ifconfig mybridge 192.168.1.45 netmask 255.255.255.0");
system("sudo ifconfig mybridge up");
and following is the ifconfig result on PC
eth0 Link encap:Ethernet HWaddr 00:17:7c:0f:02:1c
inet addr:192.168.10.1 Bcast:192.168.10.255 Mask:255.255.255.0
inet6 addr: fe80::217:7cff:fe0f:21c/64 Scope:Link
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:7476 errors:0 dropped:0 overruns:0 frame:0
TX packets:10917 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:475304 (475.3 KB) TX bytes:8831390 (8.8 MB)
Interrupt:43 Base address:0xe000
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:250 errors:0 dropped:0 overruns:0 frame:0
TX packets:250 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:25103 (25.1 KB) TX bytes:25103 (25.1 KB)
mybridge Link encap:Ethernet HWaddr 00:17:7c:0c:bf:44
inet addr:192.168.1.45 Bcast:192.168.1.255 Mask:255.255.255.0
inet6 addr: fe80::217:7cff:fe0c:bf44/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:68 errors:0 dropped:0 overruns:0 frame:0
TX packets:74 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:5492 (5.4 KB) TX bytes:11283 (11.2 KB)
wlan0 Link encap:Ethernet HWaddr 00:17:7c:0c:bf:44
inet6 addr: fe80::217:7cff:fe0c:bf44/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:9489 errors:0 dropped:586 overruns:0 frame:0
TX packets:4259 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:2904562 (2.9 MB) TX bytes:568653 (568.6 KB)
From here we can see that mybridge is showing RUNNING while in our board case we are not finding it RUNNING ,we have assigned IP to it but same result ,below is the link which mention the bridge should be in RUNNING.
http://www.microhowto.info/troublesh..._on_linux.html
Any sort of input will be of great help, Thanks in advance
Thanks & Regards
Sumit