Changes between Version 20 and Version 21 of node-contiki


Ignore:
Timestamp:
Sep 16, 2010, 1:36:50 PM (14 years ago)
Author:
ikram
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • node-contiki

    v20 v21  
    274274== Run the Gateway ==
    275275
     276It is assumed that the bridge is working as background process on the system. Do the following steps to run the gateway.
     277
     278If you do not have any one these packages, install them first.
     279
     280{{{
     281$sudo apt-get install g++ libssl-dev libxml2-dev
     282
     283>> Install socket++ library
     284
     285$ cd gateway/lib/Socket-2.3.7
     286gateway/lib/Sockets-2.3.7$ make clean
     287gateway/lib/Sockets-2.3.7$ make
     288gateway/lib/Sockets-2.3.7$ sudo make install
     289
     290$ sudo ip6tables –F     (disables IPv6 tables – firewall setting for IPv6)
     291
     292>> Compile gateway code
     293
     294/gateway$ make
     295
     296}}}