免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2274 | 回复: 0
打印 上一主题 下一主题

iw指令及在mesh上建bridge [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-06-07 10:46 |只看该作者 |倒序浏览
http://wireless.kernel.org/download/iw/
iw help
iw list
iw dev wlan0 scan
iw event
iw event -f
iw event -t
iw dev wlan1 station dump
iw dev wlan1 station get
支持模式
# monitor
# managed [also station]
# wds
# mesh [also mp]
# ibss [also adhoc
Monitor flags possible
The following are flags you can specify:
    * none
    * fcsfail
    * plcpfail
    * control
    * otherbss
    * cook
iw phy phy0 interface add moni0 type monitor
iw phy phy0 interface add wlan10 type managed
iw dev wlan0 interface add fish0 type monitor flags none
tcpdump -i fish0 -s 65000 -p -U -w  /tmp/fishing.dump
iw dev moni0 del
iw dev wlan0 set freq 2412
iw dev wlan0 set channel 1
iw reg set alpha2(wpa_supplicant (as of 0.6.7) add a "COUNTRY=US" to change your regulatory domain)
iw phy phy0 interface add mesh0 type mp mesh_id mymesh
iw dev mesh0 station dump
iw dev mesh0 mpath dump
iw dev wlan0 interface add mesh type mp mesh_id $MESH_ID
ifconfig -a | grep mesh
ifconfig mesh up
iw dev  set channel  (or iwconfig  channel )
ifconfig  (ifconfig mesh 192.168.3.80)
iw dev mesh station dump
ping -c 2 192.168.10.87
arp 192.168.10.87
iw dev mesh mpath dump
Advanced Tinkering
    * You can modify the mesh path table with these commands:
          o iw dev mesh mpath $DST_ADDR del: to delete a mesh path entry.
          o iw dev mesh mpath $DST_ADDR add next_hop $NEXTHOP_ADDR to force a specific network topology.
    * You can modify the mesh peer links table with these commands:
          o iw dev mesh station dump: list all the plinks.
          o iw dev mesh station $HW_ADDR set plink_action [open|block]: trigers a specific peer link stablishment process or blocks a specific peer link.
          o iw dev mesh station del $HW_ADDR: deletes a peer link from the peer table.
    * You can get and set mesh parameters using the "mesh_param" command in iw. For example, to change the mesh TTL value (which defaults to 5), one would:
      # iw dev mesh get mesh_param mesh_ttl
      5
      # iw dev mesh set mesh_param mesh_ttl 3
The following mesh parameters can be inspected and set:
    * mesh_retry_timeout
    * mesh_confirm_timeout
    * mesh_holding_timeout
    * mesh_max_peer_links
    * mesh_max_retries
    * mesh_ttl
    * mesh_auto_open_plinks
    * mesh_hwmp_max_preq_retries
    * mesh_path_refresh_time
    * mesh_min_discovery_timeout
    * mesh_hwmp_active_path_timeout
    * mesh_hwmp_preq_min_interval
    * mesh_hwmp_net_diameter_traversal_time
如何在mesh的基础上桥接网络?
Mesh Portal (MPP)
To bring up an MPP we need to setup up a bridge between a mesh interface and, for example, an Ethernet interface.
1. Bring up a mesh interface as described in the "Testing" section above.
mpp$ iw dev wlan0 interface add mesh type mp mesh_id ${MESH_ID}
mpp$ ifconfig mesh up
2. Add this new interface and your ethN interface to a new bridge:
mpp$ brctl addbr br0
mpp$ brctl stp br0 off
mpp$ brctl addif br0 eth1
mpp$ brctl addif br0 mesh
mpp$ ifconfig mesh down
mpp$ ifconfig eth1 down
mpp$ ifconfig mesh 0.0.0.0 up
mpp$ ifconfig eth1 0.0.0.0 up
mpp$ ifconfig br0 ${MESH_IP}
如何设置桥接
root@bridge:~> brctl addbr br0
root@bridge:~> brctl stp br0 off
root@bridge:~> brctl addif br0 eth0
root@bridge:~> brctl addif br0 eth1
root@bridge:~> ifconfig eth0 down
root@bridge:~> ifconfig eth1 down
root@bridge:~> ifconfig eth0 0.0.0.0 up
root@bridge:~> ifconfig eth1 0.0.0.0 up
root@bridge:~> ifconfig br0 10.0.3.129        
设置完成,大楖有30秒才生效
When we just fired up the bridge interface it takes about roughly 30 seconds until the bridge is fully operational.
如何设置路由
We imagine this scenario or similar:
                                                              /\
              Ethernet           Ethernet           ATM    /-/  \
    ---------          ---------          ---------     /-/      |
    |  Box  |----------|Bridge |----------|Router |-----| Inter-  \
    ---------          ---------          ---------     \  net  ---|
             ^        ^         ^        ^               \     /
             |        |         |        |                \---/
            eth0     eth0      eth1     if0                 ^
             |        |         |        |                  |
          10.0.3.2   none/10.0.3.1      195.137.15.7    anything else
                      \         /
                       \       /
       ^                \-br0-/
       |                                      ^             ^
       |                   ^                  |             |
       |                   |                  |             |
      own                 own              foreign        hostile
            
root@bridge:~> echo "1" > /proc/sys/net/ipv4/ip_forward 打开IP转发
root@bridge:~> route add default gw 10.0.3.129 设置缺省路由
root@bridge:~> iptables -P FORWARD DROP
root@bridge:~> iptables -F FORWARD
root@bridge:~> iptables -I FORWARD -j ACCEPT
root@bridge:~> iptables -I FORWARD -j LOG
root@bridge:~> iptables -I FORWARD -j DROP
root@bridge:~> iptables -A FORWARD -j DROP
root@bridge:~> iptables -x -v --line-numbers -L FORWARD
root@bridge:~> iptables -D FORWARD 1
root@bridge:~> iptables -x -v --line-numbers -L FORWARD
root@box:~> ping -c 3 195.137.15.7

配置完成用ifconfig会看到br0       eth0    eth1     lo
route -n
参考桥接http://www.faqs.org/docs/Linux-HOWTO/Ethernet-Bridge-netfilter-HOWTO.html#TESTING_Testing_grounds


本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u2/86601/showart_1957732.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP