<br>Hi, all<br><br>I am a freshman in OLSR. I have built OpenWRT CC 15.05 with oonf-olsrd2 v0.11.3, but I am in trouble with how to make it work and the mechanism of olsrd2 really confuse me. What use is the loopback interface for in the olsrd2 and which configuration files do users need to set?<br><br>I want to build a mesh network with several router nodes. In the troubleshooting test, the neighboring nodes can see each other with "iw wlan0 station dump" command and they can ping each other. But it cannot ping other nodes if they are not neighboring. And I also tried the command like "echo /nhdpinfo link | nc 127.0.0.1 2009" or "echo /olsrv2info originator | nc 127.0.0.1 2009", but it replys nothing. So i doubt if i make the wrong configuration whcih fails the olsrd2. Below contains the configuration files(network,wireless,olsrd2) and ifconfig results. Hope someone could point out the mistake i made or provide me with some complete config files, thx.<br><br>***********************************<br>/etc/config/network<br><br>config interface 'loopback'<br>        option ifname 'lo' <br>        option proto 'static'<br>        option ipaddr '127.0.0.1'<br>        option netmask '255.0.0.0'<br>                                               <br>config interface 'lan'   #lan is used as access point<br>        option ifname 'eth0.1'<br>        option force_link '1' <br>        option type 'bridge' <br>        option proto 'static'<br>        option ipaddr '192.168.1.8'<br>        option netmask '255.255.255.0'<br>        option ip6assign '60'  <br><br>config interface 'wlan'  #wlan is used as a mesh interface           <br>        option proto 'static'      <br>        option ipaddr '10.0.0.8'      <br>        option netmask '255.255.255.0'<br>                             <br>config interface 'wan'<br>        option ifname 'eth1'<br>        option proto 'static'   <br>        option ipaddr '210.45.76.8'<br>        option netmask '255.255.255.0'                  <br>                                               <br>config switch                                  <br>        option name 'switch0'                  <br>        option reset '1'                       <br>        option enable_vlan '1'                 <br>        option blinkrate '2'                   <br>                                      <br>config switch_vlan                    <br>        option device 'switch0'       <br>        option vlan '1'               <br>        option ports '0 1 2 3 5t'     <br>                                      <br>config switch_port                    <br>        option device 'switch0'       <br>        option port '1'          <br>        option led '6'           <br>                           <br>config switch_port                    <br>        option device 'switch0'       <br>        option port '2'               <br>        option led '9'                <br>                                 <br>config switch_port               <br>        option device 'switch0'  <br>        option port '5'          <br>        option led '2'<br><br>**************************************<br>/etc/config/wireless<br><br>config wifi-device  radio0<br>        option type     mac80211<br>        option channel  11<br>        option hwmode   11g<br>        option path     'pci0000:00/0000:00:11.0'<br>        option htmode   HT20<br>        # REMOVE THIS LINE TO ENABLE WIFI:<br>        #option disabled 1<br><br>config wifi-iface<br>        option device   radio0<br>        option network  lan<br>        option mode     ap<br>        option ssid     OpenWrt_tt8<br>        option encryption none<br><br>config wifi-iface  wmesh<br>        option device   radio0<br>        option ifname   adhoc0<br>        option network  wlan<br>        option mode     adhoc<br>        option ssid     mesh_olsrv2<br>        option bssid    be:ca:ff:ee:ba:be<br><br>config wifi-device  radio1<br>        option type     mac80211<br>        option channel  36<br>        option hwmode   11a<br>        option path     'pci0000:00/0000:00:12.0'<br>        option htmode   HT20<br>        # REMOVE THIS LINE TO ENABLE WIFI:<br>        option disabled 1 <br><br>**************************************<br>/etc/config/olsrd2<br><br>config global<br>        option 'failfast'       'no'<br>        option 'pidfile'        '/var/run/olsrd2.pid'<br>        option 'lockfile'       '/var/lock/olsrd2'<br><br>config log<br>        option 'syslog'         'true'<br>        option 'stderr'         'true'<br>        option 'file'           '/var/log/olsrd2.log'<br>        option 'info'           'all'<br>        option 'debug'          'all'<br><br>config telnet<br>        option  'port'          '2009'<br><br>config olsrv2<br>        list    'lan'           '::/0'<br># list 'lan' '0.0.0.0/0'<br><br>config interface<br>        option 'ifname'         'loopback'<br>#       option 'lan'            '10.0.2.1/24'<br><br>config interface<br>        list    'ifname'        'adhoc0'<br><br>#config interface<br>#        list    'ifname'        'wan'<br>#        option 'ignore'         '1'<br>#       option 'rx_bitrate' '100M'<br>#       option 'tx_bitrate' '100M'<br>#       option 'signal' '-20'<br><br>#config interface<br>#        list    'ifname'        'lan'<br>#        option  'ignore'        '1'<br>#       option 'rx_bitrate' '1G'<br>#       option 'tx_bitrate' '1G'<br>#       option 'signal' '-10'<br><br>*******************************************<br>ifconfig <br><br>adhoc0    Link encap:Ethernet  HWaddr 2C:B0:5D:9C:44:ED  <br>          inet addr:10.0.0.8  Bcast:10.0.0.255  Mask:255.255.255.0<br>          inet6 addr: fe80::2eb0:5dff:fe9c:44ed/64 Scope:Link<br>          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1<br>          RX packets:20827 errors:0 dropped:0 overruns:0 frame:0<br>          TX packets:42277 errors:0 dropped:0 overruns:0 carrier:0<br>          collisions:0 txqueuelen:1000 <br>          RX bytes:7136952 (6.8 MiB)  TX bytes:17852188 (17.0 MiB)<br><br>br-lan    Link encap:Ethernet  HWaddr 2E:B0:5D:9C:44:ED  <br>          inet addr:192.168.1.8  Bcast:192.168.1.255  Mask:255.255.255.0<br>          inet6 addr: fe80::2cb0:5dff:fe9c:44ed/64 Scope:Link<br>          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1<br>          RX packets:2 errors:0 dropped:0 overruns:0 frame:0<br>          TX packets:731 errors:0 dropped:0 overruns:0 carrier:0<br>          collisions:0 txqueuelen:0 <br>          RX bytes:334 (334.0 B)  TX bytes:64066 (62.5 KiB)<br><br>eth0      Link encap:Ethernet  HWaddr 2E:B0:5D:9C:44:ED  <br>          inet6 addr: fe80::2cb0:5dff:fe9c:44ed/64 Scope:Link<br>          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1<br>          RX packets:0 errors:0 dropped:0 overruns:0 frame:0<br>          TX packets:317 errors:0 dropped:0 overruns:0 carrier:0<br>          collisions:0 txqueuelen:1000 <br>          RX bytes:0 (0.0 B)  TX bytes:25321 (24.7 KiB)<br>          Interrupt:4 <br><br>eth0.1    Link encap:Ethernet  HWaddr 2E:B0:5D:9C:44:ED  <br>          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1<br>          RX packets:0 errors:0 dropped:0 overruns:0 frame:0<br>          TX packets:309 errors:0 dropped:0 overruns:0 carrier:0<br>          collisions:0 txqueuelen:0 <br>          RX bytes:0 (0.0 B)  TX bytes:22224 (21.7 KiB)<br><br>eth1      Link encap:Ethernet  HWaddr 2C:B0:5D:9C:44:EE  <br>          inet addr:210.45.76.8  Bcast:210.45.76.255  Mask:255.255.255.0<br>          inet6 addr: fe80::2eb0:5dff:fe9c:44ee/64 Scope:Link<br>          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1<br>          RX packets:54059 errors:0 dropped:911 overruns:0 frame:0<br>          TX packets:34922 errors:0 dropped:0 overruns:0 carrier:0<br>          collisions:0 txqueuelen:1000 <br>          RX bytes:6362918 (6.0 MiB)  TX bytes:9350810 (8.9 MiB)<br>          Interrupt:5 <br><br>lo        Link encap:Local Loopback  <br>          inet addr:127.0.0.1  Mask:255.0.0.0<br>          inet6 addr: ::1/128 Scope:Host<br>          UP LOOPBACK RUNNING  MTU:65536  Metric:1<br>          RX packets:25752 errors:0 dropped:0 overruns:0 frame:0<br>          TX packets:25752 errors:0 dropped:0 overruns:0 carrier:0<br>          collisions:0 txqueuelen:0 <br>          RX bytes:1778793 (1.6 MiB)  TX bytes:1778793 (1.6 MiB)<br><br>wlan0-1   Link encap:Ethernet  HWaddr 2E:B0:5D:9C:44:ED  <br>          inet6 addr: fe80::2cb0:5dff:fe9c:44ed/64 Scope:Link<br>          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1<br>          RX packets:1 errors:0 dropped:0 overruns:0 frame:0<br>          TX packets:313 errors:0 dropped:0 overruns:0 carrier:0<br>          collisions:0 txqueuelen:1000 <br>          RX bytes:342 (342.0 B)  TX bytes:28284 (27.6 KiB)<br><br>*************************************<br><br>I also wonder that if i need to modify the olsrd2 file in /etc/init.d/ which has content as follows:<br><br>#!/bin/sh /etc/rc.common<br><br>START=82<br>DAEMON='olsrd2'<br><br>. /lib/functions/oonf_init.sh<br><br>And I think it will help many people like me if there is some pages designed to tell how to config olsrv2 in OpenWRT in the wiki.<br><br><br>Thanks for any help.<br>Greetings,<br>Chaojie Yu